Class: Gpr::Commands::Select
Constant Summary
Constants included from Gpr
Instance Method Summary collapse
-
#initialize(thor) ⇒ Select
constructor
A new instance of Select.
Methods inherited from Base
Constructor Details
#initialize(thor) ⇒ Select
Returns a new instance of Select.
6 7 8 9 10 11 12 13 14 |
# File 'lib/gpr/commands/select.rb', line 6 def initialize(thor) thor.class_eval do desc 'select', 'Select a repository using the interactive interface' def select repositories = repository_list puts Ifilter.filtering(repositories) end end end |