-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
17 lines (14 loc) · 841 Bytes
/
Copy pathGemfile
File metadata and controls
17 lines (14 loc) · 841 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
source "https://rubygems.org"
# foundation/inky's Ruby binding is not published to RubyGems; it's pulled
# in via a local path source pointing at ../inky/bindings/ruby, mirroring
# the PHP suite's symlinked Composer path repository (see SUITE.md
# "Runtime requirements" §1 and this repo's own Task-1 note in
# port-ruby-report.md). This repo must be checked out as a sibling of
# `inky/` for the path to resolve.
gem "inky-email", path: "../inky/bindings/ruby"
# Template engine for example 10 (twig-cms). Twig has no Ruby port; Liquid
# is the pragmatic Jinja-family substitute available in the Ruby ecosystem
# — see examples/10-twig-cms/emails/newsletter.inky.liquid's header comment
# for the full substitution rationale and syntax differences from Twig.
gem "liquid", "~> 5.5"
# gem "mail" # uncomment for sending (see send.rb)