-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
84 lines (76 loc) · 1.89 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
# frozen_string_literal: true
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
gem "rails", "~> 7.0.8"
gem "active_storage_validations"
gem "activestorage-validator"
gem "administrate"
gem "administrate-field-date_picker", "~> 0.3.0"
gem "administrate-field-ordered_has_many"
gem "administrate-field-scoped_has_many"
gem "aws-sdk-s3"
gem "binding_of_caller"
gem "cssbundling-rails"
gem "devise"
gem "font-awesome-rails"
gem "font-awesome-sass"
gem "friendly_id"
gem "httparty", ">= 0.21.0"
gem "image_processing", ">= 1.2"
gem "jbuilder"
gem "jsbundling-rails"
gem "json", ">= 2.3.0"
gem "kaminari"
gem "mail", "~> 2.8.1"
gem "mail_form"
gem "meta-tags"
gem "mini_magick"
gem "nokogiri", ">= 1.16.8"
gem "okcomputer"
gem "omniauth"
gem "omniauth-google-oauth2"
gem "omniauth-rails_csrf_protection"
gem "pg"
gem "puma", "~> 6.5.0"
gem "recaptcha", require: "recaptcha/rails"
gem "simple_form"
gem "skylight"
gem "sprockets-rails"
gem "stimulus-rails"
gem "turbo-rails"
group :production do
gem "dalli"
gem "connection_pool"
end
group :development, :test do
gem "debug", platforms: %i[mri mingw x64_mingw]
gem "pry"
gem "pry-byebug"
gem "pry-rails"
gem "rubocop", require: false
gem "rubocop-rails", require: false
end
group :development do
gem "brakeman"
gem "spring"
gem "spring-watcher-listen", "~> 2.1.0"
gem "web-console", ">= 3.3.0"
gem "better_errors"
end
group :test do
gem "capybara", ">= 2.15"
gem "factory_bot_rails"
gem "orderly"
gem "rails-controller-testing"
gem "rspec-activemodel-mocks"
gem "rspec-rails"
gem "selenium-webdriver"
gem "shoulda-matchers", "~> 6.4"
gem "simplecov"
gem "simplecov-lcov"
gem "webdrivers", "5.3.1"
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem "bootsnap", require: false
gem "tzinfo-data", platforms: %i[mingw mswin x64_mingw jruby]
gem "honeybadger", "~> 5.26"