# -*- encoding : utf-8 -*- class Card; module Set; class Abstract # Set: Abstract (TestContext) # module TestContext; extend Card::Set def self.source_location; "/Users/ethan/dev/decko/gem/card/mod/email/set/abstract/test_context.rb"; end module HtmlFormat; parent.send :register_set_format, Card::Format::HtmlFormat, self; extend Card::Set::AbstractFormat view :core do return super() if voo.hide? :test_context card.with_context test_context_card do super() end end def test_context_card card.left.fetch(:test_context)&.item_card end end module EmailHtmlFormat; parent.send :register_set_format, Card::Format::EmailHtmlFormat, self; extend Card::Set::AbstractFormat view :core do voo.hide! :test_context super() end end module EmailTextFormat; parent.send :register_set_format, Card::Format::EmailTextFormat, self; extend Card::Set::AbstractFormat view :core do voo.hide! :test_context super() end end end;end;end;end; # ~~ generated from /Users/ethan/dev/decko/gem/card/mod/email/set/abstract/test_context.rb ~~