This repository was archived by the owner on Nov 23, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 113
/
Copy pathGemfile
101 lines (81 loc) · 1.94 KB
/
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
source 'https://rubygems.org'
git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/")
"https://github.com/#{repo_name}.git"
end
gem 'rails', '~> 6.0.0'
gem 'puma', '~> 3.12'
gem 'mysql2'
gem 'rack-cors'
gem 'dalli'
gem 'devise', ">= 4.7.1"
gem 'omniauth-github'
gem 'kaminari'
gem 'friendly_id', github: 'norman/friendly_id', branch: 'master', ref: 'cdd5971f91c40e0c05e5afb498d2ec1b452ffb44'
gem 'mandate'
gem 'concurrent-ruby'
gem 'haml-rails'
gem 'jquery-rails'
gem 'sassc-rails'
gem 'uglifier', '>= 1.3.0'
gem 'premailer-rails'
gem 'commonmarker', require: false
gem 'rugged'
gem 'loofah'
gem 'lmdb'
gem 'octokit'
gem "bugsnag"
gem 'image_processing', '~> 1.2'
gem 'rest-client'
gem 'rubyzip', require: false
gem 'propono'
gem 'aws-sdk-s3'
gem 'aws-sdk-ecr'
gem 'delayed_job_active_record'
gem 'daemons'
gem 'bootsnap', '>= 1.1.0', require: false
gem 'lograge'
gem 'recaptcha'
gem 'flipper'
gem 'flipper-active_record'
gem 'flipper-ui'
gem 'twitter', require: false
gem 'webpacker', '~> 4.0'
gem 'redis'
gem 'ansi-to-html', require: false
group :production do
#gem "skylight"
end
group :development, :test do
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
gem 'capybara', '~> 3.0'
gem 'selenium-webdriver'
gem 'factory_bot_rails'
gem 'bullet'
gem 'rubocop', require: false
gem 'haml-lint', require: false
end
group :development do
gem 'web-console', '>= 3.3.0'
gem 'listen', '>= 3.0.5', '< 3.2'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
gem 'capistrano', '~> 3.6'
gem 'capistrano-rails', '~> 1.1'
gem 'capistrano-rvm'
gem 'capistrano-yarn'
gem 'letter_opener'
end
group :test do
gem 'simplecov', require: false
gem 'minitest', '~> 5.10', '!= 5.10.2'
gem 'minitest-stub-const'
gem 'mocha'
gem 'rails-controller-testing'
gem 'timecop'
gem 'webdrivers', '~> 4.0'
gem 'webmock'
end
group :development, :production do
gem 'capistrano-checks'
end