Sha256: 917f4e59898b76b816ef760e394ab5c0a35778cf46454b8ce09a0153d025116a

Contents?: true

Size: 382 Bytes

Versions: 7

Compression:

Stored size: 382 Bytes

Contents

#!/usr/bin/env rake

require 'foodcritic'
require 'rspec/core/rake_task'

RSpec::Core::RakeTask.new(:unit) do |t|
  t.pattern = "test/unit/**/*_spec.rb"
end

begin
  require 'kitchen/rake_tasks'
  Kitchen::RakeTasks.new
rescue LoadError
  puts ">>>>> Kitchen gem not loaded, omitting tasks" unless ENV['CI']
end

task :default => [:foodcritic, :unit]
FoodCritic::Rake::LintTask.new

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
from-scratch-0.7.0 cookbooks/rvm/Rakefile
from-scratch-0.6.0 cookbooks/rvm/Rakefile
from-scratch-0.5.0 cookbooks/rvm/Rakefile
from-scratch-0.3.0 cookbooks/rvm/Rakefile
from-scratch-0.2.0 cookbooks/rvm/Rakefile
from-scratch-0.1.1 cookbooks/rvm/Rakefile
from-scratch-0.1.0 cookbooks/rvm/Rakefile