Class: Bowline::Generators::HelperGenerator
Instance Method Summary
collapse
#class_name, #initialize, #symbol_name
Methods inherited from Generator
source_root, #with_modules
Instance Method Details
#file_name ⇒ Object
15
16
17
|
# File 'lib/bowline/generators/helper.rb', line 15
def file_name
"#{name}_helper"
end
|
#module_name ⇒ Object
11
12
13
|
# File 'lib/bowline/generators/helper.rb', line 11
def module_name
"#{self.name.camel_case}Helper"
end
|
7
8
9
|
# File 'lib/bowline/generators/helper.rb', line 7
def modules
[]
end
|