Mercurial > zeropaste
annotate Gemfile @ 254:bcca41003e84
Use postgres 'cuz mysql is shit.
- utf8 isn't utf8 (hint: utf8mb4)
- index key too loooooooooooong
Nope.
author | edogawaconan <me@myconan.net> |
---|---|
date | Tue, 15 Oct 2013 01:47:19 +0900 |
parents | 8ab17063419f |
children | ceb44fca8b4a |
rev | line source |
---|---|
0 | 1 source 'https://rubygems.org' |
2 | |
194 | 3 gem 'rails', '~> 4.0.0.rc1' |
38 | 4 gem 'jquery-rails' |
0 | 5 |
6 # Bundle edge Rails instead: | |
7 # gem 'rails', :git => 'git://github.com/rails/rails.git' | |
8 | |
254
bcca41003e84
Use postgres 'cuz mysql is shit.
edogawaconan <me@myconan.net>
parents:
246
diff
changeset
|
9 gem 'pg', platforms: :ruby |
bcca41003e84
Use postgres 'cuz mysql is shit.
edogawaconan <me@myconan.net>
parents:
246
diff
changeset
|
10 gem 'activerecord-jdbcpostgresql-adapter', platforms: :jruby |
194 | 11 gem 'jruby-openssl', platforms: :jruby |
12 gem 'actionpack-page_caching' | |
0 | 13 |
244 | 14 gem 'sass-rails', '~> 4.0.0.rc1' |
0 | 15 |
244 | 16 gem 'uglifier' |
246 | 17 gem 'anjlab-bootstrap-rails', '~>2.3.0', require: 'bootstrap-rails' |
160
3f02431cb17d
Added therubyrhino to remove the need of node.js when using jruby.
Edho Arief <edho@myconan.net>
parents:
159
diff
changeset
|
18 |
244 | 19 gem 'therubyrhino', platforms: :jruby |
0 | 20 |
21 # To use ActiveModel has_secure_password | |
22 # gem 'bcrypt-ruby', '~> 3.0.0' | |
23 | |
24 # To use Jbuilder templates for JSON | |
25 # gem 'jbuilder' | |
26 | |
147
812711965af1
Added support for disabling supported web server without changing Gemfile.
Edho Arief <edho@myconan.net>
parents:
99
diff
changeset
|
27 group :standalone do |
812711965af1
Added support for disabling supported web server without changing Gemfile.
Edho Arief <edho@myconan.net>
parents:
99
diff
changeset
|
28 # Use unicorn as the app server |
194 | 29 gem 'unicorn', platforms: :mri |
30 gem 'puma', platforms: [:rbx, :jruby] | |
147
812711965af1
Added support for disabling supported web server without changing Gemfile.
Edho Arief <edho@myconan.net>
parents:
99
diff
changeset
|
31 end |
0 | 32 |
33 # Deploy with Capistrano | |
34 # gem 'capistrano' | |
35 | |
36 # To use debugger | |
37 # gem 'ruby-debug' | |
57 | 38 |
156
d7b64b639d15
Disable newrelic by default (configurable).
Edho Arief <edho@myconan.net>
parents:
147
diff
changeset
|
39 group :newrelic do |
d7b64b639d15
Disable newrelic by default (configurable).
Edho Arief <edho@myconan.net>
parents:
147
diff
changeset
|
40 gem 'newrelic_rpm' |
d7b64b639d15
Disable newrelic by default (configurable).
Edho Arief <edho@myconan.net>
parents:
147
diff
changeset
|
41 end |
178
e4a0ef308a99
Added quiet_assets for development environment.
Edho Arief <edho@myconan.net>
parents:
172
diff
changeset
|
42 |
e4a0ef308a99
Added quiet_assets for development environment.
Edho Arief <edho@myconan.net>
parents:
172
diff
changeset
|
43 group :development do |
e4a0ef308a99
Added quiet_assets for development environment.
Edho Arief <edho@myconan.net>
parents:
172
diff
changeset
|
44 gem 'quiet_assets' |
189
b4b7a29b70f6
Initial work for paste deletion.
Edho Arief <edho@myconan.net>
parents:
185
diff
changeset
|
45 gem 'puma' |
178
e4a0ef308a99
Added quiet_assets for development environment.
Edho Arief <edho@myconan.net>
parents:
172
diff
changeset
|
46 end |