class Jekyll::Assets::Hook::Point
–
Attributes
block[RW]
priority[RW]
Public Class Methods
new(priority, &block)
click to toggle source
– A hook point only holds data for later, it really serves no other purpose for now, other than to make live easier for handling hooks and their sorting, later in stream. –
# File lib/jekyll/assets/hook.rb, line 24 def initialize(priority, &block) @priority, @block = priority, block end