Method: Furnish::Provisioner::API.furnish_properties
- Defined in:
- lib/furnish/provisioners/api.rb
.furnish_properties ⇒ Object
The set of furnish properties for this class. Returns a hash which is keyed with symbols representing the property name, and the value itself is a hash which contains two additional key/value combinations, ‘:type` and `:description`, e.g.:
{
:my_property => {
:description => "some description",
:type => Object
}
}
See API.furnish_property for more information.
89 90 91 |
# File 'lib/furnish/provisioners/api.rb', line 89 def self.furnish_properties @furnish_properties ||= { } end |