-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGemfile
85 lines (76 loc) · 1.96 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
# frozen_string_literal: true
source 'https://rubygems.org'
ruby '3.1.2'
git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?('/')
"https://github.com/#{repo_name}.git"
end
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 7.0'
# PostgreSQL
gem 'pg', '~> 1.4.3'
# Use Puma as the app server
gem 'puma'
# Use SCSS for stylesheets
gem 'sass-rails'
# Use ActiveModel has_secure_password
gem 'bcrypt'
# Rest client
gem 'rest-client'
# Shopify's code styles
gem 'rubocop-shopify', require: false
# AWS S3 SDK
gem 'aws-sdk-s3', require: false
# Pagination
gem 'will_paginate'
gem 'will_paginate-bulma'
# Image processing
gem 'image_processing', '~> 1.2'
# ActiveOperation
gem 'active_operation'
# As a state machine (AASM)
gem 'aasm'
# Code quality
gem 'rubocop', require: false
# Tanoshimu Utilities
gem 'tanoshimu_utils'
# Downloading files
gem 'down', '~> 5.0'
# Sidekiq
gem 'sidekiq', '6.4.2'
gem 'redis', '4.6.0'
# ViewComponent
gem 'view_component', require: 'view_component/engine'
# Frozen record
gem "frozen_record", "~> 0.20.1"
# All things about countries
gem 'countries', '~> 3.0'
# For graphql
gem 'graphql', '>= 1.11', '< 1.12'
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platform: :mri
gem 'dotenv-rails'
gem 'rspec-rails', '~> 4'
end
group :development do
# Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
gem 'listen', '~> 3.0.5'
gem 'web-console', '>= 3.3.0'
gem 'pry'
gem 'pry-rails'
# Use GraphiQL
gem 'graphiql-rails'
end
group :test do
gem 'factory_bot_rails'
gem 'faker'
gem 'rspec'
gem 'rspec_junit_formatter'
end
group :production do
gem 'rack-cache', require: 'rack/cache'
gem 'rails_12factor'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]