class Takelage::BitScope

takelage bit scope

Public Instance Methods

add(scope) click to toggle source
# File lib/takelage/bit/scope/cli.rb, line 27
def add(scope)
  exit bit_scope_add scope
end
list() click to toggle source
# File lib/takelage/bit/scope/cli.rb, line 55
def list
  scopes = bit_scope_list
  exit false if scopes == false
  say scopes unless scopes.to_s.chomp.empty?
  true
end
new(scope) click to toggle source
# File lib/takelage/bit/scope/cli.rb, line 42
def new(scope)
  exit bit_scope_new scope
end
ssh() click to toggle source
# File lib/takelage/bit/scope/cli.rb, line 70
def ssh
  exit bit_scope_ssh
end