-
-
Notifications
You must be signed in to change notification settings - Fork 41
/
Gemfile
76 lines (68 loc) · 2.22 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
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '2.7.1'
gem 'pg', '>= 0.18', '< 2.0'
gem 'puma', '~> 4.3.5'
gem 'rails', '~> 6.0.3.2'
gem 'sassc', '2.3.0'
gem 'sassc-rails', '~> 2.1' # Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# See https://github.com/rails/execjs#readme for more supported runtimes
# gem 'mini_racer', platforms: :ruby
gem 'aasm'
gem 'acts_as_tenant', github: 'ErwinM/acts_as_tenant'
gem 'aws-sdk-s3'
gem 'azure-storage', require: false
gem 'bootsnap', '>= 1.1.0', require: false
gem 'bootstrap', '~> 4.4.1'
gem 'bootstrap-table-rails'
gem 'bugsnag'
gem 'filterrific'
gem 'font-awesome-rails'
gem 'jbuilder', '~> 2.10.0'
gem 'jquery-rails'
gem 'mina'
gem 'mina-puma', require: false
gem 'mini_magick', '~> 4.8'
gem 'money-rails', '~>1.12'
gem 'name_of_person'
gem 'rack', '>= 2.2.3'
gem 'responders'
gem 'sidekiq'
gem 'sidekiq-cron'
# from github due to deprecations mentioned here: https://github.com/rails/sprockets-rails/issues/464
gem 'sprockets-rails', github: 'rails/sprockets-rails'
gem 'tinymce-rails'
gem 'turbolinks', '~> 5'
gem 'websocket-extensions', '>= 0.1.5'
gem 'will_paginate'
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'dotenv-rails'
gem 'pry-byebug', platforms: %i[mri mingw x64_mingw]
end
group :development do
gem 'better_errors'
gem 'binding_of_caller'
gem 'listen', '>= 3.0.5', '< 3.2'
gem 'pivotal_git_scripts'
gem 'web-console', '>= 3.3.0'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
end
group :test do
gem 'capybara'
gem 'factory_bot_rails', '~> 5.0'
gem 'rspec-rails', '~> 4.0'
# add simpleCov for Code Climate test coverage visibility
gem 'rails-controller-testing'
gem 'shoulda-matchers'
gem 'simplecov', require: false
end
gem 'devise', '>= 4.7.1' # TODO: upgrade when deprecation warning PR fully merged https://github.com/heartcombo/devise/pull/5235
gem 'pundit'
gem 'rubocop'
gem 'rubocop-rspec'
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]