Method: Splicer.create_zone
- Defined in:
- lib/splicer.rb
.create_zone(zone) ⇒ void
This method returns an undefined value.
56 57 58 59 60 61 |
# File 'lib/splicer.rb', line 56 def self.create_zone(zone) return false if zone_is_invalid(zone) providers.map do |provider| provider.create_zone(zone) end end |