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.
28 lines
518 B
28 lines
518 B
source "https://rubygems.org" |
|
git_source(:github) { |repo| "https://github.com/#{repo}.git" } |
|
|
|
ruby "3.1.2" |
|
|
|
gem "bootsnap", require: false |
|
gem "clearance" |
|
gem "dotenv-rails" |
|
gem "importmap-rails" |
|
gem "paper_trail" |
|
gem "pg", "~> 1.1" |
|
gem "propshaft" |
|
gem "puma", "~> 5.0" |
|
gem "pundit" |
|
gem "rails", "~> 7.0.3" |
|
gem "ransack" |
|
gem "nokogiri" |
|
gem "rubyzip" |
|
gem "combine_pdf" |
|
|
|
group :development, :test do |
|
gem "debug", platforms: %i[ mri mingw x64_mingw ] |
|
gem "timecop" |
|
end |
|
|
|
group :development do |
|
gem "web-console" |
|
end
|
|
|