class Awestruct::AStruct

Public Class Methods

new(hash=nil) click to toggle source
# File lib/awestruct/astruct.rb, line 13
def initialize(hash=nil)
  hash.each{|k,v| self[k]=v } if hash
end

Public Instance Methods

hash() click to toggle source
# File lib/awestruct/astruct.rb, line 24
def hash()
  self.output_path.hash
end
inspect() click to toggle source
# File lib/awestruct/astruct.rb, line 20
def inspect
  "AStruct{...}"
end