Method: CFoundry::V1::App#file

Defined in:
lib/cfoundry/v1/app.rb

#file(*path) ⇒ Object

Retrieve file contents for the first instance of the application.

path

A sequence of strings representing path segments.

For example, files("foo", "bar") for foo/bar.



259
260
261
# File 'lib/cfoundry/v1/app.rb', line 259

def file(*path)
  Instance.new(self, "0", @client).file(*path)
end