Method: Shared::Configuration#content

Defined in:
lib/vas/shared/configuration.rb

#content {|chunk| ... } ⇒ void

This method returns an undefined value.

Retrieves the configuration’s content from the server and passes it to the block

Yields:

  • (chunk)

    a chunk of the configuration’s content



59
60
61
# File 'lib/vas/shared/configuration.rb', line 59

def content(&block)
  client.get_stream(@content_location, &block)
end