Class: Rails::Generator::PathSource

Inherits:
Source show all
Defined in:
lib/rails_generator/lookup.rb

Overview

PathSource looks for generators in a filesystem directory.

Instance Attribute Summary collapse

Attributes inherited from Source

#label

Instance Method Summary collapse

Methods inherited from Source

#names

Constructor Details

#initialize(label, path) ⇒ PathSource

Returns a new instance of PathSource.



173
174
175
176
# File 'lib/rails_generator/lookup.rb', line 173

def initialize(label, path)
  super label
  @path = path
end

Instance Attribute Details

#pathObject (readonly)

Returns the value of attribute path.



171
172
173
# File 'lib/rails_generator/lookup.rb', line 171

def path
  @path
end

Instance Method Details

#eachObject

Yield each eligible subdirectory.



179
180
181
182
183
184
185
# File 'lib/rails_generator/lookup.rb', line 179

def each
  Dir["#{path}/[a-z]*"].each do |dir|
    if File.directory?(dir)
      yield Spec.new(File.basename(dir), dir, label)
    end
  end
end