Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
seleniumhq
GitHub Repository: seleniumhq/selenium
Path: blob/trunk/rake_tasks/crazy_fun/mappings/rake_mappings/create_task.rb
2868 views
1
module CrazyFun
2
module Mappings
3
class RakeMappings
4
class CreateTask < CrazyFun::Mappings::Tasks
5
def handle(fun, dir, args)
6
name = task_name(dir, args[:name])
7
task name => [ args[:task_name] ]
8
Rake::Task[name].out = args[:out]
9
end
10
end
11
end
12
end
13
end
14
15