forked from git/git-scm.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
59 lines (51 loc) · 889 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
51
52
53
54
55
56
57
58
59
source 'https://rubygems.org'
ruby "2.4.2"
gem 'rails', '4.2.10'
gem 'asciidoctor', '>=1.5.4'
gem 'faraday'
gem 'faraday_middleware'
gem 'octokit'
gem 'puma'
gem 'tilt'
gem 'tire'
gem 'iso8601'
gem 'json'
gem 'yajl-ruby'
gem 'netrc'
gem 'launchy'
gem 'rubyzip'
gem 'diff-lcs'
gem 'redcarpet'
gem 'nokogiri'
# Assets
gem 'compass-rails'
gem 'sass-rails'
gem 'uglifier', '3.2.0'
group :development do
gem "awesome_print"
gem "better_errors"
gem "binding_of_caller"
gem "foreman"
end
group :development, :test do
gem 'dotenv-rails'
gem "sqlite3"
gem 'pry-byebug'
gem 'ruby-prof'
gem 'bullet'
end
group :test do
gem 'database_cleaner'
gem 'fabrication'
gem 'rspec-rails'
gem 'shoulda-matchers'
gem 'webmock'
gem 'vcr'
gem 'rails-perftest'
end
group :production do
gem 'pg', '0.21.0'
gem 'rack-timeout'
gem 'rails_12factor'
gem 'redis-rails'
end