Files
trmnl-liquid/Gemfile
T
Brooke Kuhlmann 5e92185703 Updated Gemfile to include quality, development, test, and tool groups
Necessary to leverage professional tooling for high quality, good engineering experience, and quick debugging. These gems will be wired up in future commits but this sets the foundation.

Milestone: minor
2026-01-29 08:46:03 -07:00

35 lines
644 B
Ruby

# frozen_string_literal: true
ruby file: ".ruby-version"
source "https://rubygems.org"
gemspec
gem "actionview", "~> 8.0"
gem "i18n", "~> 1.14"
gem "rails-i18n", "~> 8.0"
gem "trmnl-i18n", github: "usetrmnl/trmnl-i18n", branch: "main"
group :quality do
gem "caliber", "~> 0.88"
gem "git-lint", "~> 10.0"
gem "reek", "~> 6.5", require: false
gem "simplecov", "~> 0.22", require: false
end
group :development do
gem "rake", "~> 13.3"
end
group :test do
gem "refinements", "~> 14.2"
gem "rspec", "~> 3.13"
end
group :tools do
gem "amazing_print", "~> 2.0"
gem "debug", "~> 1.11"
gem "repl_type_completor", "~> 0.1"
end