-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathGemfile
95 lines (80 loc) · 2.32 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
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '3.0.0'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 6.1.1'
gem 'pg', '>= 0.18', '< 2.0'
gem 'puma', '~> 5.0'
gem 'sass-rails', '>= 6'
gem 'uglifier', '>= 1.3.0'
gem 'webpacker'
gem 'image_processing'
gem 'rubyzip'
gem 'turbolinks', '~> 5'
gem 'bootsnap', '>= 1.4.2', require: false
gem 'activerecord-import'
gem 'acts_as_list'
gem 'activeadmin', '~> 3.2.0'
gem 'activeadmin_addons'
gem 'devise', '>= 4.7.1'
gem 'cancancan'
gem 'draper-cancancan'
gem 'draper'
gem 'google-cloud-storage', '~> 1.36.2', require: false
gem 'discard'
gem 'public_activity'
gem 'friendly_id'
gem 'language_list'
gem 'pg_search', '2.3.2' # TODO: wait until this issue https://github.com/Casecommons/pg_search/issues/446 is resolved
gem 'simplecov', require: false, group: :test
gem 'dotenv-rails'
gem 'active_link_to' # simple helper for making links with active class
gem 'font-awesome-rails'
gem 'react-rails'
gem 'appsignal'
gem 'roo'
gem 'caxlsx'
gem 'mailjet'
group :development, :test do
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
gem 'database_cleaner-active_record'
gem 'factory_bot_rails'
gem 'timecop'
gem 'pry'
end
group :test do
gem 'capybara'
gem 'rails-controller-testing'
gem 'rspec-collection_matchers'
gem 'rspec-rails', '~> 4.1.0'
gem 'rspec-retry'
gem 'rspec-request_snapshot'
gem 'selenium-webdriver'
gem 'super_diff'
gem 'test-prof'
gem 'webdrivers'
end
group :development do
gem 'annotate'
gem 'brakeman', require: false
gem 'bundler-audit', require: false
gem 'bullet'
gem 'capistrano', '~> 3.12', require: false
gem 'capistrano-bundler'
gem 'capistrano-nvm'
gem 'capistrano-passenger'
gem 'capistrano-rails', '~> 1.4', require: false
gem 'capistrano-rvm'
gem 'capistrano-yarn'
gem 'countries' # just to generate country flags using rake task flags:generate
gem 'listen', '>= 3.0.5', '< 3.2'
# gem 'octokit', '~> 4.0' # used for generate flags - maybe could be removed
gem 'rubocop'
gem 'rubocop-performance'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
gem 'web-console', '>= 3.3.0'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
gem 'rack-cors'