Skip to content

Commit

Permalink
Move some require statements around, update some comments
Browse files Browse the repository at this point in the history
  • Loading branch information
luke-hill authored and barancev committed Oct 30, 2019
1 parent e94359b commit 973a069
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
12 changes: 8 additions & 4 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -25,18 +25,22 @@ require 'rake_tasks/crazy_fun/mappings/rake_mappings'
require 'rake_tasks/crazy_fun/mappings/ruby_mappings'
require 'rake_tasks/crazy_fun/mappings/tasks'

# Location of all new methods
# Location of all new (non-CrazyFun) methods
require 'rake_tasks/selenium_rake/browsers'
require 'rake_tasks/selenium_rake/checks'
require 'rake_tasks/selenium_rake/cpp_formatter'
require 'rake_tasks/selenium_rake/ie_generator'
require 'rake_tasks/selenium_rake/java_formatter'
require 'rake_tasks/selenium_rake/cpp_formatter'
require 'rake_tasks/selenium_rake/type_definitions_generator'

# Our modifications to the Rake library
# Our modifications to the Rake / Bazel libraries
require 'rake/task'
require 'rake_tasks/rake/task'
require 'rake_tasks/rake/dsl'
require 'rake_tasks/bazel/task'

# These are the final items mixed into the global NS, should be namespaced correctly
# These are the final items mixed into the global NS
# These need moving into correct namespaces, and not be globally included
require 'rake_tasks/bazel'
require 'rake_tasks/copyright'
require 'rake_tasks/python'
Expand Down
3 changes: 0 additions & 3 deletions rake_tasks/bazel.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
require 'pp'
require 'open3'
require 'rake/task'
require 'rake_tasks/selenium_rake/checks'
require 'rake_tasks/bazel/task'

module Bazel
def self.execute(kind, args, target, &block)
Expand Down
1 change: 0 additions & 1 deletion rake_tasks/python.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
require 'rake_tasks/selenium_rake/browsers'

def py_exe
if ENV.key?('python')
Expand Down

0 comments on commit 973a069

Please sign in to comment.