budget/Gemfile
Andrew Tomaka 36361caf11
All checks were successful
continuous-integration/drone/push Build is passing
Update Ruby to 3.2.2 (#5)
Reviewed-on: #5
2023-07-10 23:14:19 -04:00

33 lines
621 B
Ruby

source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
# unti 7.1 is out
gem "rails", git: "https://github.com/rails/rails"
gem "sprockets-rails"
gem "sqlite3"
gem "puma"
gem "importmap-rails"
gem "turbo-rails"
gem "stimulus-rails"
gem "jbuilder"
gem "bootsnap", require: false
# gem "image_processing", "~> 1.2"
group :development, :test do
gem "debug", platforms: %i[mri mingw x64_mingw]
end
group :development do
gem "standard"
gem "web-console"
end
group :test do
gem "capybara"
gem "selenium-webdriver"
gem "webdrivers"
end
gem "tailwindcss-rails", "~> 2.0"