Class: LintReport::App

Inherits:
Object
  • Object
show all
Includes:
Singleton
Defined in:
lib/lint_report/app.rb

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.runObject



16
17
18
# File 'lib/lint_report/app.rb', line 16

def self.run
  self.instance.run
end

Instance Method Details

#runObject



20
21
22
23
24
25
26
27
28
29
# File 'lib/lint_report/app.rb', line 20

def run
  verify_options
  start_workers
  download_new_gems
  while download_queue.size > 0
    sleep 0.5
  end
  remove_old_gems
  analyse_gems
end