Mercurial > zeropaste
annotate Gemfile @ 366:26545fe719ca
Remove caching system.
Too much complexity for something that is really simple.
author | edogawaconan <me@myconan.net> |
---|---|
date | Sat, 14 Feb 2015 01:35:45 +0900 |
parents | dd5a107bff3d |
children | 2ad092e60975 |
rev | line source |
---|---|
269 | 1 source "https://rubygems.org" |
0 | 2 |
362 | 3 gem "rails", "~> 4.2.0" |
269 | 4 gem "jquery-rails" |
362 | 5 gem "coffee-rails", "~> 4.1.0" # Rails 4.2 default |
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 |
362 | 14 gem "sass-rails", "~> 5.0" # Rails 4.2 default |
0 | 15 |
362 | 16 gem "uglifier", ">= 1.3.0" # Rails 4.2 default |
334 | 17 gem "bootstrap-sass" |
160
3f02431cb17d
Added therubyrhino to remove the need of node.js when using jruby.
Edho Arief <edho@myconan.net>
parents:
159
diff
changeset
|
18 |
275 | 19 gem "therubyrhino", :platforms => :jruby |
0 | 20 |
21 # To use ActiveModel has_secure_password | |
269 | 22 # gem "bcrypt-ruby", "~> 3.0.0" |
0 | 23 |
24 # To use Jbuilder templates for JSON | |
269 | 25 # gem "jbuilder" |
0 | 26 |
27 # Deploy with Capistrano | |
269 | 28 # gem "capistrano" |
0 | 29 |
30 # To use debugger | |
269 | 31 # gem "ruby-debug" |
57 | 32 |
156
d7b64b639d15
Disable newrelic by default (configurable).
Edho Arief <edho@myconan.net>
parents:
147
diff
changeset
|
33 group :newrelic do |
269 | 34 gem "newrelic_rpm" |
156
d7b64b639d15
Disable newrelic by default (configurable).
Edho Arief <edho@myconan.net>
parents:
147
diff
changeset
|
35 end |
178
e4a0ef308a99
Added quiet_assets for development environment.
Edho Arief <edho@myconan.net>
parents:
172
diff
changeset
|
36 |
e4a0ef308a99
Added quiet_assets for development environment.
Edho Arief <edho@myconan.net>
parents:
172
diff
changeset
|
37 group :development do |
269 | 38 gem "quiet_assets" |
178
e4a0ef308a99
Added quiet_assets for development environment.
Edho Arief <edho@myconan.net>
parents:
172
diff
changeset
|
39 end |