class Rsummary::CLI

Public Instance Methods

history() click to toggle source
# File lib/rsummary/cli.rb, line 17
def history 
  Command.new(options['limit'].to_i).send(__method__.to_sym)
end
remove() click to toggle source
# File lib/rsummary/cli.rb, line 27
def remove
  Command.new.send(__method__.to_sym)
end
status() click to toggle source
# File lib/rsummary/cli.rb, line 22
def status
  Command.new.send(__method__.to_sym)
end
version() click to toggle source
# File lib/rsummary/cli.rb, line 11
def version
  p Rsummary::VERSION
end