[DRE-commits] [rake] 02/11: Merge tag 'upstream/10.3.2'

Caitlin Matos cm-guest at moszumanska.debian.org
Thu Aug 28 16:12:55 UTC 2014


This is an automated email from the git hooks/post-receive script.

cm-guest pushed a commit to branch master
in repository rake.

commit 2e6e0de6b5ef7d3e7b1fc79f6d2e2deb3fb9d3f2
Merge: c16725e c7837f1
Author: Caitlin Matos <caitlin.matos at zoho.com>
Date:   Wed Aug 27 17:33:15 2014 -0400

    Merge tag 'upstream/10.3.2'
    
    Upstream version 10.3.2

 .autotest                                     |   7 +
 .rubocop.yml                                  |  27 ++
 .togglerc                                     |   7 +
 CONTRIBUTING.rdoc                             |  34 +++
 CHANGES => History.rdoc                       | 187 +++++++++----
 MIT-LICENSE                                   |   2 +-
 Manifest.txt                                  | 162 +++++++++++
 README.rdoc                                   | 108 ++------
 Rakefile                                      | 377 +++-----------------------
 TODO                                          |  21 --
 checksums.yaml.gz                             | Bin 270 -> 269 bytes
 checksums.yaml.gz.sig                         |   2 +
 data.tar.gz.sig                               | Bin 0 -> 256 bytes
 doc/command_line_usage.rdoc                   |  30 +-
 doc/glossary.rdoc                             |  88 +++---
 doc/rake.1.gz                                 | Bin 1370 -> 1369 bytes
 doc/rakefile.rdoc                             | 108 +++++---
 doc/release_notes/rake-0.5.3.rdoc             |   2 +-
 doc/release_notes/rake-0.5.4.rdoc             |   2 +-
 doc/release_notes/rake-0.8.6.rdoc             |  20 +-
 doc/release_notes/rake-0.9.2.2.rdoc           |   4 +-
 doc/release_notes/rake-0.9.4.rdoc             |  50 ----
 doc/release_notes/rake-0.9.5.rdoc             |  59 ----
 doc/release_notes/rake-0.9.6.rdoc             |  63 -----
 doc/release_notes/rake-10.0.1.rdoc            | 133 +--------
 doc/release_notes/rake-10.0.2.rdoc            | 142 +---------
 doc/release_notes/rake-10.1.0.rdoc            |   4 +-
 install.rb                                    |  80 ------
 lib/rake.rb                                   |   7 +-
 lib/rake/alt_system.rb                        |   8 +-
 lib/rake/application.rb                       | 175 ++++++++----
 lib/rake/backtrace.rb                         |   5 +-
 lib/rake/clean.rb                             |  23 +-
 lib/rake/cloneable.rb                         |   6 +-
 lib/rake/{ext/module.rb => contrib/.document} |   0
 lib/rake/contrib/ftptools.rb                  |   8 +-
 lib/rake/contrib/publisher.rb                 |  16 +-
 lib/rake/contrib/rubyforgepublisher.rb        |   4 +-
 lib/rake/contrib/sshpublisher.rb              |  15 +-
 lib/rake/contrib/sys.rb                       |   2 +
 lib/rake/cpu_counter.rb                       | 109 ++++++++
 lib/rake/default_loader.rb                    |   4 +
 lib/rake/dsl_definition.rb                    |  75 +++--
 lib/rake/early_time.rb                        |   5 +-
 lib/rake/ext/core.rb                          |   7 +-
 lib/rake/ext/module.rb                        |   1 +
 lib/rake/ext/string.rb                        |  63 +++--
 lib/rake/ext/time.rb                          |   2 +-
 lib/rake/file_list.rb                         |  16 +-
 lib/rake/file_task.rb                         |   4 +-
 lib/rake/gempackagetask.rb                    |   4 +-
 lib/rake/invocation_chain.rb                  |   1 -
 lib/rake/linked_list.rb                       |   4 +-
 lib/rake/name_space.rb                        |  59 ++--
 lib/rake/packagetask.rb                       |  26 +-
 lib/rake/pathmap.rb                           |   2 +
 lib/rake/pseudo_status.rb                     |   4 +-
 lib/rake/rake_module.rb                       |  11 +-
 lib/rake/rdoctask.rb                          |   2 +
 lib/rake/ruby182_test_unit_fix.rb             |   2 +
 lib/rake/runtest.rb                           |   7 +-
 lib/rake/scope.rb                             |   2 +-
 lib/rake/task.rb                              |  23 +-
 lib/rake/task_arguments.rb                    |  29 +-
 lib/rake/task_manager.rb                      |  29 +-
 lib/rake/tasklib.rb                           |   2 +
 lib/rake/testtask.rb                          |  29 +-
 lib/rake/thread_pool.rb                       |  23 +-
 lib/rake/trace_output.rb                      |   2 +-
 lib/rake/version.rb                           |   2 -
 lib/rake/win32.rb                             |   2 +-
 metadata.gz.sig                               | Bin 0 -> 256 bytes
 metadata.yml                                  | 269 +++++++++++++-----
 rakelib/publish.rake                          |  20 ++
 rakelib/test_times.rake                       |  25 ++
 test/helper.rb                                |  13 +-
 test/support/rakefile_definitions.rb          |  34 +++
 test/test_rake_application.rb                 | 186 ++++++++++---
 test/test_rake_application_options.rb         |  17 +-
 test/test_rake_backtrace.rb                   |   6 +
 test/test_rake_clean.rb                       |  15 +-
 test/test_rake_cpu_counter.rb                 |  50 ++++
 test/test_rake_directory_task.rb              |   6 +
 test/test_rake_file_task.rb                   |  64 +++++
 test/test_rake_functional.rb                  |  18 +-
 test/test_rake_name_space.rb                  |  14 +
 test/test_rake_path_map.rb                    |   4 +-
 test/test_rake_rules.rb                       |  26 ++
 test/test_rake_task.rb                        |  16 ++
 test/test_rake_task_argument_parsing.rb       |   6 +
 test/test_rake_task_arguments.rb              |   6 +
 test/test_rake_task_manager.rb                |  20 ++
 test/test_rake_test_task.rb                   |  24 +-
 93 files changed, 1886 insertions(+), 1492 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-ruby-extras/rake.git



More information about the Pkg-ruby-extras-commits mailing list