Sha256: 0e4ab1b1eefd1a8a47778d3c738784c50547aacfd0fbfb793735484e65b353b5
Contents?: true
Size: 642 Bytes
Versions: 16
Compression:
Stored size: 642 Bytes
Contents
require "bundler/gem_tasks" task default: [:style] begin require "chefstyle" require "rubocop/rake_task" desc "Run Chefstyle tests" RuboCop::RakeTask.new(:style) do |task| task.options += ["--display-cop-names", "--no-color"] end rescue LoadError puts "chefstyle gem is not installed. bundle install first to make sure all dependencies are installed." end begin require "yard" YARD::Rake::YardocTask.new(:docs) rescue LoadError puts "yard is not available. bundle install first to make sure all dependencies are installed." end task :console do require "irb" require "irb/completion" ARGV.clear IRB.start end
Version data entries
16 entries across 16 versions & 1 rubygems