class GoodData::Bricks::HelloWorldBrick

Simple brick used for testing and debug purposes

Public Instance Methods

call(params) click to toggle source

HelloWorld brick entry-point

@param [Hash] params Parameters @option [String] ‘message’ text to be returned in result, if nill - nothing is returned :reek: UtilityFunction

# File lib/gooddata/bricks/hello_world_brick.rb, line 16
def call(params)
  GoodData::LCM2.perform('hello', params)
end
version() click to toggle source
# File lib/gooddata/bricks/hello_world_brick.rb, line 7
def version
  '0.0.1'
end