mirror of
https://github.com/ditkrg/active_model_serializers.git
synced 2026-01-23 06:16:50 +00:00
Simplify the Gemfile setup for Travis by requiring version 2.2.5.
This commit updates the Travis version of Rubinius to 2.2.5+, which
includes the ruby standard library. Thus platform-specific Gemfile
configuration is no longer needed for Rubinius.
Also, Rubinius 2.2.5 does not work with sqilte3 1.3.9, so require
sqlite3 version 1.3.8 until it does.
💻 To run the tests locally, you will need to use Rubinius
2.2.5.
20 lines
293 B
Plaintext
20 lines
293 B
Plaintext
source 'https://rubygems.org'
|
|
|
|
gemspec
|
|
|
|
platforms :ruby do
|
|
gem 'sqlite3', '1.3.8'
|
|
end
|
|
|
|
platforms :mri do
|
|
gem 'coveralls', require: false
|
|
gem 'simplecov', require: false
|
|
end
|
|
|
|
platforms :jruby do
|
|
gem 'activerecord-jdbcsqlite3-adapter'
|
|
end
|
|
|
|
gem 'minitest', '~> 4.0'
|
|
gem 'rails', '~> 3.2'
|