Rakefile in rails_best_practices-1.5.1 vs Rakefile in rails_best_practices-1.5.2

- old
+ new

@@ -23,15 +23,10 @@ system "git push --tags" puts "Pushing to rubygems.org..." system "gem push rails_best_practices-#{RailsBestPractices::VERSION}.gem" end -Rspec::Core::RakeTask.new(:spec) do |spec| - spec.pattern = "spec/**/*_spec.rb" -end - -Rspec::Core::RakeTask.new('spec:progress') do |spec| - spec.rspec_opts = %w(--format progress) +RSpec::Core::RakeTask.new(:spec) do |spec| spec.pattern = "spec/**/*_spec.rb" end task :default => :spec task :test => :spec