Class: Kumade::PackagerList
- Inherits:
-
Object
- Object
- Kumade::PackagerList
- Includes:
- Enumerable
- Defined in:
- lib/kumade/packager_list.rb
Constant Summary collapse
- PACKAGERS =
[JammitPackager]
Instance Method Summary collapse
- #each(&block) ⇒ Object
-
#initialize ⇒ PackagerList
constructor
A new instance of PackagerList.
Constructor Details
#initialize ⇒ PackagerList
Returns a new instance of PackagerList.
7 8 9 |
# File 'lib/kumade/packager_list.rb', line 7 def initialize @packagers = build_packagers_list end |
Instance Method Details
#each(&block) ⇒ Object
11 12 13 |
# File 'lib/kumade/packager_list.rb', line 11 def each(&block) @packagers.each(&block) end |