Class: Schema::AttributeRegistry

Inherits:
Object
  • Object
show all
Defined in:
lib/schema/schema.rb

Instance Method Summary collapse

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

Returns:



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

#entriesObject



87
88
89
# File 'lib/schema/schema.rb', line 87

def entries
  @entries ||= []
end

#lengthObject 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