Method: CFoundry::V1::App#env=
- Defined in:
- lib/cfoundry/v1/app.rb
#env=(hash) ⇒ Object
208 209 210 211 212 213 214 |
# File 'lib/cfoundry/v1/app.rb', line 208 def env=(hash) unless hash.is_a?(Array) hash = hash.collect { |k, v| "#{k}=#{v}" } end self.env_array = hash end |