Sha256: da84d94a4fce0ee9d9ec5195a0ab903d6c1d8ccd20f6b71f168dc75d26c0570f
Contents?: true
Size: 681 Bytes
Versions: 4
Compression:
Stored size: 681 Bytes
Contents
source 'https://rubygems.org' gem 'rspec' # Behavior Driven Development (BDD) for Ruby gem 'rspec-core' # RSpec runner and example groups. gem 'rspec-expectations' # RSpec matchers for should and should_not. gem 'rspec-mocks' # RSpec test double framework with stubbing and mocking. gem 'rspec-rails' # RSpec version 2.x for Rails version 3.x. # we want to test both JRuby and non JRuby especially for Excel platform :jruby do gem 'jruby-openssl' gem 'activerecord-jdbcsqlite3-adapter' end platform :ruby do gem 'sqlite3' end # DEFINE WHICH VERSIONS WE WANT TO TEST WITH gem 'datashift', :path => '../../datashift' gem 'rails', '3.2.8' gem 'spree', '1.1.3'
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
datashift_spree-0.3.0 | spec/Gemfile |
datashift_spree-0.2.1 | spec/Gemfile |
datashift_spree-0.2.0 | spec/Gemfile |
datashift_spree-0.1.0 | spec/Gemfile |