mirror of
https://github.com/we-promise/sure.git
synced 2026-04-17 02:54:10 +00:00
* Add Lucide gem (#364) * feat: add cursor pointer in the log-in and create account pages, also make full with (it's cutted right now) the fileds in the settings edit page * feat: skip system test with an explanation instead of comment them * fix typo in the skip * feat: add lucide gem * Add reusable modal (#362) * Remove unused form * Add reusable modal * Prelim styling * Add instructions --------- Co-authored-by: Josh Pigford <josh@joshpigford.com> * Add keyboard navigation to new account selector (#375) * New account menu (#372) * New account menu * Styling tweaks --------- Signed-off-by: Josh Pigford <josh@joshpigford.com> * Entry method links (#376) * Initial add account form (#378) * Initial add account form * Unused --------- Signed-off-by: Josh Pigford <josh@joshpigford.com> Co-authored-by: Pedro López Mareque <Pedro.lopez.mareque@gmail.com> Co-authored-by: Rob Zolkos <rob@zolkos.com> Co-authored-by: Josh Brown <josh@joossh.com>
52 lines
928 B
Ruby
52 lines
928 B
Ruby
source "https://rubygems.org"
|
|
|
|
ruby "3.3.0"
|
|
|
|
# Rails
|
|
gem "rails", github: "rails/rails", branch: "main"
|
|
|
|
# Drivers
|
|
gem "pg", "~> 1.1"
|
|
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"
|
|
|
|
# Other
|
|
gem "bcrypt", "~> 3.1.7"
|
|
gem "inline_svg"
|
|
gem "jbuilder"
|
|
gem "tzinfo-data", platforms: %i[ windows jruby ]
|
|
gem "money-rails", "~> 1.12"
|
|
|
|
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
|