forked from joemasilotti/railsdevs.com
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Gemfile
69 lines (61 loc) · 1.71 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
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby "3.1.0"
gem "rails", "~> 7.0"
gem "cssbundling-rails", "~> 1.0"
gem "hotwire-rails", "~> 0.1"
gem "jsbundling-rails", "~> 1.0"
gem "pg", "~> 1.1"
gem "puma", "~> 5.6"
gem "sprockets-rails", "~> 3.4"
gem "stimulus-rails", "~> 0.7"
gem "turbo-rails", "~> 1.0"
gem "view_component", "~> 2.49"
group :development, :test do
gem "i18n-tasks"
gem "letter_opener_web"
gem "pry-rails"
gem "byebug"
gem "standard"
end
group :development do
# Point to GitHub until https://github.com/Shopify/erb-lint/pull/235 is released.
gem "erb_lint", require: false, github: "Shopify/erb-lint"
gem "hotwire-livereload"
gem "listen", "~> 3.3"
gem "redis"
gem "bullet"
end
group :test do
gem "capybara", "~> 3.36"
gem "minitest-reporters", "~> 1.5", require: false
gem "minitest-reporters-pride_reporter", "~> 0.0.2", require: false
gem "selenium-webdriver"
gem "webdrivers"
end
gem "auto_html", "~> 2.1"
gem "aws-sdk-s3", "~> 1", require: false
gem "classy-yaml", "~> 0.7"
gem "devise", "~> 4.8.1"
gem "friendly_id", "~> 5.4"
gem "image_processing", "~> 1.2"
gem "inline_svg", "~> 1.7"
gem "madmin", "~> 1.2"
gem "mailgun-ruby", "~> 1.2"
gem "newrelic_rpm", "~> 8.4"
gem "noticed", "~> 1.4"
gem "omniauth", "~> 2.0"
gem "omniauth-google-oauth2", "~> 1.0"
gem "omniauth-rails_csrf_protection", "~> 1.0"
gem "pagy", "~> 5.2"
gem "pay", "~> 3.0"
gem "pundit", "~> 2.1"
gem "redcarpet", "~> 3.5"
gem "rexml", "~> 3.2", ">= 3.2.5"
gem "sidekiq", "~> 6.4"
gem "sitemap_generator", "~> 6.1"
gem "stripe", ">= 2.8", "< 6.0"
gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby]
group :assets do
gem "sassc-rails", "~> 2.1"
end