Module: Schema::Controls::Attribute::Value
- Defined in:
- lib/schema/controls/attribute.rb
Class Method Summary collapse
- .alternate ⇒ Object
- .random ⇒ Object
- .some_attribute ⇒ Object
- .some_other_attribute ⇒ Object
- .yet_another_attribute ⇒ Object
Class Method Details
permalink .alternate ⇒ Object
[View source]
39 40 41 |
# File 'lib/schema/controls/attribute.rb', line 39 def self.alternate 'some alternate value' end |
permalink .random ⇒ Object
[View source]
43 44 45 |
# File 'lib/schema/controls/attribute.rb', line 43 def self.random Controls::Random.example end |
permalink .some_attribute ⇒ Object
[View source]
27 28 29 |
# File 'lib/schema/controls/attribute.rb', line 27 def self.some_attribute 'some value' end |
permalink .some_other_attribute ⇒ Object
[View source]
31 32 33 |
# File 'lib/schema/controls/attribute.rb', line 31 def self.some_other_attribute 'some other value' end |
permalink .yet_another_attribute ⇒ Object
[View source]
35 36 37 |
# File 'lib/schema/controls/attribute.rb', line 35 def self.yet_another_attribute 'yet another value' end |