forked from git/git-scm.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
61 lines (52 loc) · 950 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
60
61
# frozen_string_literal: true
source "https://rubygems.org"
ruby "2.4.2"
gem "rails", "~> 4.2.10"
gem "asciidoctor", ">=1.5.4"
gem "elasticsearch", "2.0.2"
gem "faraday"
gem "faraday_middleware"
gem "iso8601"
gem "octokit"
gem "puma"
gem "tilt"
gem "diff-lcs"
gem "json"
gem "launchy"
gem "netrc"
gem "nokogiri"
gem "redcarpet"
gem "yajl-ruby"
# 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 "bullet"
gem "dotenv-rails"
gem "pry-byebug"
gem "rubocop-github"
gem "ruby-prof"
gem "sqlite3"
end
group :test do
gem "database_cleaner"
gem "fabrication"
gem "rails-perftest"
gem "rspec-rails"
gem "shoulda-matchers"
gem "vcr"
gem "webmock"
end
group :production do
gem "pg", "0.21.0"
gem "rack-timeout"
gem "rails_12factor"
gem "redis-rails"
end