class Gisdatigo::Runner::PostProcessor

Public Instance Methods

process() click to toggle source
# File lib/gisdatigo/runner/post_processor.rb, line 4
def process
  puts "Post processing:"
  print "\tFetching outdated list..."
  remaing_outdated_list = BundlerManager.gem_name_list
  print "OK!\n"

  puts "\tThe following gems could not be updated and may require manual action:"
  remaing_outdated_list.each do |gem_name|
    puts "\t\t#{gem_name}"
  end
end