1
0
Fork 0
mirror of https://github.com/rubyjs/therubyrhino synced 2023-03-27 23:21:34 -04:00

run specs with (tagged) redjs master

but exclude unsupported features - 0.5.0, 0.6.0
This commit is contained in:
kares 2012-05-18 16:47:12 +02:00
parent 740d6b2bb2
commit cd93c2b422
2 changed files with 7 additions and 1 deletions

View file

@ -2,4 +2,6 @@ source :rubygems
gemspec
gem 'redjs', :git => 'git://github.com/cowboyd/redjs.git', :branch => "0.4", :group => :test
# NOTE: some specs might be excluded @see #spec/spec_helper.rb
gem 'redjs', :git => 'git://github.com/cowboyd/redjs.git', :group => :test,
:ref => "8656639e99d52b8d5414250db2e27db4bb531506"

View file

@ -8,3 +8,7 @@ module RedJS
Context = Rhino::Context
Error = Rhino::JSError
end
RSpec.configure do |config|
config.filter_run_excluding :compat => /(0.5.0)|(0.6.0)/
end