Class: Bowndler::Commands::RecursiveBowerConfigure

Inherits:
Object
  • Object
show all
Defined in:
lib/bowndler/commands/recursive_bower_configure.rb

Defined Under Namespace

Classes: Gem

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(template_path) ⇒ RecursiveBowerConfigure

Returns a new instance of RecursiveBowerConfigure.



22
23
24
# File 'lib/bowndler/commands/recursive_bower_configure.rb', line 22

def initialize(template_path)
  @template_path = template_path
end

Instance Attribute Details

#template_pathObject (readonly)

Returns the value of attribute template_path.



20
21
22
# File 'lib/bowndler/commands/recursive_bower_configure.rb', line 20

def template_path
  @template_path
end

Instance Method Details

#callObject



26
27
28
29
30
# File 'lib/bowndler/commands/recursive_bower_configure.rb', line 26

def call
  all_bowndler_manifests.each do |path|
    Commands::BowerConfigure.new(path).call
  end
end