Created
October 1, 2018 13:08
-
-
Save YurySolovyov/03393007040bad65fe26b0ad54db4f37 to your computer and use it in GitHub Desktop.
Gemfile for Rails App with JRuby 9.2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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