class Circler::CLI

Public Instance Methods

browse() click to toggle source
# File lib/circler/cli.rb, line 58
def browse
  BrowseCommand.run(options)
end
build() click to toggle source
# File lib/circler/cli.rb, line 51
def build
  BuildCommand.run(options)
end
builds() click to toggle source
# File lib/circler/cli.rb, line 44
def builds
  BuildsCommand.run(options)
end
cancel() click to toggle source
# File lib/circler/cli.rb, line 72
def cancel
  CancelCommand.run(options)
end
projects() click to toggle source
# File lib/circler/cli.rb, line 36
def projects
  ProjectsCommand.run(options)
end
retry() click to toggle source
# File lib/circler/cli.rb, line 65
def retry
  RetryCommand.run(options)
end
version() click to toggle source
# File lib/circler/cli.rb, line 84
def version
  say Circler::VERSION
end
watch() click to toggle source
# File lib/circler/cli.rb, line 79
def watch
  WatchCommand.run(options)
end