comparison Gemfile @ 269:f7c2bf78c501

Double quotes, hash rocket.
author edogawaconan <me@myconan.net>
date Wed, 16 Oct 2013 03:05:47 +0900
parents ceb44fca8b4a
children 6dd0f3300953
comparison
equal deleted inserted replaced
268:7f1eac4a7fa9 269:f7c2bf78c501
1 source 'https://rubygems.org' 1 source "https://rubygems.org"
2 2
3 gem 'rails', '~> 4.0.0.rc1' 3 gem "rails", "~> 4.0.0.rc1"
4 gem 'jquery-rails' 4 gem "jquery-rails"
5 5
6 # Bundle edge Rails instead: 6 # Bundle edge Rails instead:
7 # gem 'rails', :git => 'git://github.com/rails/rails.git' 7 # gem "rails", :git => "git://github.com/rails/rails.git"
8 8
9 gem 'pg', platforms: :ruby 9 gem "pg", platforms: :ruby
10 gem 'activerecord-jdbcpostgresql-adapter', platforms: :jruby 10 gem "activerecord-jdbcpostgresql-adapter", platforms: :jruby
11 gem 'jruby-openssl', platforms: :jruby 11 gem "jruby-openssl", platforms: :jruby
12 gem 'actionpack-page_caching' 12 gem "actionpack-page_caching"
13 13
14 gem 'sass-rails', '~> 4.0.0.rc1' 14 gem "sass-rails", "~> 4.0.0.rc1"
15 15
16 gem 'uglifier' 16 gem "uglifier"
17 gem 'anjlab-bootstrap-rails', require: 'bootstrap-rails' 17 gem "anjlab-bootstrap-rails", :require => "bootstrap-rails"
18 18
19 gem 'therubyrhino', platforms: :jruby 19 gem "therubyrhino", platforms: :jruby
20 20
21 # To use ActiveModel has_secure_password 21 # To use ActiveModel has_secure_password
22 # gem 'bcrypt-ruby', '~> 3.0.0' 22 # gem "bcrypt-ruby", "~> 3.0.0"
23 23
24 # To use Jbuilder templates for JSON 24 # To use Jbuilder templates for JSON
25 # gem 'jbuilder' 25 # gem "jbuilder"
26 26
27 group :standalone do 27 group :standalone do
28 # Use unicorn as the app server 28 # Use unicorn as the app server
29 gem 'unicorn', platforms: :mri 29 gem "unicorn", platforms: :mri
30 gem 'puma', platforms: [:rbx, :jruby] 30 gem "puma", platforms: [:rbx, :jruby]
31 end 31 end
32 32
33 # Deploy with Capistrano 33 # Deploy with Capistrano
34 # gem 'capistrano' 34 # gem "capistrano"
35 35
36 # To use debugger 36 # To use debugger
37 # gem 'ruby-debug' 37 # gem "ruby-debug"
38 38
39 group :newrelic do 39 group :newrelic do
40 gem 'newrelic_rpm' 40 gem "newrelic_rpm"
41 end 41 end
42 42
43 group :development do 43 group :development do
44 gem 'quiet_assets' 44 gem "quiet_assets"
45 gem 'puma' 45 gem "puma"
46 end 46 end