Skip to content

Commit

Permalink
Upgrade to to use rspec2
Browse files Browse the repository at this point in the history
  • Loading branch information
mloughran committed Oct 29, 2010
1 parent c7a1409 commit 8967496
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 8 deletions.
14 changes: 12 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,23 @@ PATH
GEM
remote: http://rubygems.org/
specs:
rspec (1.2.9)
diff-lcs (1.1.2)
rspec (2.0.1)
rspec-core (~> 2.0.1)
rspec-expectations (~> 2.0.1)
rspec-mocks (~> 2.0.1)
rspec-core (2.0.1)
rspec-expectations (2.0.1)
diff-lcs (>= 1.1.2)
rspec-mocks (2.0.1)
rspec-core (~> 2.0.1)
rspec-expectations (~> 2.0.1)
ruby-hmac (0.4.0)

PLATFORMS
ruby

DEPENDENCIES
rspec (~> 1.2.9)
rspec (~> 2.0.0)
ruby-hmac
signature!
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ Developing
----------

bundle
bundle exec spec spec/*_spec.rb
bundle exec rspec spec/*_spec.rb

Copyright
---------
Expand Down
2 changes: 1 addition & 1 deletion signature.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ Gem::Specification.new do |s|
s.require_paths = ["lib"]

s.add_dependency "ruby-hmac"
s.add_development_dependency "rspec", "~> 1.2.9"
s.add_development_dependency "rspec", "~> 2.0.0"
end
1 change: 0 additions & 1 deletion spec/spec.opts

This file was deleted.

5 changes: 2 additions & 3 deletions spec/spec_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,8 @@

require 'rubygems'
require 'signature'
require 'spec'
require 'spec/autorun'
require 'rspec'

Spec::Runner.configure do |config|
RSpec.configure do |config|

end

0 comments on commit 8967496

Please sign in to comment.