-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathGemfile
43 lines (33 loc) · 994 Bytes
/
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
source 'http://rubygems.org'
ruby '3.4.1'
gem 'rails', '~> 7.2'
# Use puma as the webserver
gem 'puma', '~> 6.4', '>= 6.4.3'
# Use PostgreSQL as the database
gem 'pg', '~> 1.5', '>= 1.5.7'
# Use bcrypt to hash passwords
gem 'bcrypt', '~> 3.1', '>= 3.1.13'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '~> 4.2'
# Use sprockets-rails to allow precompilation of assets
gem 'sprockets-rails', '~> 3.4', '>= 3.4.2'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.9', '>= 2.9.1'
# Use rubyzip for working with zip files
gem 'rubyzip', '~> 2.3', '>= 2.3.2'
# Use AWS S3 for boarding pass storage
gem 'aws-sdk-s3', '~> 1.157'
# Allow CORS for JSON API requests.
gem 'rack-cors'
group :development do
gem 'sql_queries_count'
end
group :test do
gem 'minitest-reporters'
gem 'capybara'
gem 'selenium-webdriver', '~> 4.23.0'
# Use webmock to stub out HTTP API requests
gem 'webmock'
end
group :production do
end