dawarich/Gemfile

34 lines
732 B
Ruby
Raw Normal View History

2022-10-30 13:42:06 -04:00
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '3.1.0'
2022-10-30 13:42:06 -04:00
gem 'bootsnap', require: false
gem 'devise', '4.8.1'
gem 'pg', '~> 1.1'
gem 'puma', '~> 5.0'
2022-10-30 13:42:06 -04:00
gem 'rails', '7.0.4'
gem 'sprockets-rails'
gem 'stimulus-rails'
gem 'tailwindcss-rails'
2022-10-30 13:42:06 -04:00
gem 'turbo-rails'
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]
group :development, :test do
2022-10-30 13:42:06 -04:00
gem 'debug', platforms: %i[mri mingw x64_mingw]
gem 'factory_bot_rails'
gem 'ffaker', '2.20.0'
2022-10-30 13:42:06 -04:00
gem 'rspec-rails', '~> 5.1.0'
end
group :test do
gem 'shoulda-matchers', '~> 5.1'
2022-10-30 13:42:06 -04:00
gem 'simplecov', '~> 0.21'
end
2022-04-07 12:45:38 -04:00
group :development do
gem 'foreman'
2022-10-30 13:34:17 -04:00
gem 'rubocop-rails', require: false
2022-04-07 12:45:38 -04:00
end