Sha256: 2b23b97b40996cb361636289ebe445f422b5819f92c5b2a28fa9ed5d7e49ec1b

Contents?: true

Size: 1 KB

Versions: 1

Compression:

Stored size: 1 KB

Contents

# encoding: utf-8
module TokiCLI
  class Status
    def self.get_all
      "Toki_CLI is crawling your Toki App.net channel to get your data.\nIt could take a while, please be patient.\n\n"
    end
    def self.canceled
      "\n\nCanceled.\n\n"
    end
    def self.error(e)
      "\n\nStopped. Error: \n#{e}\n\n"
    end
    def self.no_channel
      "\n\nCan't find your Toki App.net channel, sorry.\n\n"
    end
    def self.paste_token
      "\nPlease paste your App.net token:\n\n"
    end
    def self.no_token
      "\nOops, I didn't get the token. Please try again.\n"
    end
    def self.done
      "\nDone.\n"
    end
    def self.specify_name
      "\nPlease specify the name of the app (or part of it).\n\n"
    end
    def self.specify_day
      "\nPlease specify the date with this format: 2014-04-19\n\n"
    end
    def self.specify_range
      "\nPlease specify the range with this format: 2014-04-17 2014-04-19\n\n"
    end
    def self.run_auth
      "\nPlease run `toki auth` first.\n\n"
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
TokiCLI-0.0.3 lib/TokiCLI/status.rb