Class: CFoundry::V2::App::Instance
- Inherits:
-
Object
- Object
- CFoundry::V2::App::Instance
- Defined in:
- lib/cfoundry/v2/app.rb
Instance Attribute Summary collapse
-
#app ⇒ Object
readonly
Returns the value of attribute app.
-
#id ⇒ Object
readonly
Returns the value of attribute id.
Instance Method Summary collapse
- #console ⇒ Object
- #debugger ⇒ Object
- #file(*path) ⇒ Object
- #files(*path) ⇒ Object
- #healthy? ⇒ Boolean
-
#initialize(app, id, client, manifest = {}) ⇒ Instance
constructor
A new instance of Instance.
- #inspect ⇒ Object
- #since ⇒ Object
- #state ⇒ Object (also: #status)
Constructor Details
#initialize(app, id, client, manifest = {}) ⇒ Instance
Returns a new instance of Instance.
256 257 258 259 260 261 |
# File 'lib/cfoundry/v2/app.rb', line 256 def initialize(app, id, client, manifest = {}) @app = app @id = id @client = client @manifest = manifest end |
Instance Attribute Details
#app ⇒ Object (readonly)
Returns the value of attribute app.
254 255 256 |
# File 'lib/cfoundry/v2/app.rb', line 254 def app @app end |
#id ⇒ Object (readonly)
Returns the value of attribute id.
254 255 256 |
# File 'lib/cfoundry/v2/app.rb', line 254 def id @id end |
Instance Method Details
#console ⇒ Object
284 285 286 287 288 289 290 |
# File 'lib/cfoundry/v2/app.rb', line 284 def console return unless @manifest[:console_ip] and @manifest[:console_port] { :ip => @manifest[:console_ip], :port => @manifest[:console_port] } end |
#debugger ⇒ Object
276 277 278 279 280 281 282 |
# File 'lib/cfoundry/v2/app.rb', line 276 def debugger return unless @manifest[:debug_ip] and @manifest[:debug_port] { :ip => @manifest[:debug_ip], :port => @manifest[:debug_port] } end |
#file(*path) ⇒ Object
307 308 309 |
# File 'lib/cfoundry/v2/app.rb', line 307 def file(*path) @client.base.files(@app.guid, @id, *path) end |
#files(*path) ⇒ Object
301 302 303 304 305 |
# File 'lib/cfoundry/v2/app.rb', line 301 def files(*path) @client.base.files(@app.guid, @id, *path).split("\n").collect do |entry| path + [entry.split(/\s+/, 2)[0]] end end |
#healthy? ⇒ Boolean
292 293 294 295 296 297 298 299 |
# File 'lib/cfoundry/v2/app.rb', line 292 def healthy? case state when "STARTING", "RUNNING" true when "DOWN", "FLAPPING" false end end |
#inspect ⇒ Object
263 264 265 |
# File 'lib/cfoundry/v2/app.rb', line 263 def inspect "#<App::Instance '#{@app.name}' \##@id>" end |
#since ⇒ Object
272 273 274 |
# File 'lib/cfoundry/v2/app.rb', line 272 def since Time.at(@manifest[:since]) end |
#state ⇒ Object Also known as: status
267 268 269 |
# File 'lib/cfoundry/v2/app.rb', line 267 def state @manifest[:state] end |