Files
fizzy/Gemfile
T
Jose Farias a74dd7a081 Merge branch 'main' into house
* main:
  Adjust position of settings buttons
  Actually, no need for a max-size, just let it grow
  Improve comment form design
  Same style as combobox pop-ups
  Ensure bubbles are clickable anyplace in windshield
  Deal with truncation in the list layout, too
  Ensure tags don't affect the bubble shape or spill out of the container
  Style pop-up UI for selecting assignments and tags
  Adjust position now that bubbles won't be so vertical
  Fix that bubbles could collapse in some situations
  dep: bump rexml to address dependabot alert
  dep: bump rails to edge
2024-12-09 10:39:09 -06:00

40 lines
773 B
Ruby

source "https://rubygems.org"
ruby file: ".ruby-version"
gem "rails", github: "rails/rails", branch: "main"
# Assets & front end
gem "importmap-rails"
gem "propshaft"
gem "stimulus-rails"
gem "turbo-rails"
gem "hotwire_combobox", github: "josefarias/hotwire_combobox", branch: :main
# Deployment and drivers
gem "bootsnap", require: false
gem "puma", ">= 5.0"
gem "sqlite3", ">= 2.0"
gem "thruster", require: false
# Features
gem "bcrypt", "~> 3.1.7"
gem "rqrcode"
gem "redcarpet", "~> 3.6"
gem "rouge", "~> 4.5"
gem "jbuilder"
# Telemetry
gem "sentry-ruby"
gem "sentry-rails"
group :development, :test do
gem "debug"
gem "brakeman", require: false
gem "rubocop-rails-omakase", require: false
end
group :test do
gem "capybara"
gem "selenium-webdriver"
end