[DRE-commits] [nanoc] 02/07: Updated version 4.7.13 from 'upstream/4.7.13'

Cédric Boutillier boutil at moszumanska.debian.org
Thu Jul 6 21:11:18 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 fb3ef25dd0a84ba92d7be38d0a68b17204738683
Merge: 6663229 72b6050
Author: Cédric Boutillier <boutil at debian.org>
Date:   Sun Jul 2 11:44:42 2017 +0200

    Updated version 4.7.13 from 'upstream/4.7.13'
    
    with Debian dir 383d418ffb4cd4e40c67374cb3a033c831a6bf22

 .github/CONTRIBUTING.md                            |  17 +
 .github/ISSUE_TEMPLATE.md                          |  23 ++
 .github/PULL_REQUEST_TEMPLATE.md                   |  18 +
 .gitignore                                         |   8 +
 .rspec                                             |   3 +
 .rubocop.yml                                       | 174 +++++++++
 .travis.yml                                        |  27 ++
 CODE_OF_CONDUCT.md                                 |  46 +++
 Gemfile                                            |   7 +-
 Gemfile.lock                                       | 433 ---------------------
 NEWS.md                                            |  27 ++
 README.md                                          |   1 +
 Rakefile                                           |   7 +-
 lib/nanoc/base/core_ext.rb                         |   1 -
 lib/nanoc/base/core_ext/pathname.rb                |  10 -
 lib/nanoc/base/entities.rb                         |   5 +-
 lib/nanoc/base/entities/configuration.rb           |   6 +
 lib/nanoc/base/entities/dependency.rb              |   9 +-
 lib/nanoc/base/entities/directed_graph.rb          |  12 +
 lib/nanoc/base/entities/identifiable_collection.rb |  17 +-
 lib/nanoc/base/entities/item_collection.rb         |  14 +
 lib/nanoc/base/entities/layout.rb                  |   2 +-
 lib/nanoc/base/entities/layout_collection.rb       |  14 +
 lib/nanoc/base/entities/outdatedness_reasons.rb    |  24 +-
 lib/nanoc/base/entities/props.rb                   |  43 +-
 lib/nanoc/base/repos/aggregate_data_source.rb      |   4 +-
 lib/nanoc/base/repos/checksum_store.rb             |   5 +-
 lib/nanoc/base/repos/dependency_store.rb           | 118 ++++--
 .../compiler/stages/calculate_checksums.rb         |   7 +-
 lib/nanoc/base/services/compiler_loader.rb         |   2 +-
 lib/nanoc/base/services/dependency_tracker.rb      |   5 +-
 lib/nanoc/base/services/outdatedness_checker.rb    |  59 ++-
 lib/nanoc/base/services/outdatedness_rules.rb      |   3 +-
 .../outdatedness_rules/attributes_modified.rb      |   4 +-
 .../outdatedness_rules/configuration_modified.rb   |  24 --
 .../outdatedness_rules/item_collection_extended.rb |  16 +
 .../layout_collection_extended.rb                  |  16 +
 lib/nanoc/base/services/pruner.rb                  |  14 +-
 lib/nanoc/base/views/config_view.rb                |   4 +
 .../base/views/identifiable_collection_view.rb     |  24 ++
 lib/nanoc/checking/checks/external_links.rb        |   9 +-
 lib/nanoc/cli.rb                                   |   2 -
 lib/nanoc/cli/commands/shell.rb                    |   5 +-
 lib/nanoc/cli/commands/show-data.rb                |  32 +-
 lib/nanoc/deploying/deployers/fog.rb               |  13 +-
 lib/nanoc/filters/colorize_syntax/colorizers.rb    |   5 +-
 lib/nanoc/spec.rb                                  |   4 +-
 lib/nanoc/telemetry/table.rb                       |   2 +-
 lib/nanoc/version.rb                               |   2 +-
 nanoc.gemspec                                      |   8 +-
 scripts/release                                    |  95 +++++
 spec/nanoc/base/checksummer_spec.rb                |   8 +-
 spec/nanoc/base/compiler_spec.rb                   |   6 +-
 {test => spec/nanoc}/base/core_ext/array_spec.rb   |  19 +-
 {test => spec/nanoc}/base/core_ext/hash_spec.rb    |  21 +-
 .../nanoc}/base/core_ext/pathname_spec.rb          |   0
 spec/nanoc/base/core_ext/string_spec.rb            |  23 ++
 spec/nanoc/base/directed_graph_spec.rb             | 333 ++++++++++++++++
 .../base/entities/identifiable_collection_spec.rb  | 173 +++++---
 spec/nanoc/base/entities/item_spec.rb              |   8 +
 spec/nanoc/base/entities/layout_spec.rb            |   8 +
 spec/nanoc/base/entities/props_spec.rb             | 122 +++++-
 spec/nanoc/base/entities/site_spec.rb              |   4 +-
 spec/nanoc/base/repos/dependency_store_spec.rb     | 235 ++++++++---
 .../compiler/stages/calculate_checksums_spec.rb    |   7 +-
 .../services/compiler/stages/compile_reps_spec.rb  |   6 +-
 .../nanoc/base/services/dependency_tracker_spec.rb |   7 +-
 .../base/services/outdatedness_checker_spec.rb     | 336 +++++++++++++++-
 .../nanoc/base/services/outdatedness_rules_spec.rb |  33 +-
 spec/nanoc/base/services/pruner_spec.rb            |   9 +
 spec/nanoc/base/views/config_view_spec.rb          |  30 +-
 spec/nanoc/base/views/document_view_spec.rb        |   7 +-
 .../views/identifiable_collection_view_spec.rb     |  81 +++-
 .../views/item_collection_with_reps_view_spec.rb   |   3 +-
 .../item_collection_without_reps_view_spec.rb      |   3 +-
 spec/nanoc/base/views/item_rep_view_spec.rb        |   7 +-
 spec/nanoc/base/views/item_view_spec.rb            |  11 +-
 .../base/views/layout_collection_view_spec.rb      |   3 +-
 .../mutable_identifiable_collection_view_spec.rb   |   2 +-
 .../views/mutable_item_collection_view_spec.rb     |   5 +-
 .../views/mutable_layout_collection_view_spec.rb   |   5 +-
 .../base/views/post_compile_item_rep_view_spec.rb  |   2 +-
 spec/nanoc/cli/commands/shell_spec.rb              |  31 +-
 spec/nanoc/cli/commands/show_data_spec.rb          |  38 +-
 spec/nanoc/cli/commands/show_rules_spec.rb         |   4 +-
 spec/nanoc/deploying/fog_spec.rb                   |   4 +
 spec/nanoc/filters/less_spec.rb                    |   2 +-
 spec/nanoc/helpers/rendering_spec.rb               |   5 +
 .../integration/outdatedness_integration_spec.rb   |  59 ++-
 spec/nanoc/regressions/gh_1185_spec.rb             |  22 ++
 .../rule_dsl/action_sequence_calculator_spec.rb    |   4 +-
 spec/nanoc/rule_dsl/rule_context_spec.rb           |  10 +-
 spec/nanoc/telemetry/table_spec.rb                 |  22 ++
 spec/spec_helper.rb                                |  50 ++-
 test/base/core_ext/string_spec.rb                  |  25 --
 test/base/test_dependency_tracker.rb               |  72 ++--
 test/base/test_item.rb                             |  40 --
 test/base/test_item_array.rb                       |  39 +-
 test/base/test_layout.rb                           |  16 -
 test/checking/checks/test_external_links.rb        |  14 -
 test/extra/core_ext/test_pathname.rb               |  14 -
 test/filters/test_coffeescript.rb                  |   2 -
 test/filters/test_handlebars.rb                    |   4 -
 test/filters/test_uglify_js.rb                     |   4 -
 test/filters/test_xsl.rb                           |   6 +-
 test/fixtures/vcr_cassettes/html_run_error.yml     |  29 +-
 test/fixtures/vcr_cassettes/html_run_ok.yml        |  29 +-
 test/helper.rb                                     |   6 -
 test/helpers/test_blogging.rb                      |  92 +++--
 test/helpers/test_xml_sitemap.rb                   |  40 +-
 110 files changed, 2538 insertions(+), 1092 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