-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathGemfile
51 lines (44 loc) · 1.41 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
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '3.4.1'
gem 'avro'
gem 'bootsnap', '>= 1.1.0', require: false # Reduces boot times through caching
gem 'bunny'
gem 'csv'
gem 'exception_notification'
gem 'jsonapi-resources'
gem 'mysql2'
gem 'puma', '~> 6.0' # Use Puma as the app server
gem 'rack-cors' # Use Rack CORS for handling CORS, making cross-origin AJAX possible
gem 'rails', '~> 7.2.0'
gem 'syslog' # No longer part of the default gems in Ruby 3.4
group :development do
gem 'listen'
gem 'rails-erd'
gem 'spring' # Spring speeds up development by keeping your application running in the background.
gem 'spring-watcher-listen'
gem 'yard', require: false
end
group :test do
gem 'database_cleaner'
# without require: false it will load the gem before the rails environment
gem 'factory_bot_rails', require: false
gem 'rubocop-factory_bot', require: false
end
group :development, :test do
gem 'byebug', platforms: %i[mri mingw x64_mingw]
gem 'pry-rails'
gem 'rspec-rails'
gem 'rubocop', require: false
gem 'rubocop-rails', require: false
gem 'rubocop-rspec', require: false
gem 'shoulda-matchers'
gem 'simplecov', require: false
gem 'simplecov-lcov', require: false
gem 'webmock'
end
gem 'flipper', '~> 0.25.0'
gem 'flipper-active_record', '~> 0.25.0'
gem 'flipper-api', '~> 0.25.0'
gem 'flipper-ui', '~> 0.25.3'