Module: Deas::ErbTags
- Defined in:
- lib/deas-erbtags.rb,
lib/deas-erbtags/tag.rb,
lib/deas-erbtags/utils.rb,
lib/deas-erbtags/capture.rb,
lib/deas-erbtags/link_to.rb,
lib/deas-erbtags/mail_to.rb,
lib/deas-erbtags/version.rb,
lib/deas-erbtags/image_tag.rb
Defined Under Namespace
Modules: Capture, ImageTag, LinkTo, MailTo, Tag, Utils
Constant Summary collapse
- U =
alias for brevity
Utils- VERSION =
"0.4.0"
Class Method Summary collapse
-
.included(receiver) ⇒ Object
this implements the “include them all” behavior.
Class Method Details
.included(receiver) ⇒ Object
this implements the “include them all” behavior
15 16 17 18 19 |
# File 'lib/deas-erbtags.rb', line 15 def self.included(receiver) receiver.class_eval do include Tag, Capture, LinkTo, MailTo, ImageTag end end |