class PuppetGenerator::Models::EntryConverter

model for entry converter filter

Public Class Methods

new( name , converter ) click to toggle source

create new instance of filter model

Calls superclass method
# File lib/puppet_generator/models/entry_converter.rb, line 17
def initialize( name , converter )
  super(name)

  @converter = converter
end

Private Class Methods

check_method() click to toggle source
# File lib/puppet_generator/models/entry_converter.rb, line 27
def check_method
  :convert
end
path() click to toggle source
# File lib/puppet_generator/models/entry_converter.rb, line 31
def path
  __FILE__
end