-
Notifications
You must be signed in to change notification settings - Fork 3
/
Gemfile
50 lines (43 loc) · 877 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.7.6"
# Rails
gem 'rails', '~> 5.2.8.1'
gem 'pg', '>= 0.18', '< 2.0'
gem 'puma'
gem 'sass-rails', '~> 6'
gem 'uglifier'
gem 'jquery-rails'
gem 'uuid'
gem 'rmagick'
gem 'httparty'
gem 'omniauth-github'
gem 'omniauth-rails_csrf_protection'
gem 'github_api'
gem 'will_paginate'
gem 'bootstrap-will_paginate'
gem 'fog-aws'
gem 'haml'
gem 'simple_form'
gem 'carrierwave'
gem "bootsnap", ">= 1.4.6", require: false
group :production do
gem 'newrelic_rpm'
end
group :development, :test do
gem 'dotenv-rails'
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
end
group :development do
gem "listen", ">= 3.0.5", "< 3.2", require: false
gem 'spring'
gem 'spring-watcher-listen'
end
group :test do
gem 'test-unit'
gem 'spin'
gem 'mocha'
gem 'fakeweb'
gem 'factory_bot_rails'
gem 'shoulda'
gem 'shoulda-matchers'
end