Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
SeleniumHQ
GitHub Repository: SeleniumHQ/Selenium
Path: blob/trunk/rake_tasks/rake/dsl.rb
1989 views
1
module Rake
2
module DSL
3
def bazel(*args, &block)
4
Bazel::Task.define_task(*args, &block)
5
end
6
end
7
end
8
9