aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails_generator/base.rb
diff options
context:
space:
mode:
Diffstat (limited to 'railties/lib/rails_generator/base.rb')
-rw-r--r--railties/lib/rails_generator/base.rb7
1 files changed, 4 insertions, 3 deletions
diff --git a/railties/lib/rails_generator/base.rb b/railties/lib/rails_generator/base.rb
index eafc99728c..f7aa2169ca 100644
--- a/railties/lib/rails_generator/base.rb
+++ b/railties/lib/rails_generator/base.rb
@@ -145,7 +145,7 @@ module Rails
# See Rails::Generator::Base for a discussion of Manifests and Commands.
class NamedBase < Base
attr_reader :name, :class_name, :singular_name, :plural_name
- attr_reader :class_path, :class_nesting
+ attr_reader :class_path, :file_path, :class_nesting, :class_nesting_depth
alias_method :file_name, :singular_name
alias_method :table_name, :plural_name
alias_method :actions, :args
@@ -170,7 +170,7 @@ module Rails
private
def assign_names!(name)
@name = name
- base_name, @class_path, @class_nesting = extract_modules(@name)
+ base_name, @class_path, @file_path, @class_nesting, @class_nesting_depth = extract_modules(@name)
@class_name_without_nesting, @singular_name, @plural_name = inflect_names(base_name)
if @class_nesting.empty?
@class_name = @class_name_without_nesting
@@ -187,8 +187,9 @@ module Rails
modules = name.include?('/') ? name.split('/') : name.split('::')
name = modules.pop
path = modules.map { |m| m.underscore }
+ file_path = (path + [name.underscore]).join('/')
nesting = modules.map { |m| m.camelize }.join('::')
- [name, path, nesting]
+ [name, path, file_path, nesting, modules.size]
end
def inflect_names(name)