Module: Attrs

Defined in:
lib/attrs.rb,
lib/attrs/version.rb

Constant Summary collapse

VERSION =
File.read(File.expand_path('../../../VERSION', __FILE__)).chomp

Class Method Summary collapse

Class Method Details

.new(*attribute_names, &block) ⇒ Object



8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# File 'lib/attrs.rb', line 8

def self.new(*attribute_names, &block)
  Class.new do
    const_set(:ATTRIBUTE_NAMES, attribute_names)

    def self.attribute_names
      self::ATTRIBUTE_NAMES
    end

    def self.attr(name)
      attr_accessor name
      private :"#{name}="
    end

    attribute_names.each { |name| attr name }

    def initialize(attributes)
      self.class.attribute_names.each do |name|
        send("#{name}=", attributes.fetch(name) {
          if respond_to?("default_#{name}", true)
            send "default_#{name}"
          else
            raise KeyError, "key not found: #{name.inspect}. Define :default_#{name} for a default value"
          end
        })
      end
    end

    def inspect
      "#<#{self.class.name} #{attributes.inspect}>"
    end

    def ==(other)
      to_hash == other.to_hash
    end

    def attributes
      self.class.attribute_names.each_with_object({}) do |name, hash|
        hash[name] = send(name)
      end
    end

    alias_method :to_hash, :attributes

    class_eval(&block) if block_given?
  end
end