Class: Rails::Generator::PathSource
- Defined in:
- lib/rails_generator/lookup.rb
Overview
PathSource looks for generators in a filesystem directory.
Instance Attribute Summary collapse
-
#path ⇒ Object
readonly
Returns the value of attribute path.
Attributes inherited from Source
Instance Method Summary collapse
-
#each ⇒ Object
Yield each eligible subdirectory.
-
#initialize(label, path) ⇒ PathSource
constructor
A new instance of PathSource.
Methods inherited from Source
Constructor Details
#initialize(label, path) ⇒ PathSource
Returns a new instance of PathSource.
185 186 187 188 |
# File 'lib/rails_generator/lookup.rb', line 185 def initialize(label, path) super label @path = path end |
Instance Attribute Details
#path ⇒ Object (readonly)
Returns the value of attribute path.
183 184 185 |
# File 'lib/rails_generator/lookup.rb', line 183 def path @path end |