Sha256: 273f4e1e13113d3c3ce5c2d862dca3beee3124055dc27b4c5dca653d2dc565bc
Contents?: true
Size: 1.74 KB
Versions: 10
Compression:
Stored size: 1.74 KB
Contents
# = hashbuilder.rb # # == Copyright (c) 2006 Thomas Sawyer # # Ruby License # # This module is free software. You may use, modify, and/or redistribute this # software under the same terms as Ruby. # # This program is distributed in the hope that it will be useful, but WITHOUT # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS # FOR A PARTICULAR PURPOSE. # # == Author(s) # # * Thomas Sawyer # Author:: Thomas Sawyer # Copyright:: Copyright (c) 2006 Thomas Sawyer # License:: Ruby License # = Hash Builder # # Build a hash programmatically. # # Build a hash from missing method calls. class HashBuilder # Privatize a few Kernel methods that are most likely to clash, # but arn't essential here. TODO Maybe more in this context? private :class, :clone, :display, :type, :method, :to_a, :to_s #private *instace_methods def self.build( blockstr=nil, &block ) self.new.build( blockstr, &block ).to_h end def initialize( blockstr=nil, &block ) @hash = {} @flag = {} end def build( blockstr=nil, &block ) raise "both string and block given" if blockstr and block_given? if blockstr instance_eval blockstr else instance_eval &block end self # or to_h ? end def to_h ; @hash ; end def method_missing( sym, *args, &block ) sym = sym.to_s.downcase.chomp('=') if @hash.key?(sym) unless @flag[sym] @hash[sym] = [ @hash[sym] ] @flag[sym] = true end if block_given? @hash[sym] << self.__class__.new( &block ).to_h else @hash[sym] << args[0] end else if block_given? @hash[sym] = self.__class__.new( &block ).to_h else @hash[sym] = args[0] end end end end
Version data entries
10 entries across 10 versions & 1 rubygems