Manage your recipes
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
kitchen-book/Gemfile

37 lines
725 B

# frozen_string_literal: true
source 'https://rubygems.org'
ruby '3.3.0'
gem 'bootsnap', require: false
gem 'importmap-rails'
gem 'jbuilder'
gem 'pg', '~> 1.1'
gem 'puma', '>= 5.0'
gem 'rails', '~> 7.1.2'
gem 'sprockets-rails'
gem 'stimulus-rails'
gem 'turbo-rails'
gem 'tzinfo-data', platforms: %i[windows jruby]
group :development, :test do
gem 'debug', platforms: %i[mri windows]
gem 'rubocop', '~> 1.60'
gem 'rubocop-performance', '~> 1.20'
gem 'rubocop-rails', '~> 2.23'
gem 'rubocop-rspec', '~> 2.26'
end
group :development do
gem 'rack-mini-profiler'
gem 'strong_migrations', '~> 1.7'
gem 'web-console'
end
group :test do
gem 'capybara'
gem 'rspec', '~> 3.12'
gem 'selenium-webdriver'
end