Class: Scatter::Commands::Remote::List

Inherits:
SubCommand
  • Object
show all
Defined in:
lib/scatter/commands/remote/list.rb

Instance Method Summary collapse

Methods inherited from SubCommand

#initialize

Constructor Details

This class inherits a constructor from Scatter::SubCommand

Instance Method Details

#execute!Object



5
6
7
8
9
# File 'lib/scatter/commands/remote/list.rb', line 5

def execute!
  Scatter::Config.remotes.each do |remote|
    @out.puts remote.name
  end
end