Class: Pathname

Inherits:
Object show all
Defined in:
lib/uttk/streams.rb,
lib/uttk/streams/Diff.rb,
lib/uttk/loaders/Loader.rb

Instance Method Summary collapse

Instance Method Details

#compare_stream(stream) ⇒ Object



45
46
47
# File 'lib/uttk/streams.rb', line 45

def compare_stream ( stream )
  read.compare_stream(stream)
end

#testify(symtbl, &block) ⇒ Object



75
76
77
78
79
80
# 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

#to_diff_for_uttk_log(my) ⇒ Object



49
50
51
# File 'lib/uttk/streams/Diff.rb', line 49

def to_diff_for_uttk_log ( my )
  open.to_diff_for_uttk_log(my)
end

#to_s_for_uttk_logObject



48
49
50
# File 'lib/uttk/streams.rb', line 48

def to_s_for_uttk_log
  read
end