Sha256: e60f00d529f797621ca35d7637809ccd5d22a7109f9bacbf72e65254de2005d9
Contents?: true
Size: 475 Bytes
Versions: 16
Compression:
Stored size: 475 Bytes
Contents
require 'awestruct/astruct_mixin' module Awestruct class AStruct < Hash include AStructMixin if defined?(RUBY_ENGINE) && RUBY_ENGINE == 'jruby' undef org, com, java, javax, javafx # Issue #480 end def initialize(hash=nil) hash.each{|k,v| self[k]=v } if hash end alias_method :original_entries, :entries undef entries def inspect "AStruct{...}" end def hash() self.output_path.hash end end end
Version data entries
16 entries across 16 versions & 1 rubygems