saucy/Gemfile

25 lines
453 B
Ruby
Raw Normal View History

source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby "3.1.2"
2022-06-20 19:49:14 +00:00
gem "bootsnap", require: false
2022-06-25 22:45:47 +00:00
gem "clearance"
gem "dotenv-rails"
2022-06-20 19:49:14 +00:00
gem "importmap-rails"
gem "pg", "~> 1.1"
2022-06-20 19:49:14 +00:00
gem "propshaft"
gem "puma", "~> 5.0"
2022-06-20 19:50:04 +00:00
gem "pundit"
2022-06-25 22:45:47 +00:00
gem "rails", "~> 7.0.3"
2022-06-25 12:48:46 +00:00
gem "ransack"
group :development, :test do
gem "debug", platforms: %i[ mri mingw x64_mingw ]
2022-06-25 12:48:46 +00:00
gem "timecop"
end
group :development do
gem "web-console"
end