-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
29 lines (28 loc) · 909 Bytes
/
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
source 'https://rubygems.org'
gem 'pg'
# for opening files and nokogiri and such
require 'open-uri'
# nokogiri
gem 'nokogiri'
# amazon web services
gem 'aws-sdk-resources'
# bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '5.1.0'
# Use sqlite3 as the database for Active Record
gem 'sqlite3'
# Use SCSS for stylesheets
gem 'sass-rails'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier'
# Use CoffeeScript for .js.coffee assets and views
gem 'coffee-rails'
# use jquery as the javascript library
gem 'jquery-rails'
# turbolinks makes following links in your web application faster https://github.com/rails/turbolinks
gem 'turbolinks'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder'
# spring speeds up development by keeping things running https://github.com/rails/spring
gem 'spring', group: :development
# puma!
gem 'puma'