Skip to content

Commit

Permalink
Add dependency on rspec < 2.11.0
Browse files Browse the repository at this point in the history
- Jasmine is currently incompatible with rspec 2.11.0 due to some
  DSL changes. The rspec formatting is being rewritten, but for now
  we'll need rspec <= 2.10.0
  • Loading branch information
ragaskar committed Jul 11, 2012
1 parent 4361bb3 commit 27dceea
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
source "http://rubygems.org"
gemspec

#bundle fails on the rspec gemspec requirement without this line
gem 'rspec', '< 2.11'

unless ENV["TRAVIS"]
group :debug do
gem 'debugger'
Expand Down
2 changes: 1 addition & 1 deletion jasmine.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,6 @@ Gem::Specification.new do |s|

s.add_dependency 'jasmine-core', ">= 1.2.0"
s.add_dependency 'rack', '~> 1.0'
s.add_dependency 'rspec', '>= 1.3.1'
s.add_dependency 'rspec', '>= 1.3.1', '< 2.11.0'
s.add_dependency 'selenium-webdriver', '>= 0.1.3'
end

0 comments on commit 27dceea

Please sign in to comment.