Class: Gf::Command

Inherits:
Thor
  • Object
show all
Defined in:
lib/gf.rb

Instance Method Summary collapse

Instance Method Details

#show_files(*files) ⇒ Object



151
152
153
154
155
156
157
158
# File 'lib/gf.rb', line 151

def show_files(*files)
  NetrcFile.new.validate!

  repo = Repositry.new(options[:repo])
  repo.collect_pull_requested_files.each do |_, pull|
    puts pull.report
  end
end