Skip to content

Commit

Permalink
Removed jruby testing stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
Anthony Smith committed Apr 12, 2018
1 parent e58e2ba commit 126767d
Showing 1 changed file with 12 additions and 20 deletions.
32 changes: 12 additions & 20 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,31 +5,23 @@ gemspec

rails_version = ENV['RAILS_VERSION'] || 'default'

rails = case rails_version

when 'master'
{ github: 'rails/rails' }
when 'default'
'>= 5.1.0'
else
"~> #{rails_version}"
end
rails =
case rails_version
when 'master'
{ github: 'rails/rails' }
when 'default'
'>= 5.2.0'
else
"~> #{rails_version}"
end

gem 'rails', rails

platforms :jruby do
gem "activerecord-jdbcsqlite3-adapter"
gem "jruby-openssl"
end

platforms :ruby do
gem "sqlite3"
gem "test-unit"
end

group :development do
gem 'bundler'
gem 'coveralls', :require => false
gem 'coveralls', require: false
gem 'listen'
gem 'rake'
gem "sqlite3"
gem "test-unit"
end

0 comments on commit 126767d

Please sign in to comment.