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

Version Path
appbundle-updater-1.0.36 Rakefile
appbundle-updater-1.0.34 Rakefile
appbundle-updater-1.0.23 Rakefile
appbundle-updater-1.0.8 Rakefile
appbundle-updater-1.0.7 Rakefile
appbundle-updater-1.0.6 Rakefile
appbundle-updater-1.0.5 Rakefile
appbundle-updater-1.0.4 Rakefile
appbundle-updater-1.0.3 Rakefile
appbundle-updater-1.0.2 Rakefile
appbundle-updater-1.0.1 Rakefile
appbundle-updater-1.0.0 Rakefile
appbundle-updater-0.6.18 Rakefile
appbundle-updater-0.6.17 Rakefile
appbundle-updater-0.6.16 Rakefile
appbundle-updater-0.6.15 Rakefile