forked from themarshallproject/klaxon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
50 lines (40 loc) · 862 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
source 'https://rubygems.org'
ruby '2.3.0'
gem 'rails', '4.2.5.1'
gem 'pg', '~> 0.15'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'therubyracer'
gem 'dotenv'
gem 'jquery-rails'
gem 'turbolinks'
gem 'sdoc', '~> 0.4.0', group: :doc
gem 'rack-cache'
gem 'bcrypt', '~> 3.1.7'
gem 'puma', '~> 3.2'
gem 'rails_12factor'
gem 'simple_form', '~> 3.2'
gem 'jwt'
gem 'premailer-rails'
gem 'httparty'
gem 'diffy'
gem 'kramdown'
# only used for alerting SQS.
gem 'aws-sdk', '~> 2.0'
group :development, :test do
gem 'byebug'
gem 'rspec-rails', '~> 3.0'
gem 'guard-rspec', require: false
gem 'factory_girl_rails', '~> 4.0'
gem 'database_cleaner'
gem 'sinatra'
end
group :test do
gem 'webmock'
gem 'codeclimate-test-reporter', require: nil
end
group :development do
gem 'letter_opener'
gem 'web-console', '~> 2.0'
gem 'spring'
end