class Object

Public Instance Methods

client_ready?() click to toggle source
# File lib/translation_io/tasks.rb, line 48
def client_ready?
  if TranslationIO.client
    true
  else
    TranslationIO.info("[Error] Can't configure client. Did you set up the initializer?\n"\
                       "Read usage instructions here : http://translation.io/usage")
    false
  end
end