Sha256: 0040188540152c94bcae24088633b166e5e6b7d84cd15a3d559f2063c7bee791
Contents?: true
Size: 1.06 KB
Versions: 3
Compression:
Stored size: 1.06 KB
Contents
source 'https://rubygems.org' gem 'activerecord', '~> 3.0' group :development, :test do gem 'rake', '~> 10.1.1' gem 'shoulda', '~> 3.5' gem 'ffaker', '>= 1.15' # Testing of Rails gem 'railties', '~> 3.0' # Testing of Sinatra gem 'sinatra', '~> 1.0' gem 'rack-test', '>= 0.6' # RSpec testing gem 'rspec-rails', '~> 2.14' gem 'generator_spec' # To do proper transactional testing with ActiveSupport::TestCase on MySQL gem 'database_cleaner', '~> 1.2.0' platforms :ruby do gem 'sqlite3', '~> 1.2' gem 'mysql2', '~> 0.3' gem 'pg', '~> 0.17' 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' end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
paper_trail-3.0.7 | gemfiles/3.0.gemfile |
paper_trail-3.0.6 | gemfiles/3.0.gemfile |
paper_trail-3.0.5 | gemfiles/3.0.gemfile |