class Opsmgr::Settings::Microbosh::PropertyList
Public Class Methods
new(property_hashes)
click to toggle source
# File lib/opsmgr/settings/microbosh/property_list.rb, line 7 def initialize(property_hashes) @property_hashes = property_hashes end
Public Instance Methods
find() { |property| ... }
click to toggle source
# File lib/opsmgr/settings/microbosh/property_list.rb, line 11 def find @property_hashes.find do |property_hash| yield Property.new(property_hash) end end