class Playa::Application

Public Class Methods

start(args = []) click to toggle source
# File lib/playa/application.rb, line 76
def self.start(args = [])
  Controller.new(args)

  Vedeu::Launcher.new(args).execute!
rescue Errno::EMFILE
  puts "Playa does not support this number of files."
  puts "Please see https://github.com/gavinlaking/playa/issues/11"
end