Sha256: e971ed405ff06971ac825bf021799d0fed5a9eaa05320fac793f2870af5c6c25
Contents?: true
Size: 1.77 KB
Versions: 3
Compression:
Stored size: 1.77 KB
Contents
module PictureTag # The rest of the application doesn't care where the instruction logic # resides. The following module 'routes' method calls to the right place, so # the rest of the application can just call 'PictureTag.(some method)' # At first I thought I'd do some sweet dynamic metaprogramming here, but it # ended up complicated and clever, rather than convenient and understandable. # This way is not strictly DRY, but it's straightforward and readable. If it # gets big, I'll refactor. module Router attr_accessor :instructions, :context # Context forwarding # Global site data def site @context.registers[:site] end # Page which tag is called from def page @context.registers[:page] end # Instructions forwarding def config @instructions.config end def preset @instructions.preset end def media_presets @instructions.media_presets end def html_attributes @instructions.html_attributes end def output_class @instructions.output_class end def source_images @instructions.source_images end # Config Forwarding def source_dir config.source_dir end def dest_dir config.dest_dir end def continue_on_missing? config.continue_on_missing? end def cdn? config.cdn? end def pconfig config.pconfig end # Preset forwarding def widths(media) preset.widths(media) end def formats preset.formats end def fallback_format preset.fallback_format end def fallback_width preset.fallback_width end def nomarkdown? preset.nomarkdown? end def quality(format) preset.quality(format) end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
jekyll_picture_tag-1.8.0 | lib/jekyll_picture_tag/router.rb |
jekyll_picture_tag-1.7.1 | lib/jekyll_picture_tag/router.rb |
jekyll_picture_tag-1.7.0 | lib/jekyll_picture_tag/router.rb |