mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-24 15:49:39 +02:00
Bumps [pg](https://github.com/ged/ruby-pg) from 1.5.4 to 1.5.5. - [Changelog](https://github.com/ged/ruby-pg/blob/master/History.md) - [Commits](https://github.com/ged/ruby-pg/compare/v1.5.4...v1.5.5) --- updated-dependencies: - dependency-name: pg dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
54 lines
947 B
Ruby
54 lines
947 B
Ruby
source "https://rubygems.org"
|
|
|
|
ruby "3.3.0"
|
|
|
|
# Rails
|
|
gem "rails", github: "rails/rails", branch: "main"
|
|
|
|
# Drivers
|
|
gem "pg", "~> 1.5"
|
|
gem "redis", ">= 4.0.1"
|
|
|
|
# Deployment
|
|
gem "puma", ">= 5.0"
|
|
gem "bootsnap", require: false
|
|
|
|
# Assets
|
|
gem "importmap-rails"
|
|
gem "propshaft"
|
|
gem "tailwindcss-rails"
|
|
gem "lucide-rails", github: "maybe-finance/lucide-rails"
|
|
|
|
# Hotwire
|
|
gem "stimulus-rails"
|
|
gem "turbo-rails"
|
|
|
|
# Background Jobs
|
|
gem "good_job"
|
|
|
|
# Other
|
|
gem "bcrypt", "~> 3.1.7"
|
|
gem "inline_svg"
|
|
gem "jbuilder"
|
|
gem "tzinfo-data", platforms: %i[ windows jruby ]
|
|
gem "faraday"
|
|
|
|
group :development, :test do
|
|
gem "debug", platforms: %i[ mri windows ]
|
|
gem "brakeman", require: false
|
|
gem "rubocop-rails-omakase", require: false
|
|
gem "dotenv-rails"
|
|
gem "letter_opener"
|
|
gem "i18n-tasks"
|
|
end
|
|
|
|
group :development do
|
|
gem "web-console"
|
|
gem "hotwire-livereload"
|
|
gem "ruby-lsp-rails"
|
|
end
|
|
|
|
group :test do
|
|
gem "capybara"
|
|
gem "selenium-webdriver"
|
|
end
|