-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
47 lines (39 loc) · 892 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
source "https://rubygems.org"
ruby(File.read(".ruby-version").strip)
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
gem "coffee-rails", "~> 4.2"
gem "jbuilder", "~> 2.9"
gem "jquery-rails"
gem "pg", "~> 1.1"
gem "puma", "~> 4.0"
gem "rails", "~> 5.0.7"
gem "sass-rails", "~> 5.0"
gem "turbolinks", "~> 5"
gem "uglifier", ">= 1.3.0"
gem "httparty"
gem "responders"
gem "sucker_punch"
gem "wisper"
group :production do
gem "rails_12factor"
end
group :development, :test do
gem "factory_girl_rails"
gem "pry"
gem "rspec-rails"
end
group :development do
gem "listen", "~> 3.1.5"
gem "spring"
gem "spring-commands-rspec"
gem "spring-watcher-listen", "~> 2.0.0"
gem "web-console", ">= 3.3.0"
end
group :test do
gem "codecov", require: false
gem "shoulda-matchers"
gem "simplecov", require: false
gem "vcr"
gem "webmock"
gem "wisper-rspec"
end