Sha256: 0ebb63ea392cdd5e7f096830282c24026032e6a3c5b6d6e491a8739b4bb76489

Contents?: true

Size: 1.12 KB

Versions: 1

Compression:

Stored size: 1.12 KB

Contents

# Similar to Ruby's OpenStruct but uses hash as its parent class providing
# all of the typical Hash methods. Useful for storing settings on objects.
module BBLib
  class HashStruct < Hash

    protected

    def method_missing(method, *args, &block)
      if args.empty? && ![:to_ary].include?(method)
        if method.to_s.end_with?('?')
          define_singleton_method(method) do
            self[method[0..-2].to_sym] ? true : false
          end
          send(method)
        else
          define_singleton_method(method) do
            self[method]
          end
          self[method]
        end
      elsif method.to_s.end_with?('=')
        define_singleton_method(method) do |arg|
          self[method[0..-2].to_sym] = arg
        end
        self[method[0..-2].to_sym] = args.first
      else
        super
      end
    end

    def respond_to_missing?(method, include_private = false)
      include?(method) || method.to_s =~ /\?|\=/ && include?(method.to_s[0..-2].to_sym) || super
    end
  end
end

class Hash
  def to_hash_struct
    BBLib::HashStruct.new.merge(self)
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
bblib-2.0.3 lib/bblib/core/classes/hash_struct.rb