Class Pathname
In: lib/uttk/streams.rb
lib/uttk/streams/Diff.rb
lib/uttk/loaders/Loader.rb
Parent: Object

Methods

Public Instance methods

[Source]

# File lib/uttk/streams.rb, line 45
  def compare_stream ( stream )
    read.compare_stream(stream)
  end

[Source]

# File lib/uttk/loaders/Loader.rb, line 75
  def testify ( symtbl, &block )
    symtbl[:pwd] = self.expand_path.dirname
    symtbl[:basename] = self.basename
    symtbl[:realname] = self
    open { |f| f.testify(symtbl, &block) }
  end

[Source]

# File lib/uttk/streams/Diff.rb, line 49
  def to_diff_for_uttk_log ( my )
    open.to_diff_for_uttk_log(my)
  end

[Source]

# File lib/uttk/streams.rb, line 48
  def to_s_for_uttk_log
    read
  end

[Validate]