Method: CF::App::Create#create_services
- Defined in:
- lib/cf/cli/app/push/create.rb
#create_services(app) ⇒ Object
71 72 73 74 75 76 77 78 |
# File 'lib/cf/cli/app/push/create.rb', line 71 def create_services(app) return unless input[:create_services] finalize while true invoke :create_service, { :app => app }, :plan => :interact break unless ask("Create another service?", :default => false) end end |