Method: Henshin::Plugin#initialize

Defined in:
lib/henshin/plugin.rb

#initialize(site) ⇒ Plugin

Create a new instance of Plugin

Parameters:

  • site (Site)

    that the plugin belongs to



27
28
29
30
31
32
# File 'lib/henshin/plugin.rb', line 27

def initialize(site)
  @extensions = {:input => [],
                 :output => ''}
  @config = {}
  @priority = 3
end