Class: Schema::AttributeRegistry
- Inherits:
-
Object
- Object
- Schema::AttributeRegistry
- Defined in:
- lib/schema/schema.rb
Instance Method Summary collapse
- #[](index) ⇒ Object
- #add(name, type, strict = nil) ⇒ Object
- #attribute(name) ⇒ Object
- #attribute?(name) ⇒ Boolean
- #each(&action) ⇒ Object
- #each_with_object(obj, &action) ⇒ Object
- #entries ⇒ Object
- #length ⇒ Object (also: #count)
- #map(&action) ⇒ Object
- #register(name, type, strict = nil) ⇒ Object
- #remove(name) ⇒ Object
Instance Method Details
#[](index) ⇒ Object
96 97 98 |
# File 'lib/schema/schema.rb', line 96 def [](index) entries[index] end |
#add(name, type, strict = nil) ⇒ Object
112 113 114 115 116 117 |
# File 'lib/schema/schema.rb', line 112 def add(name, type, strict=nil) strict ||= false attribute = Schema::Attribute.new(name, type, strict) entries << attribute attribute end |
#attribute(name) ⇒ Object
128 129 130 |
# File 'lib/schema/schema.rb', line 128 def attribute(name) entries.find { |entry| entry.name == name } end |
#attribute?(name) ⇒ Boolean
132 133 134 |
# File 'lib/schema/schema.rb', line 132 def attribute?(name) !attribute(name).nil? end |
#each(&action) ⇒ Object
104 105 106 |
# File 'lib/schema/schema.rb', line 104 def each(&action) entries.each(&action) end |
#each_with_object(obj, &action) ⇒ Object
108 109 110 |
# File 'lib/schema/schema.rb', line 108 def each_with_object(obj, &action) entries.each_with_object(obj, &action) end |
#entries ⇒ Object
87 88 89 |
# File 'lib/schema/schema.rb', line 87 def entries @entries ||= [] end |
#length ⇒ Object Also known as: count
91 92 93 |
# File 'lib/schema/schema.rb', line 91 def length entries.length end |
#map(&action) ⇒ Object
100 101 102 |
# File 'lib/schema/schema.rb', line 100 def map(&action) entries.map(&action) end |
#register(name, type, strict = nil) ⇒ Object
119 120 121 122 |
# File 'lib/schema/schema.rb', line 119 def register(name, type, strict=nil) remove(name) add(name, type, strict) end |
#remove(name) ⇒ Object
124 125 126 |
# File 'lib/schema/schema.rb', line 124 def remove(name) entries.delete_if { |entry| entry.name == name } end |