Class: Vcs::VcsCmdData

Inherits:
Commands::Datas::Data
  • Object
show all
Defined in:
lib/vcs/vcs.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#out_ioObject (readonly)

Returns the value of attribute out_io.



33
34
35
# File 'lib/vcs/vcs.rb', line 33

def out_io
  @out_io
end

Instance Method Details

#output=(anObject) ⇒ Object



39
40
41
42
# File 'lib/vcs/vcs.rb', line 39

def output= ( anObject )
  super
  @out_io = @output.to_io_for_commands
end

#puts(*a, &b) ⇒ Object



35
36
37
# File 'lib/vcs/vcs.rb', line 35

def puts ( *a, &b )
  @out_io.puts(*a, &b)
end