forked from git/git-scm.com
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Gemfile
53 lines (44 loc) · 814 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
# frozen_string_literal: true
source "https://rubygems.org"
ruby "2.7.3"
gem "rails", "~> 6.0"
gem "asciidoctor", "~> 2.0.0"
gem "elasticsearch", "2.0.2"
gem "iso8601"
gem "octokit"
gem "puma"
gem "diffy"
gem "nokogiri"
# Assets
gem "sass-rails"
gem "uglifier"
group :development do
gem "awesome_print"
gem "better_errors"
gem "binding_of_caller"
gem "foreman"
end
group :development, :test do
gem "dotenv-rails"
gem "listen"
gem "pry-byebug"
gem "rubocop-github"
gem "ruby-prof"
gem "sqlite3"
end
group :test do
gem "database_cleaner"
gem "fabrication"
gem "factory_bot_rails"
gem "rails-controller-testing"
gem "rspec-rails"
gem "shoulda"
gem "vcr"
gem "webmock"
end
group :production do
gem "pg"
gem "rack-timeout"
gem "rails_12factor"
gem "redis-rails"
end