Top Level Namespace

Includes:
Rake::DSL

Defined Under Namespace

Modules: RakeGatling Classes: GatlingConfiguration, GatlingWrapper

Instance Method Summary collapse

Instance Method Details

#gatling(*args, &block) ⇒ Object



6
7
8
9
10
# File 'lib/GatlingRake.rb', line 6

def gatling(*args, &block)
	gatling_wrapper = GatlingWrapper.new(&block)
	task = Proc.new { gatling_wrapper.run }
	Rake::Task.define_task(*args, &task)
end