Skip to content

Instantly share code, notes, and snippets.

@YurySolovyov
Created October 1, 2018 13:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save YurySolovyov/03393007040bad65fe26b0ad54db4f37 to your computer and use it in GitHub Desktop.
Save YurySolovyov/03393007040bad65fe26b0ad54db4f37 to your computer and use it in GitHub Desktop.
Gemfile for Rails App with JRuby 9.2
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '2.5.0'
gem 'pg_jruby'
gem 'rails', '~> 5.2.1'
gem 'activerecord-jdbcpostgresql-adapter'
gem 'puma', '~> 3.11'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'therubyrhino'
gem 'coffee-rails', '~> 4.2'
gem 'turbolinks', '~> 5'
gem 'jbuilder', '~> 2.5'
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
group :development do
gem 'listen'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment