forked from rubyforgood/human-essentials
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
125 lines (115 loc) · 2.81 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
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
ruby "2.7.2"
gem "api-auth", "~> 2.4"
gem 'azure-storage', '~> 0.15.0.preview', require: false
gem 'azure-storage-blob'
gem 'bootstrap', '~> 4.6.0'
gem 'bootstrap-daterangepicker-rails'
gem 'bootstrap-select-rails'
gem "bugsnag"
gem "chartkick"
gem "cocoon"
gem "devise", '>= 4.7.1'
gem 'discard', '~> 1.2'
gem "devise_invitable"
gem "dotenv-rails"
gem "filterrific"
gem "flipper"
gem "flipper-active_record"
gem "flipper-ui"
gem "font-awesome-rails"
gem "font-ionicons-rails"
gem "fullcalendar-rails"
gem "geocoder"
gem "groupdate", "~> 5.2"
gem "image_processing"
gem "jbuilder"
gem "jquery-rails"
gem "jquery-ui-rails"
gem "jwt"
gem "kaminari"
gem "mini_racer", "~> 0.3.1"
gem "momentjs-rails"
gem "nokogiri", ">= 1.10.4"
gem "paperclip" # needed for legacy migrations
gem "pg", "~> 1.2.3"
gem "simple_form"
gem 'popper_js'
gem "prawn-rails"
gem "puma"
gem "rails", "~> 6.0.3"
gem "sass-rails"
gem "sidekiq"
gem 'sidekiq-scheduler'
gem "strong_migrations", "~> 0.7.6"
gem "sprockets", "~> 4.0.2"
gem "toastr-rails"
gem "uglifier", ">= 1.3.0"
gem "webpacker", "> 4.0"
gem "yajl-ruby"
gem "recaptcha"
group :production do
gem "newrelic_rpm"
gem "skylight"
end
group :development, :test, :staging do
gem 'factory_bot_rails'
gem "database_cleaner"
gem 'faker'
end
group :development, :test do
gem "awesome_print"
gem "brakeman"
gem "fakeredis", require: "fakeredis/rspec"
gem "guard-rspec"
gem "knapsack_pro"
gem "pry-rails"
gem "pry-remote"
gem "pry-nav"
gem "rb-readline", "~> 0.5.3"
gem "rspec-rails", "~> 5.0.1"
gem "rubocop"
gem "rubocop-rails", "~> 2.9.1"
gem "terminal-notifier-guard"
gem "terminal-notifier"
end
group :development do
gem "annotate"
gem "binding_of_caller"
gem "better_errors"
gem "bullet"
gem "capistrano-rails"
gem "capistrano-rvm"
gem "capistrano-bundler"
gem "capistrano3-puma"
gem "capistrano-rails-console", require: false
gem 'capistrano-sidekiq'
gem "letter_opener"
gem "listen", "~> 3.5.0"
gem "rails-erd"
gem "spring"
gem "spring-watcher-listen"
gem "web-console"
end
group :test do
gem "capybara", "~> 3.35"
gem "capybara-screenshot"
gem "launchy"
gem 'magic_test'
gem "rails-controller-testing"
gem "rspec-sidekiq"
gem 'simplecov'
gem 'shoulda-matchers', '~> 4.5'
gem 'webdrivers', '~> 4.6'
gem "webmock", "~> 3.12"
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
# This 'if' may seem redundant but for some reason it is necessary to suppress
# a warning on non (Windows or JRuby) platforms.
if %w(mingw mswin x64_mingw jruby).include?(RUBY_PLATFORM)
gem "tzinfo-data", "~> 1.2", platforms: %i(mingw mswin x64_mingw jruby)
end