-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gemfile
38 lines (32 loc) · 1.15 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
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
gemspec
gem 'rails', '~> 7.2.0'
group :development, :test do
gem 'autoprefixer-rails', '~> 10.4.16.0'
gem 'byebug', '~> 11.1.0', platforms: %i[mri mingw x64_mingw]
gem 'image_processing', '>= 1.12.0'
gem 'sqlite3', '~> 1.6.7'
# gem 'mysql2', '~> 0.5'
# gem 'pg', '~> 1.5.4'
end
group :development do
gem 'listen', '~> 3.9.0'
gem 'web-console', '~> 4.2'
end
group :test do
gem 'brakeman', '~> 6.1.2'
gem 'bundler-audit', '~> 0.9.1'
gem 'coveralls_reborn', '~> 0.28.0', require: false
gem 'cuprite', '>= 0.15'
gem 'equivalent-xml', '~> 0.6.0'
gem 'minitest', '>= 5.23.0'
gem 'minitest-reporters', '>= 1.6.1'
gem 'mocha', '>= 2.3.0', require: false
gem 'rails-controller-testing', '~> 1.0.5'
gem 'rubocop', '~> 1.63.0', require: false
gem 'rubocop-minitest'
gem 'rubocop-rails'
gem 'simplecov', '~> 0.22.0', require: false
end