-
Steve Jorgensen authored
Use sqlite_ext 1.5.0 which has been broadened to work with Ruby versions prior to 2.x, and remember to add it to files in the ./gemfiles/ directory for use with CI tests, not just to Gemfile in the root directory.
Steve Jorgensen authoredUse sqlite_ext 1.5.0 which has been broadened to work with Ruby versions prior to 2.x, and remember to add it to files in the ./gemfiles/ directory for use with CI tests, not just to Gemfile in the root directory.
This project manages its dependencies using Bundler.
Learn more
Gemfile 739 B
source "https://rubygems.org"
group :development, :test do
gem 'rake'
gem 'mongoid', '2.6.0'
gem 'bson_ext', platforms: :ruby
gem 'geoip'
gem 'rubyzip'
gem 'rails'
gem 'test-unit' # needed for Ruby >=2.2.0
gem 'byebug', platforms: :mri
platforms :jruby do
gem 'jruby-openssl'
gem 'jgeoip'
end
platforms :rbx do
gem 'rubysl', '~> 2.0'
gem 'rubysl-test-unit'
end
end
group :test do
platforms :ruby, :mswin, :mingw do
gem 'sqlite3'
gem 'sqlite_ext', '~> 1.5.0'
end
gem 'webmock'
platforms :ruby do
gem 'pg'
gem 'mysql2', '~> 0.3.11'
end
platforms :jruby do
gem 'jdbc-mysql'
gem 'jdbc-sqlite3'
gem 'activerecord-jdbcpostgresql-adapter'
end
end
gemspec