summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-02-27 11:55:47 +0000
committerhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-02-27 11:55:47 +0000
commitb89e894399016def7979168d16eff9026012a710 (patch)
tree6a418b787d0222f68ce4a203bb49aeff90f03149 /lib
parentca6b174078fa15f33655be704d9409fdbc4f9929 (diff)
* lib/rake: Update to rake (9237e74), typo fix and remove needless
private syntax. * test/rake: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@49773 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r--lib/rake/dsl_definition.rb2
-rw-r--r--lib/rake/task_manager.rb3
-rw-r--r--lib/rake/testtask.rb2
3 files changed, 2 insertions, 5 deletions
diff --git a/lib/rake/dsl_definition.rb b/lib/rake/dsl_definition.rb
index 26f4ca828c..4c57c1eb9f 100644
--- a/lib/rake/dsl_definition.rb
+++ b/lib/rake/dsl_definition.rb
@@ -7,7 +7,7 @@ module Rake
# DSL is a module that provides #task, #desc, #namespace, etc. Use this
# when you'd like to use rake outside the top level scope.
#
- # For a Rakefile you run from the comamnd line this module is automatically
+ # For a Rakefile you run from the command line this module is automatically
# included.
module DSL
diff --git a/lib/rake/task_manager.rb b/lib/rake/task_manager.rb
index cbb9f5ee2f..d9b4d85e75 100644
--- a/lib/rake/task_manager.rb
+++ b/lib/rake/task_manager.rb
@@ -291,9 +291,6 @@ module Rake
result.flatten
end
-
- private
-
# Return the current description, clearing it in the process.
def get_description(task)
desc = @last_description
diff --git a/lib/rake/testtask.rb b/lib/rake/testtask.rb
index 2daa589634..02fbe5e92b 100644
--- a/lib/rake/testtask.rb
+++ b/lib/rake/testtask.rb
@@ -62,7 +62,7 @@ module Rake
#
attr_accessor :loader
- # Array of commandline options to pass to ruby when running test loader.
+ # Array of command line options to pass to ruby when running test loader.
attr_accessor :ruby_opts
# Description of the test task. (default is 'Run tests')