Class: EasyType::Generators::EasyAttributeGenerator
- Inherits:
-
EasyGenerator
- Object
- Base
- EasyGenerator
- EasyType::Generators::EasyAttributeGenerator
- Defined in:
- lib/easy_type/generators/easy_attribute_generator.rb
Constant Summary collapse
- ATTRIBUTE_TEMPLATE =
"easy_type_attribute.rb.erb"
- END_PARAMETER_BLOCK =
/(^.*-- end of attributes --.*$)/
- END_PARAMETER_TEXT =
" # -- end of attributes -- Leave this comment if you want to use the scaffolder "
Constants included from Helpers
Instance Method Summary collapse
-
#initialize(attribute_name, type_name, options) ⇒ EasyAttributeGenerator
constructor
A new instance of EasyAttributeGenerator.
-
#run ⇒ Object
Run the scaffolder It created the directories and the nescessary files.
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(attribute_name, type_name, options) ⇒ EasyAttributeGenerator
Returns a new instance of EasyAttributeGenerator.
12 13 14 15 16 17 18 19 |
# File 'lib/easy_type/generators/easy_attribute_generator.rb', line 12 def initialize(attribute_name, type_name, ) super(type_name, ) @attribute_name = attribute_name @attribute_type = .fetch(:attribute_type) {:parameter} @description = .fetch(:description) {'A generated attribute'} @parameter_key = .fetch(:key) {@attribute_name} @shared = .has_key?(:shared) end |
Instance Method Details
#run ⇒ Object
Run the scaffolder It created the directories and the nescessary files
25 26 27 28 29 |
# File 'lib/easy_type/generators/easy_attribute_generator.rb', line 25 def run super create_easy_attribute_source add_attribute_to_type end |