mirror of
https://github.com/usetrmnl/trmnl-liquid.git
synced 2026-08-13 23:18:19 -07:00
link:https://github.com/simplecov-ruby/simplecov[Details]. We have to capture the `ArgumentError` when SimpleCov exits because Liquid violates the _Liskov Substitution Principle_ due to expecting an object to be passed into the `#inspect` method which breaks the expectation of `Object` (superclass). _This only happens in CI, not locally._ Created an link:https://github.com/Shopify/liquid/issues/2107[issue] to track this. Until the Liquid issue is resolved, this does mean that _no_ SimpleCov artifact will be generated in CI. Milestone: minor
35 lines
643 B
Ruby
35 lines
643 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", "~> 11.0"
|
|
gem "reek", "~> 6.5", require: false
|
|
gem "simplecov", "~> 1.0", 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
|