Class: ResourceGenerator
- Inherits:
-
Rails::Generator::NamedBase
- Object
- Rails::Generator::Base
- Rails::Generator::NamedBase
- ResourceGenerator
- Defined in:
- lib/rails_generator/generators/components/resource/resource_generator.rb
Instance Attribute Summary collapse
-
#controller_class_name ⇒ Object
readonly
Returns the value of attribute controller_class_name.
-
#controller_class_nesting ⇒ Object
readonly
Returns the value of attribute controller_class_nesting.
-
#controller_class_nesting_depth ⇒ Object
readonly
Returns the value of attribute controller_class_nesting_depth.
-
#controller_class_path ⇒ Object
readonly
Returns the value of attribute controller_class_path.
-
#controller_file_path ⇒ Object
readonly
Returns the value of attribute controller_file_path.
-
#controller_name ⇒ Object
readonly
Returns the value of attribute controller_name.
-
#controller_plural_name ⇒ Object
(also: #controller_table_name)
readonly
Returns the value of attribute controller_plural_name.
-
#controller_singular_name ⇒ Object
(also: #controller_file_name)
readonly
Returns the value of attribute controller_singular_name.
Attributes inherited from Rails::Generator::NamedBase
#class_name, #class_nesting, #class_nesting_depth, #class_path, #file_path, #name, #plural_name, #singular_name, #table_name
Attributes inherited from Rails::Generator::Base
#args, #destination_root, #source_root
Instance Method Summary collapse
-
#initialize(runtime_args, runtime_options = {}) ⇒ ResourceGenerator
constructor
A new instance of ResourceGenerator.
- #manifest ⇒ Object
Methods inherited from Rails::Generator::Base
#destination_path, #source_path
Constructor Details
#initialize(runtime_args, runtime_options = {}) ⇒ ResourceGenerator
Returns a new instance of ResourceGenerator.
13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
# File 'lib/rails_generator/generators/components/resource/resource_generator.rb', line 13 def initialize(runtime_args, = {}) super @controller_name = @name.pluralize base_name, @controller_class_path, @controller_file_path, @controller_class_nesting, @controller_class_nesting_depth = extract_modules(@controller_name) @controller_class_name_without_nesting, @controller_singular_name, @controller_plural_name = inflect_names(base_name) if @controller_class_nesting.empty? @controller_class_name = @controller_class_name_without_nesting else @controller_class_name = "#{@controller_class_nesting}::#{@controller_class_name_without_nesting}" end end |
Instance Attribute Details
#controller_class_name ⇒ Object (readonly)
Returns the value of attribute controller_class_name.
2 3 4 |
# File 'lib/rails_generator/generators/components/resource/resource_generator.rb', line 2 def controller_class_name @controller_class_name end |
#controller_class_nesting ⇒ Object (readonly)
Returns the value of attribute controller_class_nesting.
2 3 4 |
# File 'lib/rails_generator/generators/components/resource/resource_generator.rb', line 2 def controller_class_nesting @controller_class_nesting end |
#controller_class_nesting_depth ⇒ Object (readonly)
Returns the value of attribute controller_class_nesting_depth.
2 3 4 |
# File 'lib/rails_generator/generators/components/resource/resource_generator.rb', line 2 def controller_class_nesting_depth @controller_class_nesting_depth end |
#controller_class_path ⇒ Object (readonly)
Returns the value of attribute controller_class_path.
2 3 4 |
# File 'lib/rails_generator/generators/components/resource/resource_generator.rb', line 2 def controller_class_path @controller_class_path end |
#controller_file_path ⇒ Object (readonly)
Returns the value of attribute controller_file_path.
2 3 4 |
# File 'lib/rails_generator/generators/components/resource/resource_generator.rb', line 2 def controller_file_path @controller_file_path end |
#controller_name ⇒ Object (readonly)
Returns the value of attribute controller_name.
2 3 4 |
# File 'lib/rails_generator/generators/components/resource/resource_generator.rb', line 2 def controller_name @controller_name end |
#controller_plural_name ⇒ Object (readonly) Also known as: controller_table_name
Returns the value of attribute controller_plural_name.
2 3 4 |
# File 'lib/rails_generator/generators/components/resource/resource_generator.rb', line 2 def controller_plural_name @controller_plural_name end |
#controller_singular_name ⇒ Object (readonly) Also known as: controller_file_name
Returns the value of attribute controller_singular_name.
2 3 4 |
# File 'lib/rails_generator/generators/components/resource/resource_generator.rb', line 2 def controller_singular_name @controller_singular_name end |
Instance Method Details
#manifest ⇒ Object
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 |
# File 'lib/rails_generator/generators/components/resource/resource_generator.rb', line 28 def manifest record do |m| # Check for class naming collisions. m.class_collisions(controller_class_path, "#{controller_class_name}Controller", "#{controller_class_name}Helper") m.class_collisions(class_path, "#{class_name}") # Controller, helper, views, and test directories. m.directory(File.join('app/models', class_path)) m.directory(File.join('app/controllers', controller_class_path)) m.directory(File.join('app/helpers', controller_class_path)) m.directory(File.join('app/views', controller_class_path, controller_file_name)) m.directory(File.join('test/functional', controller_class_path)) m.directory(File.join('test/unit', class_path)) m.template('model.rb', File.join('app/models', class_path, "#{file_name}.rb")) m.template( 'controller.rb', File.join('app/controllers', controller_class_path, "#{controller_file_name}_controller.rb") ) m.template('functional_test.rb', File.join('test/functional', controller_class_path, "#{controller_file_name}_controller_test.rb")) m.template('helper.rb', File.join('app/helpers', controller_class_path, "#{controller_file_name}_helper.rb")) m.template('unit_test.rb', File.join('test/unit', class_path, "#{file_name}_test.rb")) m.template('fixtures.yml', File.join('test/fixtures', "#{table_name}.yml")) unless [:skip_migration] m.migration_template( 'migration.rb', 'db/migrate', :assigns => { :migration_name => "Create#{class_name.pluralize.gsub(/::/, '')}", :attributes => attributes }, :migration_file_name => "create_#{file_path.gsub(/\//, '_').pluralize}" ) end m.route_resources controller_file_name end end |