aboutsummaryrefslogtreecommitdiffstats
path: root/lib/rake.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rake.rb')
-rw-r--r--lib/rake.rb7
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/rake.rb b/lib/rake.rb
index 531cfc82b8..47cce17064 100644
--- a/lib/rake.rb
+++ b/lib/rake.rb
@@ -1,5 +1,4 @@
#--
-
# Copyright 2003-2010 by Jim Weirich (jim.weirich@gmail.com)
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -21,9 +20,14 @@
# IN THE SOFTWARE.
#++
+module Rake
+ VERSION = '10.3.2'
+end
+
require 'rake/version'
# :stopdoc:
+# TODO: Remove in Rake 11
RAKEVERSION = Rake::VERSION
# :startdoc:
@@ -41,6 +45,7 @@ require 'rake/ext/time'
require 'rake/win32'
require 'rake/linked_list'
+require 'rake/cpu_counter'
require 'rake/scope'
require 'rake/task_argument_error'
require 'rake/rule_recursion_overflow_error'