Sha256: 8068b627e6c709450a5183921520f38f83814c509d91a18c4731b3807c851790

Contents?: true

Size: 617 Bytes

Versions: 8

Compression:

Stored size: 617 Bytes

Contents

require "bundler/gem_tasks"
task default: [:style]

begin
  require "chefstyle"
  require "rubocop/rake_task"
  RuboCop::RakeTask.new(:style) do |task|
    task.options += ["--display-cop-names", "--no-color"]
  end
rescue LoadError
  puts "chefstyle/rubocop is not available. 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

8 entries across 8 versions & 2 rubygems

Version Path
appbundle-updater-0.6.11 Rakefile
appbundle-updater-0.6.10 Rakefile
appbundle-updater-0.6.7 Rakefile
appbundle-updater-0.6.6 Rakefile
kitchen-appbundle-updater-0.2.3 Rakefile
appbundle-updater-0.6.4 Rakefile
appbundle-updater-0.6.3 Rakefile
appbundle-updater-0.6.2 Rakefile