This repository has been archived by the owner on May 2, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
88 lines (73 loc) · 1.77 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
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '3.1.2'
gem 'rails', '~> 7.0.x'
gem 'pg'
gem "puma"
gem 'haml'
gem 'mini_racer', platforms: :ruby
gem 'dotenv-rails'
gem 'bcrypt', '~> 3.1.7'
gem 'http'
gem 'redis', '~> 4.0'
gem 'sucker_punch', '~> 2.0'
gem 'oj'
gem 'roo' # CSV importing
gem 'sanitize'
gem "nokogiri", ">= 1.10.4"
gem 'jbuilder', '~> 2.7'
gem 'kramdown'
# asset pipeline
gem 'terser'
gem 'sass-rails'
gem 'autoprefixer-rails'
gem 'coffee-rails'
gem 'jquery-rails'
gem 'jquery-ui-rails'
# js bundling
gem "jsbundling-rails"
gem "stimulus-rails"
# gem 'turbo-rails'
# css bundling
gem "cssbundling-rails"
gem 'meta-tags'
gem 'sitemap_generator'
gem 'gibbon' # mailchimp integration
gem 'textacular', git: 'https://github.com/textacular/textacular'
gem 'sorcery'
gem 'pretender'
gem 'namae'
gem 'countries'
gem 'country_select', '~> 3.1'
gem 'reverse_markdown' # used to re-display html after saving
gem 'browser'
gem 'kaminari' # pagination
gem 'plyr-rails'
gem 'rinku'
gem 'postmark-rails'
gem 'stripe'
gem 'stripe_event'
gem 'appsignal'
gem 'carrierwave', '~> 1.0'
gem "mini_magick", ">= 4.9.4"
gem 'fog-aws', group: :production
gem 'aws-sdk-s3', require: false
gem 'bootsnap', '>= 1.4.4', require: false
group :development, :test do
gem "standard", '~> 1.5.x'
gem "debug", platforms: %i[ mri mingw x64_mingw ]
end
group :development do
gem "web-console"
gem 'rack-mini-profiler'
gem 'letter_opener'
gem 'letter_opener_web'
end
group :test do
gem 'stripe-ruby-mock', '~> 2.5.8', :require => 'stripe_mock'
gem "capybara"
gem "selenium-webdriver"
gem "webdrivers"
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]