Sha256: db462d2da2b918598946dd161251080ee840774da2d57da94382792436b3e13a
Contents?: true
Size: 1012 Bytes
Versions: 2
Compression:
Stored size: 1012 Bytes
Contents
source 'https://rubygems.org' gemspec # Run your tests with nokogiri's 1.4 branch and master branch gem 'nokogiri', :git => "git://github.com/sparklemotion/nokogiri.git", :branch => "1.4" gem 'nokogiri', :git => "git://github.com/sparklemotion/nokogiri.git", :branch => "master" # You can also write above code in one line like this gem 'nokogiri', [{:git => "git://github.com/sparklemotion/nokogiri.git"}, {:git => "git://github.com/sparklemotion/nokogiri.git", :branch => "1.4"}] # Default mode, your tests will run with rails 3.1, 3.2 and 4.0 # So with above config, your tests will run 6 times # [nokogiri(1.4), rails(3.1)], [nokogiri(master), rails(3.1)] # [nokogiri(1.4), rails(3.2)], [nokogiri(master), rails(3.2)] # [nokogiri(1.4), rails(4.0)], [nokogiri(master), rails(4.0)] env 'default' do ruby '1.9.3' gem 'rails', ['3.1', '3.2', '4.0'] end # Using `qor_test -e old_ruby -c 'rake test'` to run your tests in old_ruby mode env 'old_ruby' do ruby 'ree' gem 'rails', ['3.1', '3.2'] end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
qor_cache-0.0.2 | config/qor/test.rb |
qor_cache-0.0.1 | config/qor/test.rb |