-
Notifications
You must be signed in to change notification settings - Fork 31
/
Gemfile
65 lines (58 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
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '3.3.5'
gem 'activeadmin', '4.0.0.beta13'
gem 'aws-sdk-s3', require: false
gem 'chartkick'
gem 'delayed', github: 'ryanckulp/delayed' # delayed_job_active_record rails 7 fork: https://github.com/betterment/delayed
gem 'devise'
gem 'groupdate' # used by Chartkick
gem 'honeypot-captcha', github: 'founderhacker/honeypot-captcha' # prevent unauthenticated form spam
gem 'httparty'
gem "image_processing", ">= 1.2"
gem 'importmap-rails'
gem 'jbuilder'
gem 'metamagic' # easily insert metatags for SEO / opengraph
gem 'methodz' # query db-backed object methods by partial name or type
gem 'pg'
gem 'postmark-rails'
gem 'pretender'
gem 'puma', '6.4.2'
gem 'rack-cors', :require => 'rack/cors'
gem 'rails', '8.0.0.rc1'
gem 'redis'
gem 'rename', '1.1.3', git: 'https://github.com/ryanckulp/rename' # remove this gem after use
gem 'split', require: 'split/dashboard'
gem 'sprockets-rails'
gem 'stimulus-rails'
gem 'stripe'
gem 'tailwindcss-rails'
gem 'turbo-rails'
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]
# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', require: false
group :development, :test do
gem 'debug', platforms: %i[mri mingw x64_mingw]
gem 'rubocop', require: false # code styling
gem 'rubocop-capybara', require: false
gem 'rubocop-factory_bot', require: false
gem 'rubocop-rails', require: false
gem 'rubocop-rspec', require: false
end
group :development do
gem 'letter_opener' # view mailers in browser
gem 'web-console'
end
group :test do
gem 'capybara'
gem 'factory_bot_rails'
gem 'faker'
gem 'rspec-rails', '7.0.1'
gem 'selenium-webdriver'
gem 'shoulda-callback-matchers'
gem 'shoulda-matchers'
gem 'simplecov'
gem 'simplecov-tailwindcss'
gem 'webmock'
end