class DTK::Client::Remotes

Public Class Methods

valid_children() click to toggle source
# File lib/commands/thor/remotes.rb, line 21
def self.valid_children()
  []
end

Public Instance Methods

add_remote(context_params) click to toggle source
# File lib/commands/thor/remotes.rb, line 38
def add_remote(context_params)
  raise "NOT IMPLEMENTED"
end
list_remotes(context_params) click to toggle source
# File lib/commands/thor/remotes.rb, line 33
def list_remotes(context_params)
  raise "NOT IMPLEMENTED"
end
push_remote(context_params) click to toggle source
# File lib/commands/thor/remotes.rb, line 28
def push_remote(context_params)
  raise "NOT IMPLEMENTED"
end
remove_remote(context_params) click to toggle source
# File lib/commands/thor/remotes.rb, line 44
def remove_remote(context_params)
  raise "NOT IMPLEMENTED"
end