Mercurial > zeropaste
annotate Gemfile @ 468:802dcd44188e
Now with webpacker
author | nanaya <me@nanaya.pro> |
---|---|
date | Sun, 23 Feb 2020 20:23:09 +0900 |
parents | fd3078b4d355 |
children | 68231013b01b |
rev | line source |
---|---|
269 | 1 source "https://rubygems.org" |
0 | 2 |
467 | 3 gem "rails", "~> 6.0.0" |
468 | 4 gem "sass-rails" |
5 gem "webpacker" | |
0 | 6 |
7 # Bundle edge Rails instead: | |
269 | 8 # gem "rails", :git => "git://github.com/rails/rails.git" |
0 | 9 |
275 | 10 gem "pg", :platforms => :ruby |
11 gem "activerecord-jdbcpostgresql-adapter", :platforms => :jruby | |
12 gem "jruby-openssl", :platforms => :jruby | |
0 | 13 |
275 | 14 gem "therubyrhino", :platforms => :jruby |
0 | 15 |
16 # To use ActiveModel has_secure_password | |
269 | 17 # gem "bcrypt-ruby", "~> 3.0.0" |
0 | 18 |
19 # To use Jbuilder templates for JSON | |
269 | 20 # gem "jbuilder" |
0 | 21 |
22 # Deploy with Capistrano | |
269 | 23 # gem "capistrano" |
0 | 24 |
25 # To use debugger | |
269 | 26 # gem "ruby-debug" |
57 | 27 |
156
d7b64b639d15
Disable newrelic by default (configurable).
Edho Arief <edho@myconan.net>
parents:
147
diff
changeset
|
28 group :newrelic do |
269 | 29 gem "newrelic_rpm" |
156
d7b64b639d15
Disable newrelic by default (configurable).
Edho Arief <edho@myconan.net>
parents:
147
diff
changeset
|
30 end |
178
e4a0ef308a99
Added quiet_assets for development environment.
Edho Arief <edho@myconan.net>
parents:
172
diff
changeset
|
31 |
437 | 32 gem "puma", :require => false |