Mercurial > zeropaste
annotate Gemfile @ 490:a39bc79fcb1a
Specify path to builds directory
author | nanaya <me@nanaya.net> |
---|---|
date | Tue, 17 Jan 2023 02:36:38 +0900 |
parents | 361ab9e7ffad |
children |
rev | line source |
---|---|
269 | 1 source "https://rubygems.org" |
0 | 2 |
485 | 3 gem "rails", "~> 7.0.1" |
468 | 4 gem "sass-rails" |
469 | 5 gem "autoprefixer-rails" |
489
361ab9e7ffad
Replace webpacker with esbuild and use plain js instead of coffee
nanaya <me@nanaya.net>
parents:
487
diff
changeset
|
6 gem "sprockets-rails" |
361ab9e7ffad
Replace webpacker with esbuild and use plain js instead of coffee
nanaya <me@nanaya.net>
parents:
487
diff
changeset
|
7 gem "jsbundling-rails" |
0 | 8 |
9 # Bundle edge Rails instead: | |
269 | 10 # gem "rails", :git => "git://github.com/rails/rails.git" |
0 | 11 |
275 | 12 gem "pg", :platforms => :ruby |
0 | 13 |
14 # To use ActiveModel has_secure_password | |
269 | 15 # gem "bcrypt-ruby", "~> 3.0.0" |
0 | 16 |
17 # To use Jbuilder templates for JSON | |
269 | 18 # gem "jbuilder" |
0 | 19 |
20 # Deploy with Capistrano | |
269 | 21 # gem "capistrano" |
0 | 22 |
23 # To use debugger | |
269 | 24 # gem "ruby-debug" |
57 | 25 |
156
d7b64b639d15
Disable newrelic by default (configurable).
Edho Arief <edho@myconan.net>
parents:
147
diff
changeset
|
26 group :newrelic do |
269 | 27 gem "newrelic_rpm" |
156
d7b64b639d15
Disable newrelic by default (configurable).
Edho Arief <edho@myconan.net>
parents:
147
diff
changeset
|
28 end |
178
e4a0ef308a99
Added quiet_assets for development environment.
Edho Arief <edho@myconan.net>
parents:
172
diff
changeset
|
29 |
437 | 30 gem "puma", :require => false |