-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
117 lines (85 loc) · 2.82 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby "3.1.3"
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem "rails", "~> 7.2.1"
# The original asset pipeline for Rails [https://github.com/rails/sprockets-rails]
gem "sprockets-rails"
# Use postgresql as the database for Active Record
gem "pg", ">= 0.18", "< 2.0"
gem "acts_as_list"
gem "acts_as_tree"
gem "exception_notification"
gem "liquid", "~> 5.5"
gem "nilify_blanks"
gem "render_anywhere"
gem "rmagick"
gem "slim"
# Run jobs in the background
gem "sidekiq", "~> 7.3"
gem "whenever", require: false
# Bootstrap for admin area
gem "bootstrap", "~> 5.3"
gem "bootstrap_form", "~> 5.4"
# Authentication and related security policies
gem "devise"
# Pagination
gem "will_paginate"
gem "bootstrap-will_paginate"
# Look up addresses by postcode
gem "postcode_software", "~> 0.0.3"
# Simpler HTTP requests
gem "curb"
# Stripe
gem "stripe"
# Use the Puma web server [https://github.com/puma/puma]
gem "puma"
# Use JavaScript with ESM import maps [https://github.com/rails/importmap-rails]
gem "importmap-rails"
# Hotwire's SPA-like page accelerator [https://turbo.hotwired.dev]
gem "turbo-rails"
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem "jbuilder"
# Use Redis adapter to run Action Cable in production
gem "redis", "~> 5.0"
# Use Active Model has_secure_password
# gem 'bcrypt', '~> 3.1.7'
# Use Active Storage variant
# gem 'image_processing', '~> 1.2'
# Reduces boot times through caching; required in config/boot.rb
gem "bootsnap", require: false
# Use Sass to process CSS
gem "sassc-rails"
group :development, :test do
gem "rspec-rails"
# Fixtures
gem "factory_bot_rails"
# See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
gem "debug", platforms: %i[mri mingw x64_mingw]
# Standard - Ruby style guide, linter, and formatter
gem "standard"
end
group :development do
gem "brakeman", "~> 6.2.1"
gem "guard-rspec", require: false
# Run specs in parallel
gem "parallel_tests", group: :development
# Use Capistrano for deployment
gem "capistrano-rails"
gem "capistrano-rvm", git: "https://github.com/capistrano/rvm.git"
gem "capistrano3-puma", github: "seuros/capistrano-puma"
# Use console on exceptions pages [https://github.com/rails/web-console]
gem "web-console"
end
group :test do
gem "launchy"
gem "shoulda-matchers"
gem "simplecov", require: false
# Use system testing [https://guides.rubyonrails.org/testing.html#system-testing]
gem "capybara"
gem "selenium-webdriver"
# Allows stubbing HTTP requests and setting expectations on HTTP requests
gem "webmock"
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby]