This repository has been archived by the owner on Nov 6, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 70
/
Gemfile
78 lines (72 loc) · 1.74 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
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby "2.7.2"
gem 'azure-storage', '~> 0.15.0.preview', require: false
gem "bootsnap", ">= 1.1.0", require: false
gem "bootstrap", "~> 4.5.3"
gem "bugsnag"
gem "devise"
gem "devise_invitable"
gem "filterrific"
gem "flipper"
gem "flipper-active_record"
gem "flipper-ui"
gem "font-awesome-rails"
gem "font-ionicons-rails"
gem "jbuilder", "~> 2.10"
gem "jquery-rails", "~> 4.3", ">= 4.3.1"
gem "kaminari"
gem "mini_racer"
gem "pg"
gem "prawn-rails"
gem "puma", "~> 4.3"
gem "pundit", "~> 2.1.0"
gem "rails", "~> 6.0.3"
gem "sass-rails", "~> 6.0"
gem "simple_form"
gem "skylight"
gem "uglifier", ">= 1.3.0"
gem "wicked_pdf", "~> 2.1"
gem "wkhtmltopdf-binary"
group :development, :test do
gem "better_errors"
gem "binding_of_caller"
gem "brakeman"
gem "byebug", platforms: [:mri, :mingw, :x64_mingw]
gem "capybara-screenshot"
gem "dotenv-rails"
gem "erb_lint", require: false
gem "factory_bot_rails"
gem "faker"
gem "guard-rspec"
gem "pry"
gem "pry-rails"
gem "pry-remote"
gem "rspec-rails", "~> 4.0"
gem "rubocop"
gem "rubocop-rails"
gem "rubocop-rspec"
gem "simplecov", require: false
end
group :development do
gem "annotate"
gem "capistrano-bundler"
gem "capistrano-rails"
gem "capistrano-rails-console", require: false
gem "capistrano-rvm"
gem "capistrano3-puma"
gem "letter_opener"
gem "listen", ">= 3.0.5", "< 3.5"
gem "spring"
gem "spring-watcher-listen", "~> 2.0.0"
gem "web-console", ">= 3.3.0"
end
group :test do
gem "capybara", ">= 2.15"
gem "webdrivers"
gem "email_spec"
gem "selenium-webdriver"
gem "shoulda-matchers"
gem "webmock"
end
gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby]