Class: EasyType::Generators::RegularTypeGenerator

Inherits:
Base
  • Object
show all
Defined in:
lib/easy_type/generators/regular_type_generator.rb

Constant Summary collapse

PROVIDER_TEMPLATE =
"regular_type.rb.erb"
TYPE_TEMPLATE =
"regular_type_provider.rb.erb"

Constants included from Helpers

Helpers::HEADER_LINE_REGEX

Instance Method Summary collapse

Methods inherited from Base

#create_provider_directory, #create_type_directory, load

Methods included from Helpers

#camelize, #convert_csv_data_to_hash, included

Methods included from PathHelpers

#attribute_path, #create_directory, #create_source, included, #modulepath, #name_attribute_path, #provider_directory, #provider_path, #puppet_lib, #puppet_lib?, #save_file, #shared_attribute_path, #template_path, #type_attribute_directory, #type_directory, #type_path, #type_shared_directory, #write_file

Constructor Details

#initialize(type_name, options) ⇒ RegularTypeGenerator

Returns a new instance of RegularTypeGenerator.

[View source]

9
10
11
12
13
# File 'lib/easy_type/generators/regular_type_generator.rb', line 9

def initialize(type_name, options)
  super(type_name, options)
  @provider    = options.fetch(:provider) {'default_provider'}
  @description = options.fetch(:description) {'A custom type'}
end

Instance Method Details

#runObject

Run the scaffolder It created the directories and the nescessary files

[View source]

19
20
21
22
23
# File 'lib/easy_type/generators/regular_type_generator.rb', line 19

def run
  super
  create_type_source
  create_provider_source
end