Class: Repository
Instance Attribute Summary collapse
-
#plugins ⇒ Object
readonly
Returns the value of attribute plugins.
-
#uri ⇒ Object
readonly
Returns the value of attribute uri.
Instance Method Summary collapse
- #each(&block) ⇒ Object
-
#initialize(uri) ⇒ Repository
constructor
A new instance of Repository.
Constructor Details
#initialize(uri) ⇒ Repository
Returns a new instance of Repository.
366 367 368 369 |
# File 'lib/commands/plugin.rb', line 366 def initialize(uri) @uri = uri.chomp('/') << "/" @plugins = nil end |
Instance Attribute Details
#plugins ⇒ Object (readonly)
Returns the value of attribute plugins.
364 365 366 |
# File 'lib/commands/plugin.rb', line 364 def plugins @plugins end |
#uri ⇒ Object (readonly)
Returns the value of attribute uri.
364 365 366 |
# File 'lib/commands/plugin.rb', line 364 def uri @uri end |
Instance Method Details
#each(&block) ⇒ Object
385 386 387 |
# File 'lib/commands/plugin.rb', line 385 def each(&block) plugins.each(&block) end |