Hackfut Security File Manager
Current Path:
/opt/td-agent/embedded/lib/ruby/gems/2.4.0/gems/mixlib-config-2.2.4
opt
/
td-agent
/
embedded
/
lib
/
ruby
/
gems
/
2.4.0
/
gems
/
mixlib-config-2.2.4
/
📁
..
📄
Gemfile
(92 B)
📄
LICENSE
(10.6 KB)
📄
NOTICE
(943 B)
📄
README.md
(4.71 KB)
📄
Rakefile
(1.15 KB)
📁
lib
📄
mixlib-config.gemspec
(844 B)
📁
spec
Editing: Rakefile
require "bundler" require "rubygems" require "rubygems/package_task" require "rdoc/task" require "rspec/core/rake_task" require "mixlib/config/version" Bundler::GemHelper.install_tasks task :default => :spec desc "Run specs" RSpec::Core::RakeTask.new(:spec) do |spec| spec.pattern = "spec/**/*_spec.rb" end gem_spec = eval(File.read("mixlib-config.gemspec")) RDoc::Task.new do |rdoc| rdoc.rdoc_dir = "rdoc" rdoc.title = "mixlib-config #{gem_spec.version}" rdoc.rdoc_files.include("README*") rdoc.rdoc_files.include("lib/**/*.rb") end begin require "github_changelog_generator/task" GitHubChangelogGenerator::RakeTask.new :changelog do |config| config.issues = false config.future_release = Mixlib::Config::VERSION config.enhancement_labels = "enhancement,Enhancement,New Feature,Feature".split(",") config.bug_labels = "bug,Bug,Improvement,Upstream Bug".split(",") config.exclude_labels = "duplicate,question,invalid,wontfix,no_changelog,Exclude From Changelog,Question,Discussion".split(",") end rescue LoadError puts "github_changelog_generator is not available. gem install github_changelog_generator to generate changelogs" end
Upload File
Create Folder