Sha256: 732874a6bf93b4606726b928174422c82754608b3c9ac1ab466de2330b2760f6

Contents?: true

Size: 1.35 KB

Versions: 4

Compression:

Stored size: 1.35 KB

Contents

source 'https://rubygems.org'

gem 'activerecord', '~> 3.0'
gem 'i18n', '~> 0.6.11'
gem 'request_store', '~> 1.1.0'

group :development, :test do
  gem 'rake', '~> 10.1.1'
  gem 'shoulda', '~> 3.5'
  gem 'ffaker',  '<= 1.31.0'

  # Testing of Rails
  gem 'railties', '~> 3.0'

  # Testing of Sinatra
  gem 'sinatra', '~> 1.0'
  gem 'rack-test', '>= 0.6'

  # RSpec testing
  gem 'rspec-rails', '~> 3.1.0'
  gem 'generator_spec'

  # To do proper transactional testing with ActiveSupport::TestCase on MySQL
  gem 'database_cleaner', '~> 1.2.0'

  # Allow time travel in testing. timecop is only supported after 1.9.2 but does a better cleanup at 'return'
  if RUBY_VERSION < "1.9.2"
    gem 'delorean'
  else
    gem 'timecop'
  end

  platforms :ruby do 
    gem 'sqlite3', '~> 1.2'
    gem 'mysql2', '~> 0.3'
    gem 'pg', '~> 0.17.1'
  end

  platforms :jruby, :ruby_18 do
    # shoulda-matchers > 2.0 is not compatible with Ruby18.
    # Since we can't specify difference between JRuby 18/19, we need to use shoulda-matchers 1.5 for all JRuby testing.
    gem 'shoulda-matchers', '~> 1.5'
  end

  platforms :jruby do 
    # Use jRuby's sqlite3 adapter for jRuby
    gem 'activerecord-jdbcsqlite3-adapter', '~> 1.3'
    gem 'activerecord-jdbcpostgresql-adapter', '~> 1.3'
    gem 'activerecord-jdbcmysql-adapter', '~> 1.3'
    gem 'activerecord-jdbc-adapter', '1.3.15'
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
paper_trail-4.0.1 gemfiles/3.0.gemfile
paper_trail-4.0.0 gemfiles/3.0.gemfile
paper_trail-4.0.0.rc2 gemfiles/3.0.gemfile
paper_trail-4.0.0.rc1 gemfiles/3.0.gemfile