Sha256: 3e5305212318575e3856145881cb9762710d975ffa0d25a00be13b469e2faf4e
Contents?: true
Size: 615 Bytes
Versions: 9
Compression:
Stored size: 615 Bytes
Contents
require 'specjour' namespace :specjour do task :dispatch, [:project_path] do |task, args| args.with_defaults :project_path => Rake.original_dir Specjour::Dispatcher.new(args.project_path).start end namespace :cucumber do task :dispatch, [:project_path] do |task, args| args.with_defaults :project_path => Rake.original_dir Specjour::Cucumber::Dispatcher.new(args.project_path).start end end desc "Dispatch the project to listening managers" task :cucumber => "cucumber:dispatch" end desc "Dispatch the project to listening managers" task :specjour => "specjour:dispatch"
Version data entries
9 entries across 9 versions & 3 rubygems