[DRE-commits] [nanoc] 01/04: Updated version 4.8.10 from 'upstream/4.8.10'

Cédric Boutillier boutil at moszumanska.debian.org
Tue Oct 17 20:25:53 UTC 2017


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

boutil pushed a commit to branch master
in repository nanoc.

commit 4f3e149c48cad11deef013663441f3ad67741b5f
Merge: 7717c79 028fa6e
Author: Cédric Boutillier <boutil at debian.org>
Date:   Tue Oct 17 21:44:51 2017 +0200

    Updated version 4.8.10 from 'upstream/4.8.10'
    
    with Debian dir e3094c2913c60f06e2facde4e9428838bfb9c43d

 .gitignore                                         |  10 +-
 Gemfile                                            |   3 +-
 NEWS.md                                            |   7 +
 README.md                                          |   2 +-
 lib/nanoc.rb                                       |   8 +-
 lib/nanoc/base/entities/site.rb                    |  14 +-
 lib/nanoc/base/repos/data_source.rb                |  15 --
 lib/nanoc/base/repos/outdatedness_store.rb         |  32 ++--
 lib/nanoc/base/services/compilation_context.rb     |   8 +-
 lib/nanoc/base/services/compiler.rb                | 205 ++++++++++-----------
 .../base/services/compiler/stages/build_reps.rb    |  14 +-
 .../base/services/compiler/stages/compile_reps.rb  |   6 +-
 .../compiler/stages/determine_outdatedness.rb      |  32 +++-
 .../base/services/compiler/stages/postprocess.rb   |   6 +-
 .../base/services/compiler/stages/preprocess.rb    |   3 +
 lib/nanoc/base/services/compiler_loader.rb         |   5 +-
 lib/nanoc/base/views.rb                            |  19 +-
 ...n_view.rb => basic_item_rep_collection_view.rb} |  12 +-
 .../{item_rep_view.rb => basic_item_rep_view.rb}   |  37 +---
 ...tem_without_reps_view.rb => basic_item_view.rb} |   6 +-
 .../views/compilation_item_rep_collection_view.rb  |  10 +
 lib/nanoc/base/views/compilation_item_rep_view.rb  |  42 +++++
 ...reps_view_mixin.rb => compilation_item_view.rb} |   6 +-
 .../base/views/item_collection_with_reps_view.rb   |   2 +-
 .../views/item_collection_without_reps_view.rb     |   2 +-
 lib/nanoc/base/views/item_with_reps_view.rb        |   7 -
 .../views/mixins/mutable_document_view_mixin.rb    |   2 +-
 lib/nanoc/base/views/mutable_item_view.rb          |   2 +-
 .../views/post_compile_item_rep_collection_view.rb |   2 +-
 lib/nanoc/base/views/post_compile_item_rep_view.rb |   9 +-
 lib/nanoc/base/views/post_compile_item_view.rb     |   2 +-
 ..._context.rb => view_context_for_compilation.rb} |  11 +-
 .../base/views/view_context_for_pre_compilation.rb |  18 ++
 lib/nanoc/base/views/view_context_for_shell.rb     |  23 +++
 lib/nanoc/checking/check.rb                        |   6 +-
 lib/nanoc/checking/runner.rb                       |   2 +-
 lib/nanoc/cli.rb                                   |   1 +
 lib/nanoc/cli/command_runner.rb                    |   8 +-
 lib/nanoc/cli/commands/check.rb                    |   4 +-
 lib/nanoc/cli/commands/compile.rb                  |  55 +-----
 .../cli/commands/compile_listeners/abstract.rb     |   9 +
 .../cli/commands/compile_listeners/aggregate.rb    |  49 +++++
 lib/nanoc/cli/commands/deploy.rb                   |   3 +-
 lib/nanoc/cli/commands/prune.rb                    |   9 +-
 lib/nanoc/cli/commands/shell.rb                    |  10 +-
 lib/nanoc/cli/commands/show-data.rb                |  47 ++---
 lib/nanoc/cli/commands/show-rules.rb               |  42 ++---
 lib/nanoc/cli/error_handler.rb                     |  17 --
 lib/nanoc/data_sources/filesystem.rb               |   6 +-
 lib/nanoc/deploying/deployers/fog.rb               |   5 +-
 lib/nanoc/helpers/link_to.rb                       |   2 +-
 lib/nanoc/rule_dsl/action_provider.rb              |  19 +-
 lib/nanoc/rule_dsl/action_sequence_calculator.rb   |  19 +-
 lib/nanoc/rule_dsl/recording_executor.rb           |   4 +
 lib/nanoc/rule_dsl/rule.rb                         |  23 ++-
 lib/nanoc/rule_dsl/rule_context.rb                 |   8 +-
 lib/nanoc/spec.rb                                  |  46 +++--
 lib/nanoc/version.rb                               |   2 +-
 spec/nanoc/base/checksummer_spec.rb                |  30 +--
 spec/nanoc/base/compiler_spec.rb                   |  32 ++--
 spec/nanoc/base/core_ext/pathname_spec.rb          |   0
 spec/nanoc/base/filter_spec.rb                     |  13 +-
 spec/nanoc/base/repos/outdatedness_store_spec.rb   |  35 +---
 .../services/compiler/stages/compile_reps_spec.rb  |   3 +-
 .../compiler/stages/determine_outdatedness_spec.rb | 148 +++++++++++++++
 .../services/compiler/stages/preprocess_spec.rb    | 110 +++++++++++
 spec/nanoc/base/services/executor_spec.rb          |  12 +-
 .../views/basic_item_rep_collection_view_spec.rb   |   8 +
 spec/nanoc/base/views/basic_item_rep_view_spec.rb  |   9 +
 .../compilation_item_rep_collection_view_spec.rb   |   8 +
 .../base/views/compilation_item_rep_view_spec.rb   | 136 ++++++++++++++
 spec/nanoc/base/views/config_view_spec.rb          |  10 +-
 .../views/item_collection_with_reps_view_spec.rb   |   6 +-
 .../item_collection_without_reps_view_spec.rb      |   6 +-
 spec/nanoc/base/views/item_view_spec.rb            |  24 +--
 .../base/views/layout_collection_view_spec.rb      |   4 +-
 spec/nanoc/base/views/layout_view_spec.rb          |   4 +-
 .../views/mutable_item_collection_view_spec.rb     |   7 +-
 spec/nanoc/base/views/mutable_item_view_spec.rb    |   2 +
 .../views/mutable_layout_collection_view_spec.rb   |   7 +-
 spec/nanoc/base/views/mutable_layout_view_spec.rb  |   2 +
 .../post_compile_item_rep_collection_view_spec.rb  |   2 +
 .../base/views/post_compile_item_rep_view_spec.rb  |  12 +-
 .../document_view_examples.rb}                     |  10 +-
 .../identifiable_collection_view_examples.rb}      |   8 +-
 .../item_rep_collection_view_examples.rb}          |  11 +-
 .../item_rep_view_examples.rb}                     | 121 +-----------
 .../mutable_document_view_examples.rb}             |  13 +-
 ...table_identifiable_collection_view_examples.rb} |   2 +-
 spec/nanoc/cli/commands/compile/abstract_spec.rb   |  80 ++++++++
 spec/nanoc/cli/commands/compile_spec.rb            |  81 +++-----
 spec/nanoc/cli/commands/show_data_spec.rb          |  25 +--
 spec/nanoc/cli/commands/show_rules_spec.rb         |   6 +-
 spec/nanoc/regressions/gh_767_spec.rb              |   2 +-
 spec/nanoc/regressions/gh_776_spec.rb              |   3 +-
 .../rule_dsl/action_sequence_calculator_spec.rb    |  37 ++--
 spec/nanoc/rule_dsl/rule_context_spec.rb           |  22 ++-
 test/base/test_data_source.rb                      |  18 --
 test/checking/checks/test_external_links.rb        |  10 +-
 test/checking/checks/test_internal_links.rb        |  15 +-
 test/cli/commands/test_compile.rb                  |  35 ----
 test/cli/test_cleaning_stream.rb                   |   2 +-
 test/data_sources/test_filesystem.rb               |  16 ++
 test/filters/test_kramdown.rb                      |   8 +-
 test/filters/test_sass.rb                          |   2 +-
 test/filters/test_slim.rb                          |  12 +-
 test/filters/test_xsl.rb                           |  18 +-
 test/helpers/test_blogging.rb                      |  10 +-
 test/helpers/test_capturing.rb                     |  14 +-
 test/helpers/test_link_to.rb                       |   8 +-
 test/helpers/test_xml_sitemap.rb                   |  38 ++--
 111 files changed, 1356 insertions(+), 879 deletions(-)

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



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