[DRE-commits] [rake] 01/05: Update upstream source from tag 'upstream/12.3.0'

Antonio Terceiro terceiro at moszumanska.debian.org
Thu Dec 7 11:04:43 UTC 2017


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

terceiro pushed a commit to branch master
in repository rake.

commit 87b6a5dd5c4641472749872c007e6b326ecf3cc4
Merge: bb6eb16 1e70bd1
Author: Antonio Terceiro <terceiro at debian.org>
Date:   Thu Dec 7 08:47:54 2017 -0200

    Update upstream source from tag 'upstream/12.3.0'
    
    Update to upstream version '12.3.0'
    with Debian dir d72e972a212bd4ebf3752ac285b3c46ae3fe00af

 .rubocop.yml                                       |  28 ++--
 .travis.yml                                        |  16 +--
 History.rdoc                                       |  72 ++++++++--
 appveyor.yml                                       |   3 +-
 doc/jamis.rb                                       |   1 +
 doc/rakefile.rdoc                                  |   2 +-
 lib/rake.rb                                        |   1 +
 lib/rake/application.rb                            |  63 +++++++--
 lib/rake/backtrace.rb                              |   1 +
 lib/rake/clean.rb                                  |   1 +
 lib/rake/cloneable.rb                              |   1 +
 lib/rake/cpu_counter.rb                            |   1 +
 lib/rake/default_loader.rb                         |   1 +
 lib/rake/dsl_definition.rb                         |   1 +
 lib/rake/early_time.rb                             |   1 +
 lib/rake/ext/core.rb                               |   1 +
 lib/rake/ext/string.rb                             |   3 +-
 lib/rake/file_creation_task.rb                     |   1 +
 lib/rake/file_list.rb                              |   5 +-
 lib/rake/file_task.rb                              |  10 +-
 lib/rake/file_utils.rb                             |   3 +-
 lib/rake/file_utils_ext.rb                         |   1 +
 lib/rake/invocation_chain.rb                       |   1 +
 lib/rake/invocation_exception_mixin.rb             |   1 +
 lib/rake/late_time.rb                              |   1 +
 lib/rake/linked_list.rb                            |   1 +
 lib/rake/loaders/makefile.rb                       |   1 +
 lib/rake/multi_task.rb                             |   1 +
 lib/rake/name_space.rb                             |   1 +
 lib/rake/packagetask.rb                            |   1 +
 lib/rake/phony.rb                                  |   1 +
 lib/rake/private_reader.rb                         |   1 +
 lib/rake/promise.rb                                |   1 +
 lib/rake/pseudo_status.rb                          |   1 +
 lib/rake/rake_module.rb                            |  29 ++++
 lib/rake/rake_test_loader.rb                       |  27 ++--
 lib/rake/rule_recursion_overflow_error.rb          |   1 +
 lib/rake/scope.rb                                  |   1 +
 lib/rake/task.rb                                   |   3 +-
 lib/rake/task_argument_error.rb                    |   1 +
 lib/rake/task_arguments.rb                         |   1 +
 lib/rake/task_manager.rb                           |  30 ++++-
 lib/rake/tasklib.rb                                |   1 +
 lib/rake/testtask.rb                               |   2 +
 lib/rake/thread_history_display.rb                 |   1 +
 lib/rake/thread_pool.rb                            |   1 +
 lib/rake/trace_output.rb                           |   1 +
 lib/rake/version.rb                                |   3 +-
 lib/rake/win32.rb                                  |   1 +
 rake.gemspec                                       |  10 +-
 test/helper.rb                                     |  10 +-
 test/support/file_creation.rb                      |   1 +
 test/support/rakefile_definitions.rb               |  19 +++
 test/support/ruby_runner.rb                        |   1 +
 test/test_private_reader.rb                        |   1 +
 test/test_rake.rb                                  |   1 +
 test/test_rake_application.rb                      | 147 +++++++++------------
 test/test_rake_application_options.rb              |  38 +++---
 test/test_rake_backtrace.rb                        |   1 +
 test/test_rake_clean.rb                            |   1 +
 test/test_rake_cpu_counter.rb                      |   1 +
 test/test_rake_definitions.rb                      |   1 +
 test/test_rake_directory_task.rb                   |   1 +
 test/test_rake_dsl.rb                              |   1 +
 test/test_rake_early_time.rb                       |   1 +
 test/test_rake_extension.rb                        |   1 +
 test/test_rake_file_creation_task.rb               |   1 +
 test/test_rake_file_list.rb                        |   5 +-
 test/test_rake_file_list_path_map.rb               |   1 +
 test/test_rake_file_task.rb                        |   1 +
 test/test_rake_file_utils.rb                       |  10 ++
 test/test_rake_functional.rb                       |  21 +++
 test/test_rake_invocation_chain.rb                 |   1 +
 test/test_rake_late_time.rb                        |   1 +
 test/test_rake_linked_list.rb                      |   1 +
 test/test_rake_makefile_loader.rb                  |   1 +
 test/test_rake_multi_task.rb                       |   1 +
 test/test_rake_name_space.rb                       |   1 +
 test/test_rake_package_task.rb                     |   1 +
 test/test_rake_path_map.rb                         |   1 +
 test/test_rake_path_map_explode.rb                 |   1 +
 test/test_rake_path_map_partial.rb                 |   3 +-
 test/test_rake_pseudo_status.rb                    |   1 +
 test/test_rake_rake_test_loader.rb                 |  29 +++-
 test/test_rake_reduce_compat.rb                    |   1 +
 test/test_rake_require.rb                          |   1 +
 test/test_rake_rules.rb                            |  24 ++++
 test/test_rake_scope.rb                            |   1 +
 test/test_rake_task.rb                             |  24 +++-
 test/test_rake_task_argument_parsing.rb            |   7 +-
 test/test_rake_task_arguments.rb                   |   1 +
 test/test_rake_task_manager.rb                     |   1 +
 test/test_rake_task_manager_argument_resolution.rb |   1 +
 test/test_rake_task_with_arguments.rb              |   1 +
 test/test_rake_test_task.rb                        |   1 +
 test/test_rake_thread_pool.rb                      |   1 +
 test/test_rake_top_level_functions.rb              |   1 +
 test/test_rake_win32.rb                            |   7 +-
 test/test_thread_history_display.rb                |   1 +
 test/test_trace_output.rb                          |   3 +-
 100 files changed, 526 insertions(+), 199 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