Class: Generators::Avo::ActionGenerator
- Inherits:
-
NamedBaseGenerator
- Object
- Rails::Generators::NamedBase
- NamedBaseGenerator
- Generators::Avo::ActionGenerator
- Defined in:
- lib/generators/avo/action_generator.rb
Instance Method Summary collapse
Methods inherited from NamedBaseGenerator
Constructor Details
This class inherits a constructor from Generators::Avo::NamedBaseGenerator
Instance Method Details
#create_resource_file ⇒ Object
12 13 14 15 16 17 18 19 20 21 22 |
# File 'lib/generators/avo/action_generator.rb', line 12 def create_resource_file type = "resource" type = "standalone" if [:standalone] if type == "standalone" template "standalone_action.tt", "app/avo/actions/#{singular_name}.rb" else template "action.tt", "app/avo/actions/#{singular_name}.rb" end end |