Skip to content

Commit f19cfc6

Browse files
committed
Fix Rakefile to actually use RSpec 1.3
1 parent b820540 commit f19cfc6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Rakefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
require 'bundler'
22
Bundler::GemHelper.install_tasks
33

4-
require "rspec/core/rake_task"
4+
require "spec/rake/spectask"
55
desc "Run all examples"
6-
RSpec::Core::RakeTask.new(:spec) do |t|
6+
Spec::Rake::SpecTask.new(:spec) do |t|
77
t.ruby_opts = ['-r test/unit']
8-
t.rspec_opts = %w[--color]
8+
t.spec_opts = %w[--color]
99
end
1010
task :default => :spec

0 commit comments

Comments
 (0)