Skip to content

Commit 4d8906b

Browse files
committed
Add base64 and logger to CI gemfile
These are implicit dependencies of some other template libraries. This avoids warnings on the respective ruby versions
1 parent 8d22375 commit 4d8906b

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

.ci.gemfile

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,15 @@ gem 'slim'
1616
gem 'typescript-node'
1717
gem 'pandoc-ruby'
1818

19-
if RUBY_VERSION > '3.3'
19+
if RUBY_VERSION >= '3.3'
2020
gem 'csv'
21+
22+
# liquid dependency
23+
gem 'base64'
24+
end
25+
if RUBY_VERSION >= '3.4'
26+
# asciidoc dependency
27+
gem 'logger'
2128
end
2229

2330
if RUBY_VERSION < '2.6'

0 commit comments

Comments
 (0)