Rakefile in make_exportable-1.0.3 vs Rakefile in make_exportable-1.1.0
- old
+ new
@@ -17,14 +17,14 @@
# Rspec 2.0
require 'rspec/core/rake_task'
desc 'Default: run specs'
task :default => :spec
- Rspec::Core::RakeTask.new do |t|
+ RSpec::Core::RakeTask.new do |t|
t.pattern = "spec/**/*_spec.rb"
end
- Rspec::Core::RakeTask.new('rcov') do |t|
+ RSpec::Core::RakeTask.new('rcov') do |t|
t.pattern = "spec/**/*_spec.rb"
t.rcov = true
t.rcov_opts = ['--exclude', 'spec']
end
\ No newline at end of file