dawarich/Gemfile

48 lines
870 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
gem 'devise'
2024-01-02 07:24:00 -05:00
gem 'pg'
gem 'puma'
gem 'pundit'
gem 'rails'
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]
gem 'importmap-rails'
gem 'chartkick'
2024-03-15 18:27:31 -04:00
gem 'geocoder'
gem 'sidekiq'
gem 'sidekiq-cron'
2024-03-15 18:27:31 -04:00
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'
2024-03-15 18:27:31 -04:00
gem 'dotenv-rails'
2024-03-23 08:36:09 -04:00
gem 'pry-byebug'
gem 'pry-rails'
end
group :test do
2024-01-02 07:24:00 -05:00
gem 'shoulda-matchers'
gem 'simplecov'
2024-04-04 11:43:35 -04:00
gem 'super_diff'
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
gem 'redis'