1
1
source 'https://rubygems.org'
2
2
3
-
4
- # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
5
3
gem 'rails' , '4.1.4'
6
- gem 'sqlite3'
7
4
gem 'sass-rails' , '~> 4.0.3'
8
5
gem 'uglifier' , '>= 1.3.0'
9
6
gem 'coffee-rails' , '~> 4.0.0'
10
7
gem 'slim-rails'
11
- # gem 'slim-rails'
12
- # See https://github.com/sstephenson/execjs#readme for more supported runtimes
13
- # gem 'therubyracer', platforms: :ruby
14
8
15
9
gem 'devise'
16
10
gem 'cancancan'
17
11
18
12
gem 'paperclip'
19
13
gem 'aws-sdk'
20
14
21
- # Use jquery as the JavaScript library
22
15
gem 'jquery-rails'
23
- # Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
24
16
gem 'turbolinks'
25
- # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
26
17
gem 'jbuilder' , '~> 2.0'
27
- # bundle exec rake doc:rails generates the API under doc/api.
28
- gem 'sdoc' , '~> 0.4.0' , group : :doc
29
-
30
- # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
31
- gem 'spring' , group : :development
32
-
33
- # Use ActiveModel has_secure_password
34
- # gem 'bcrypt', '~> 3.1.7'
35
-
36
- # Use unicorn as the app server
37
- # gem 'unicorn'
38
-
39
- # Use Capistrano for deployment
40
- # gem 'capistrano-rails', group: :development
18
+ gem 'omniauth'
41
19
42
- # Use debugger
43
- # gem 'debugger', group: [:development, :test]
20
+ group :development do
21
+ gem 'sqlite3'
22
+ gem 'better_errors'
23
+ end
44
24
25
+ group :production do
26
+ gem 'pg'
27
+ gem 'unicorn'
28
+ end
0 commit comments