Class Vcs::VcsCmdData
In: lib/vcs/vcs.rb
Parent: Commands::Datas::Data

Methods

output=   to_s  

Attributes

out_io  [R] 

Public Instance methods

[Source]

# File lib/vcs/vcs.rb, line 170
    def output= ( anObject )
      super
      @out_io = @output.to_io_for_commands
    end

[Source]

# File lib/vcs/vcs.rb, line 175
    def to_s
      begin
        @output.read
      rescue IOError => ex
        super
      end
    end

[Validate]