blob: 36e7e2572de1319dd34b63a8147a0011d78d6e39 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
require 'rspec/core/rake_task'
require 'chef-config/package_task'
ChefConfig::PackageTask.new(File.expand_path('..', __FILE__), 'ChefConfig') do |package|
package.module_path = 'chef-config'
end
task :default => :spec
desc "Run standard specs"
RSpec::Core::RakeTask.new(:spec) do |t|
t.pattern = FileList['spec/**/*_spec.rb']
end
|