dawarich/Gemfile

40 lines
770 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" }
2024-03-15 17:17:17 -04:00
ruby '3.2.3'
2022-10-30 13:42:06 -04:00
gem 'bootsnap', require: false
2023-10-21 06:43:31 -04:00
gem 'devise', '4.9.2'
2024-01-02 07:24:00 -05:00
gem 'pg'
gem 'puma'
gem 'pundit'
2023-10-21 06:43:31 -04:00
gem 'rails', '7.1.1'
gem 'sprockets-rails'
2023-02-03 09:42:56 -05:00
gem 'strong_migrations'
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]
2024-01-02 07:24:00 -05:00
gem "importmap-rails"
group :development, :test do
2022-10-30 13:42:06 -04:00
gem 'debug', platforms: %i[mri mingw x64_mingw]
gem 'factory_bot_rails'
2024-01-02 07:24:00 -05:00
gem 'ffaker'
gem 'rspec-rails'
end
group :test do
2024-01-02 07:24:00 -05:00
gem 'shoulda-matchers'
gem 'simplecov'
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
# Use Redis for Action Cable
2024-01-02 07:24:00 -05:00
gem "redis"