class Gpr::Commands::Select

Public Class Methods

new(thor) click to toggle source
# 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

Public Instance Methods

select() click to toggle source
# File lib/gpr/commands/select.rb, line 9
def select
  repositories = repository_list
  puts Ifilter.filtering(repositories)
end