Sha256: b4c4ddff398bf08c3bd2d274390ac6b6beec96db650fb0cbe42a09a5ab092383
Contents?: true
Size: 1.13 KB
Versions: 1
Compression:
Stored size: 1.13 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.no_db "\nOops, I can't find the Toki database. Please install Toki.app by http://app.net/keita.\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.4 | lib/TokiCLI/status.rb |