-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
46 lines (25 loc) · 1.15 KB
/
Gemfile
File metadata and controls
46 lines (25 loc) · 1.15 KB
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
source 'https://rubygems.org'
ruby '2.2.0'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.1.8'
# == SERVER
gem 'foreman'
gem 'puma'
# == BACK END
gem 'pg' # => Use postgresql as the database for Active Record
gem 'sidekiq' # => Simple, efficient background processing for Ruby
# == FRONT-END
gem 'sass-rails', '~> 4.0.3' # Use SCSS for stylesheets
gem 'uglifier', '>= 1.3.0' # Use Uglifier as compressor for JavaScript assets
gem 'slim-rails' # Template language whose goal is reduce the syntax to the essential parts
gem 'foundation-rails' # Use foundation grid framework
gem 'jquery-rails' # Use jquery as the JavaScript library
#gem 'angularjs-rails' # Injects Angular.js into your asset pipeline as well as other Angular modules
#gem 'angular-ui-rails' # Injects Angular.js UI into your asset pipeline.
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks'
group :production do
gem 'rails_12factor'
end
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
#gem 'jbuilder', '~> 2.0'