This repository has been archived by the owner on Nov 16, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
97 lines (58 loc) · 1.83 KB
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
source 'https://rubygems.org'
ruby "2.2.0"
gem 'rails', '4.0.3'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 1.2'
# { Localization
gem 'geoip'
gem 'http_accept_language'
# }
# { Documentation
gem 'sdoc', require: false, group: :doc
# }
# { DB
# Use sqlite3 as the database in the environments Development and Test.
gem 'sqlite3', group: [:development, :test]
# Use PostgreSQL as the database in the Production environment.
gem 'pg', group: [:production]
# Use ActiveModel has_secure_password
gem 'bcrypt', '~> 3.1.2'
# }
# { Runtime
gem 'foreman'
# }
# { Deployment
# Heroku integration (https://devcenter.heroku.com/articles/getting-started-with-rails4#heroku-gems)
gem 'rails_12factor', group: :production
# Use unicorn as the web server in production.
gem 'unicorn'
# }
# { Assets
# ==> Management
# This due to the bug https://github.com/rails/sass-rails/issues/191
# Please remove the following line (sprockets locked to 2.11.0) as soon as the issue gets solved
gem 'sprockets', '<= 2.11.0'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks'
# ==> Languages
# Use CoffeeScript for .js.coffee assets and views
gem 'coffee-rails', '~> 4.0.0'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 4.0.0'
# ==> Stylesheets libs
# TwitterBootstrap support (sass flavour)
gem 'bootstrap-sass', '~> 3.1.1'
# FontAwesome (+ Rails helpers)
gem 'font-awesome-rails'
# ==> Javascripts libs
# Modernizr JS library bundled in a gem.
gem 'modernizr-rails'
# Use KnockoutJS for data-binding
gem 'knockoutjs-rails'
# Use jquery as the JavaScript library
gem 'jquery-rails'
# jQuery scrollTo plugin bundled in a gem.
gem 'jquery-scrollto-rails'
# }