[DRE-commits] [nanoc] branch experimental updated (cc45e3c -> 89a54ac)

Cédric Boutillier boutil at moszumanska.debian.org
Thu Jul 6 21:11:17 UTC 2017


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

boutil pushed a change to branch experimental
in repository nanoc.

      from  cc45e3c   timezone to UTC in d/rules and prepare changelog
      adds  702b000   New upstream version 4.7.10
       new  318f516   Merge tag 'upstream/4.7.10' into experimental
       new  504ad24   prepare changelog and target experimental
       new  89a54ac   refresh patches

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 Appraisals                                         |   2 +
 Gemfile                                            |   2 +
 Gemfile.lock                                       |  53 ++-
 Guardfile                                          |   2 +
 NEWS.md                                            |  11 +
 README.md                                          |   2 +-
 Rakefile                                           |   2 +
 bin/nanoc                                          |   2 +
 debian/changelog                                   |   6 +
 debian/patches/encoding.patch                      |  14 +-
 debian/patches/filter_out_nil_gemspec.patch        |   4 +-
 debian/patches/no_simplecov.patch                  |   9 +-
 debian/patches/no_vcr.patch                        |  12 +-
 debian/patches/no_w3c_validators.patch             |   4 +-
 debian/patches/skip_tests_autopkgtest.patch        |  12 +-
 lib/nanoc.rb                                       |   4 +-
 lib/nanoc/base.rb                                  |   2 +
 lib/nanoc/base/contracts_support.rb                |   2 +
 lib/nanoc/base/core_ext.rb                         |   2 +
 lib/nanoc/base/core_ext/array.rb                   |   2 +
 lib/nanoc/base/core_ext/hash.rb                    |   2 +
 lib/nanoc/base/core_ext/pathname.rb                |   2 +
 lib/nanoc/base/core_ext/string.rb                  |   2 +
 lib/nanoc/base/entities.rb                         |   2 +
 lib/nanoc/base/entities/action_sequence.rb         |   2 +
 lib/nanoc/base/entities/checksum_collection.rb     |   2 +
 lib/nanoc/base/entities/code_snippet.rb            |   3 +
 lib/nanoc/base/entities/configuration.rb           |  13 +-
 lib/nanoc/base/entities/content.rb                 |   2 +
 lib/nanoc/base/entities/context.rb                 |   2 +
 lib/nanoc/base/entities/dependency.rb              |   2 +
 lib/nanoc/base/entities/directed_graph.rb          |   2 +
 lib/nanoc/base/entities/document.rb                |   2 +
 lib/nanoc/base/entities/identifiable_collection.rb |   2 +
 lib/nanoc/base/entities/identifier.rb              |   2 +
 lib/nanoc/base/entities/item.rb                    |   2 +
 lib/nanoc/base/entities/item_rep.rb                |   2 +
 lib/nanoc/base/entities/layout.rb                  |   2 +
 lib/nanoc/base/entities/lazy_value.rb              |   2 +
 lib/nanoc/base/entities/outdatedness_reasons.rb    |   2 +
 lib/nanoc/base/entities/outdatedness_status.rb     |   2 +
 lib/nanoc/base/entities/pattern.rb                 |   2 +
 lib/nanoc/base/entities/processing_action.rb       |   2 +
 lib/nanoc/base/entities/processing_actions.rb      |   2 +
 .../base/entities/processing_actions/filter.rb     |   2 +
 .../base/entities/processing_actions/layout.rb     |   2 +
 .../base/entities/processing_actions/snapshot.rb   |   2 +
 lib/nanoc/base/entities/props.rb                   |   4 +-
 lib/nanoc/base/entities/site.rb                    |   2 +
 lib/nanoc/base/entities/snapshot_def.rb            |   2 +
 lib/nanoc/base/error.rb                            |   2 +
 lib/nanoc/base/errors.rb                           |   4 +-
 lib/nanoc/base/feature.rb                          |   2 +
 lib/nanoc/base/memoization.rb                      |   2 +
 lib/nanoc/base/repos.rb                            |   2 +
 lib/nanoc/base/repos/action_sequence_store.rb      |   2 +
 lib/nanoc/base/repos/aggregate_data_source.rb      |   2 +
 lib/nanoc/base/repos/checksum_store.rb             |   2 +
 lib/nanoc/base/repos/compiled_content_cache.rb     |   2 +
 lib/nanoc/base/repos/config_loader.rb              |   2 +
 lib/nanoc/base/repos/data_source.rb                |   2 +
 lib/nanoc/base/repos/dependency_store.rb           |   2 +
 lib/nanoc/base/repos/in_mem_data_source.rb         |   2 +
 lib/nanoc/base/repos/item_rep_repo.rb              |   2 +
 lib/nanoc/base/repos/outdatedness_store.rb         |   2 +
 lib/nanoc/base/repos/prefixed_data_source.rb       |   2 +
 lib/nanoc/base/repos/site_loader.rb                |   2 +
 lib/nanoc/base/repos/snapshot_repo.rb              |   2 +
 lib/nanoc/base/repos/store.rb                      |   2 +
 lib/nanoc/base/services.rb                         |   2 +
 lib/nanoc/base/services/action_provider.rb         |   2 +
 lib/nanoc/base/services/action_sequence_builder.rb |   2 +
 lib/nanoc/base/services/checksummer.rb             |   4 +-
 lib/nanoc/base/services/compilation_context.rb     |   2 +
 lib/nanoc/base/services/compiler.rb                |   2 +
 lib/nanoc/base/services/compiler/phases.rb         |   2 +
 .../base/services/compiler/phases/abstract.rb      |   2 +
 lib/nanoc/base/services/compiler/phases/cache.rb   |   2 +
 .../base/services/compiler/phases/mark_done.rb     |   2 +
 .../base/services/compiler/phases/recalculate.rb   |   2 +
 lib/nanoc/base/services/compiler/phases/resume.rb  |   2 +
 lib/nanoc/base/services/compiler/phases/write.rb   |   2 +
 lib/nanoc/base/services/compiler/stages.rb         |   2 +
 .../base/services/compiler/stages/build_reps.rb    |   2 +
 .../compiler/stages/calculate_checksums.rb         |   2 +
 lib/nanoc/base/services/compiler/stages/cleanup.rb |   2 +
 .../base/services/compiler/stages/compile_reps.rb  |   2 +
 .../compiler/stages/determine_outdatedness.rb      |   2 +
 .../stages/forget_outdated_dependencies.rb         |   2 +
 .../base/services/compiler/stages/load_stores.rb   |   2 +
 .../base/services/compiler/stages/postprocess.rb   |   2 +
 .../base/services/compiler/stages/preprocess.rb    |   2 +
 lib/nanoc/base/services/compiler/stages/prune.rb   |   2 +
 .../stages/store_post_compilation_state.rb         |   2 +
 .../compiler/stages/store_pre_compilation_state.rb |   2 +
 lib/nanoc/base/services/compiler_loader.rb         |   2 +
 lib/nanoc/base/services/dependency_tracker.rb      |   2 +
 lib/nanoc/base/services/executor.rb                |   2 +
 lib/nanoc/base/services/filter.rb                  |   4 +-
 lib/nanoc/base/services/item_rep_builder.rb        |   2 +
 lib/nanoc/base/services/item_rep_router.rb         |   2 +
 lib/nanoc/base/services/item_rep_selector.rb       |   2 +
 lib/nanoc/base/services/item_rep_writer.rb         |   4 +-
 lib/nanoc/base/services/notification_center.rb     |   2 +
 lib/nanoc/base/services/outdatedness_checker.rb    |   2 +
 lib/nanoc/base/services/outdatedness_rule.rb       |   2 +
 lib/nanoc/base/services/outdatedness_rules.rb      |   2 +
 .../outdatedness_rules/attributes_modified.rb      |   2 +
 .../outdatedness_rules/code_snippets_modified.rb   |   2 +
 .../outdatedness_rules/configuration_modified.rb   |   2 +
 .../outdatedness_rules/content_modified.rb         |   2 +
 .../services/outdatedness_rules/not_written.rb     |   2 +
 .../services/outdatedness_rules/rules_modified.rb  |   2 +
 .../uses_always_outdated_filter.rb                 |   2 +
 lib/nanoc/base/services/pruner.rb                  |   6 +-
 lib/nanoc/base/services/temp_filename_factory.rb   |   2 +
 lib/nanoc/base/views.rb                            |   2 +
 lib/nanoc/base/views/config_view.rb                |   2 +
 .../base/views/identifiable_collection_view.rb     |   2 +
 .../base/views/item_collection_with_reps_view.rb   |   2 +
 .../views/item_collection_without_reps_view.rb     |   2 +
 lib/nanoc/base/views/item_rep_collection_view.rb   |   2 +
 lib/nanoc/base/views/item_rep_view.rb              |   2 +
 lib/nanoc/base/views/item_with_reps_view.rb        |   2 +
 lib/nanoc/base/views/item_without_reps_view.rb     |   2 +
 lib/nanoc/base/views/layout_collection_view.rb     |   2 +
 lib/nanoc/base/views/layout_view.rb                |   2 +
 lib/nanoc/base/views/mixins/document_view_mixin.rb |   2 +
 .../views/mixins/mutable_document_view_mixin.rb    |   2 +
 .../base/views/mixins/with_reps_view_mixin.rb      |   2 +
 lib/nanoc/base/views/mutable_config_view.rb        |   2 +
 .../views/mutable_identifiable_collection_view.rb  |   2 +
 .../base/views/mutable_item_collection_view.rb     |   2 +
 lib/nanoc/base/views/mutable_item_view.rb          |   2 +
 .../base/views/mutable_layout_collection_view.rb   |   2 +
 lib/nanoc/base/views/mutable_layout_view.rb        |   2 +
 .../views/post_compile_item_collection_view.rb     |   2 +
 .../views/post_compile_item_rep_collection_view.rb |   2 +
 lib/nanoc/base/views/post_compile_item_rep_view.rb |   2 +
 lib/nanoc/base/views/post_compile_item_view.rb     |   2 +
 lib/nanoc/base/views/view.rb                       |   2 +
 lib/nanoc/base/views/view_context.rb               |   2 +
 lib/nanoc/checking.rb                              |   2 +
 lib/nanoc/checking/check.rb                        |   2 +
 lib/nanoc/checking/checks.rb                       |   2 +
 lib/nanoc/checking/checks/css.rb                   |   2 +
 lib/nanoc/checking/checks/external_links.rb        |   4 +-
 lib/nanoc/checking/checks/html.rb                  |   2 +
 lib/nanoc/checking/checks/internal_links.rb        |   2 +
 lib/nanoc/checking/checks/mixed_content.rb         |   2 +
 lib/nanoc/checking/checks/stale.rb                 |   2 +
 lib/nanoc/checking/checks/w3c_validator.rb         |   2 +
 lib/nanoc/checking/dsl.rb                          |   2 +
 lib/nanoc/checking/issue.rb                        |   2 +
 lib/nanoc/checking/runner.rb                       |   2 +
 lib/nanoc/cli.rb                                   |   2 +
 lib/nanoc/cli/ansi_string_colorizer.rb             |   2 +
 lib/nanoc/cli/cleaning_stream.rb                   |   2 +
 lib/nanoc/cli/command_runner.rb                    |   2 +
 lib/nanoc/cli/commands/check.rb                    |   2 +
 lib/nanoc/cli/commands/compile.rb                  |   6 +-
 .../cli/commands/compile_listeners/abstract.rb     |   2 +
 .../commands/compile_listeners/debug_printer.rb    |   2 +
 .../commands/compile_listeners/diff_generator.rb   |   2 +
 .../compile_listeners/file_action_printer.rb       |   2 +
 .../compile_listeners/stack_prof_profiler.rb       |   4 +-
 .../commands/compile_listeners/timing_recorder.rb  |  18 +-
 lib/nanoc/cli/commands/create-site.rb              | 456 +++++++++++----------
 lib/nanoc/cli/commands/deploy.rb                   |   2 +
 lib/nanoc/cli/commands/nanoc.rb                    |   2 +
 lib/nanoc/cli/commands/prune.rb                    |  14 +-
 lib/nanoc/cli/commands/shell.rb                    |   2 +
 lib/nanoc/cli/commands/show-data.rb                |  10 +-
 lib/nanoc/cli/commands/show-plugins.rb             |  10 +-
 lib/nanoc/cli/commands/show-rules.rb               |   2 +
 lib/nanoc/cli/commands/view.rb                     |  10 +-
 lib/nanoc/cli/error_handler.rb                     |   2 +
 lib/nanoc/cli/logger.rb                            |   2 +
 lib/nanoc/cli/stream_cleaners.rb                   |   2 +
 lib/nanoc/cli/stream_cleaners/abstract.rb          |   2 +
 lib/nanoc/cli/stream_cleaners/ansi_colors.rb       |   2 +
 lib/nanoc/cli/stream_cleaners/utf8.rb              |   7 +-
 lib/nanoc/data_sources.rb                          |   2 +
 lib/nanoc/data_sources/filesystem.rb               |   2 +
 lib/nanoc/data_sources/filesystem/errors.rb        |   2 +
 lib/nanoc/data_sources/filesystem/tools.rb         |   2 +
 lib/nanoc/deploying.rb                             |   2 +
 lib/nanoc/deploying/deployer.rb                    |   2 +
 lib/nanoc/deploying/deployers.rb                   |   2 +
 lib/nanoc/deploying/deployers/fog.rb               |   2 +
 lib/nanoc/deploying/deployers/git.rb               |   2 +
 lib/nanoc/deploying/deployers/rsync.rb             |   2 +
 lib/nanoc/extra.rb                                 |   2 +
 lib/nanoc/extra/core_ext.rb                        |   2 +
 lib/nanoc/extra/core_ext/pathname.rb               |   2 +
 lib/nanoc/extra/core_ext/time.rb                   |   2 +
 lib/nanoc/extra/jruby_nokogiri_warner.rb           |  26 +-
 lib/nanoc/extra/link_collector.rb                  |   2 +
 lib/nanoc/extra/parallel_collection.rb             |   2 +
 lib/nanoc/extra/piper.rb                           |   2 +
 lib/nanoc/filters.rb                               |   2 +
 lib/nanoc/filters/asciidoc.rb                      |   2 +
 lib/nanoc/filters/bluecloth.rb                     |   2 +
 lib/nanoc/filters/coffeescript.rb                  |   2 +
 lib/nanoc/filters/colorize_syntax.rb               |   4 +-
 lib/nanoc/filters/colorize_syntax/colorizers.rb    |   2 +
 lib/nanoc/filters/erb.rb                           |   2 +
 lib/nanoc/filters/erubi.rb                         |   2 +
 lib/nanoc/filters/erubis.rb                        |   2 +
 lib/nanoc/filters/haml.rb                          |   2 +
 lib/nanoc/filters/handlebars.rb                    |   2 +
 lib/nanoc/filters/kramdown.rb                      |   2 +
 lib/nanoc/filters/less.rb                          |   2 +
 lib/nanoc/filters/markaby.rb                       |   2 +
 lib/nanoc/filters/maruku.rb                        |   2 +
 lib/nanoc/filters/mustache.rb                      |   2 +
 lib/nanoc/filters/pandoc.rb                        |   2 +
 lib/nanoc/filters/rainpress.rb                     |   2 +
 lib/nanoc/filters/rdiscount.rb                     |   2 +
 lib/nanoc/filters/rdoc.rb                          |   2 +
 lib/nanoc/filters/redcarpet.rb                     |   2 +
 lib/nanoc/filters/redcloth.rb                      |   2 +
 lib/nanoc/filters/relativize_paths.rb              |  15 +-
 lib/nanoc/filters/rubypants.rb                     |   2 +
 lib/nanoc/filters/sass.rb                          |   2 +
 lib/nanoc/filters/sass/sass_filesystem_importer.rb |   2 +
 lib/nanoc/filters/slim.rb                          |   4 +-
 lib/nanoc/filters/typogruby.rb                     |   2 +
 lib/nanoc/filters/uglify_js.rb                     |   2 +
 lib/nanoc/filters/xsl.rb                           |   2 +
 lib/nanoc/filters/yui_compressor.rb                |   2 +
 lib/nanoc/helpers.rb                               |   2 +
 lib/nanoc/helpers/blogging.rb                      |   4 +-
 lib/nanoc/helpers/breadcrumbs.rb                   |   2 +
 lib/nanoc/helpers/capturing.rb                     |   6 +-
 lib/nanoc/helpers/child_parent.rb                  |   2 +
 lib/nanoc/helpers/filtering.rb                     |   2 +
 lib/nanoc/helpers/html_escape.rb                   |   2 +
 lib/nanoc/helpers/link_to.rb                       |   2 +
 lib/nanoc/helpers/rendering.rb                     |   2 +
 lib/nanoc/helpers/tagging.rb                       |   2 +
 lib/nanoc/helpers/text.rb                          |   2 +
 lib/nanoc/helpers/xml_sitemap.rb                   |   4 +-
 lib/nanoc/rule_dsl.rb                              |   2 +
 lib/nanoc/rule_dsl/action_provider.rb              |   2 +
 lib/nanoc/rule_dsl/action_sequence_calculator.rb   |   2 +
 lib/nanoc/rule_dsl/compiler_dsl.rb                 |   5 +-
 lib/nanoc/rule_dsl/recording_executor.rb           |   2 +
 lib/nanoc/rule_dsl/rule.rb                         |   2 +
 lib/nanoc/rule_dsl/rule_context.rb                 |   2 +
 lib/nanoc/rule_dsl/rules_collection.rb             |   2 +
 lib/nanoc/rule_dsl/rules_loader.rb                 |   2 +
 lib/nanoc/spec.rb                                  |   4 +-
 lib/nanoc/telemetry.rb                             |   4 +
 lib/nanoc/telemetry/counter.rb                     |   2 +
 lib/nanoc/telemetry/labelled_counter.rb            |   2 +
 lib/nanoc/telemetry/labelled_summary.rb            |   2 +
 lib/nanoc/telemetry/registry.rb                    |   2 +
 lib/nanoc/telemetry/stopwatch.rb                   |   2 +
 lib/nanoc/telemetry/summary.rb                     |   2 +
 lib/nanoc/telemetry/table.rb                       |  35 ++
 lib/nanoc/version.rb                               |   4 +-
 nanoc.gemspec                                      |   2 +
 spec/contributors_spec.rb                          |   2 +
 spec/nanoc/base/checksummer_spec.rb                |   2 +
 spec/nanoc/base/compiler_spec.rb                   |   2 +
 spec/nanoc/base/directed_graph_spec.rb             |   2 +
 spec/nanoc/base/entities/action_sequence_spec.rb   |   2 +
 spec/nanoc/base/entities/code_snippet_spec.rb      |  51 +++
 spec/nanoc/base/entities/configuration_spec.rb     |  15 +
 spec/nanoc/base/entities/content_spec.rb           |   2 +
 spec/nanoc/base/entities/document_spec.rb          |   2 +
 .../base/entities/identifiable_collection_spec.rb  |   2 +
 spec/nanoc/base/entities/identifier_spec.rb        |   2 +
 spec/nanoc/base/entities/item_rep_spec.rb          |   2 +
 spec/nanoc/base/entities/item_spec.rb              |   2 +
 spec/nanoc/base/entities/layout_spec.rb            |   2 +
 spec/nanoc/base/entities/lazy_value_spec.rb        |   4 +-
 .../base/entities/outdatedness_status_spec.rb      |   2 +
 spec/nanoc/base/entities/pattern_spec.rb           |   2 +
 spec/nanoc/base/entities/processing_action_spec.rb |   2 +
 .../entities/processing_actions/filter_spec.rb     |   2 +
 .../entities/processing_actions/layout_spec.rb     |   2 +
 .../entities/processing_actions/snapshot_spec.rb   |   2 +
 spec/nanoc/base/entities/props_spec.rb             |   2 +
 spec/nanoc/base/entities/site_spec.rb              |   2 +
 spec/nanoc/base/errors/dependency_cycle_spec.rb    |  14 +-
 spec/nanoc/base/feature_spec.rb                    |   6 +-
 spec/nanoc/base/filter_spec.rb                     |   2 +
 spec/nanoc/base/item_rep_writer_spec.rb            |   2 +
 spec/nanoc/base/memoization_spec.rb                |   2 +
 spec/nanoc/base/repos/checksum_store_spec.rb       |   2 +
 .../base/repos/compiled_content_cache_spec.rb      |   2 +
 spec/nanoc/base/repos/config_loader_spec.rb        |   2 +
 spec/nanoc/base/repos/dependency_store_spec.rb     |   2 +
 spec/nanoc/base/repos/outdatedness_store_spec.rb   |   2 +
 spec/nanoc/base/repos/site_loader_spec.rb          |   2 +
 spec/nanoc/base/repos/snapshot_repo_spec.rb        |   2 +
 spec/nanoc/base/repos/store_spec.rb                |   2 +
 .../base/services/compiler/phases/abstract_spec.rb |   2 +
 .../base/services/compiler/phases/cache_spec.rb    |   2 +
 .../compiler/stages/calculate_checksums_spec.rb    |   2 +
 .../base/services/compiler/stages/cleanup_spec.rb  |   2 +
 .../services/compiler/stages/compile_reps_spec.rb  |   2 +
 .../nanoc/base/services/dependency_tracker_spec.rb |   2 +
 spec/nanoc/base/services/executor_spec.rb          |   2 +
 spec/nanoc/base/services/item_rep_router_spec.rb   |   2 +
 spec/nanoc/base/services/item_rep_selector_spec.rb |   2 +
 .../base/services/outdatedness_checker_spec.rb     |   2 +
 .../nanoc/base/services/outdatedness_rules_spec.rb |   2 +
 spec/nanoc/base/services/pruner_spec.rb            |   2 +
 .../base/services/temp_filename_factory_spec.rb    |   2 +
 spec/nanoc/base/views/config_view_spec.rb          |   2 +
 spec/nanoc/base/views/document_view_spec.rb        |   2 +
 .../views/identifiable_collection_view_spec.rb     |   2 +
 .../views/item_collection_with_reps_view_spec.rb   |   2 +
 .../item_collection_without_reps_view_spec.rb      |   2 +
 .../base/views/item_rep_collection_view_spec.rb    |   2 +
 spec/nanoc/base/views/item_rep_view_spec.rb        |   2 +
 spec/nanoc/base/views/item_view_spec.rb            |   2 +
 .../base/views/layout_collection_view_spec.rb      |   2 +
 spec/nanoc/base/views/layout_view_spec.rb          |   2 +
 spec/nanoc/base/views/mutable_config_view_spec.rb  |   2 +
 .../nanoc/base/views/mutable_document_view_spec.rb |   2 +
 .../mutable_identifiable_collection_view_spec.rb   |   2 +
 .../views/mutable_item_collection_view_spec.rb     |   2 +
 spec/nanoc/base/views/mutable_item_view_spec.rb    |   2 +
 .../views/mutable_layout_collection_view_spec.rb   |   2 +
 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  |   2 +
 .../base/views/post_compile_item_view_spec.rb      |   2 +
 .../cli/commands/compile/diff_generator_spec.rb    |   2 +
 .../commands/compile/file_action_printer_spec.rb   |   2 +
 .../cli/commands/compile/timing_recorder_spec.rb   |   2 +
 spec/nanoc/cli/commands/compile_spec.rb            |   2 +
 spec/nanoc/cli/commands/deploy_spec.rb             |   2 +
 spec/nanoc/cli/commands/shell_spec.rb              |   8 +
 spec/nanoc/cli/commands/show_data_spec.rb          |   2 +
 spec/nanoc/cli/commands/show_plugins_spec.rb       |   2 +
 spec/nanoc/cli/commands/show_rules_spec.rb         |   2 +
 spec/nanoc/cli/commands/view_spec.rb               |   2 +
 spec/nanoc/cli/stream_cleaners/utf8_spec.rb        |   2 +
 spec/nanoc/data_sources/filesystem_spec.rb         |   2 +
 spec/nanoc/deploying/fog_spec.rb                   |   2 +
 spec/nanoc/deploying/git_spec.rb                   |   7 +-
 spec/nanoc/extra/parallel_collection_spec.rb       |   2 +
 spec/nanoc/filters/colorize_syntax/rouge_spec.rb   | 120 +++---
 spec/nanoc/filters/less_spec.rb                    |   2 +
 spec/nanoc/helpers/blogging_spec.rb                |   2 +
 spec/nanoc/helpers/breadcrumbs_spec.rb             |   2 +
 spec/nanoc/helpers/capturing_spec.rb               |  10 +-
 spec/nanoc/helpers/child_parent_spec.rb            |   2 +
 spec/nanoc/helpers/filtering_spec.rb               |   2 +
 spec/nanoc/helpers/html_escape_spec.rb             |   4 +-
 spec/nanoc/helpers/link_to_spec.rb                 |   2 +
 spec/nanoc/helpers/rendering_spec.rb               |   2 +
 spec/nanoc/helpers/tagging_spec.rb                 |   2 +
 spec/nanoc/helpers/text_spec.rb                    |   2 +
 spec/nanoc/integration/compile_command_spec.rb     |  10 +-
 .../integration/outdatedness_integration_spec.rb   |  70 ++--
 .../integration/partial_recompilation_spec.rb      |  18 +-
 spec/nanoc/regressions/gh_1015_spec.rb             |   2 +
 spec/nanoc/regressions/gh_1022_spec.rb             |   2 +
 spec/nanoc/regressions/gh_1031_spec.rb             |   2 +
 spec/nanoc/regressions/gh_1035_spec.rb             |  18 +-
 spec/nanoc/regressions/gh_1037a_spec.rb            |   2 +
 spec/nanoc/regressions/gh_1037b_spec.rb            |   2 +
 spec/nanoc/regressions/gh_1040_spec.rb             |   2 +
 spec/nanoc/regressions/gh_1045_spec.rb             |  26 +-
 spec/nanoc/regressions/gh_1047_spec.rb             |   2 +
 spec/nanoc/regressions/gh_1064_spec.rb             |   2 +
 spec/nanoc/regressions/gh_1067_spec.rb             |  14 +-
 spec/nanoc/regressions/gh_1082a_spec.rb            |   2 +
 spec/nanoc/regressions/gh_1082b_spec.rb            |   2 +
 spec/nanoc/regressions/gh_1082c_spec.rb            |   2 +
 spec/nanoc/regressions/gh_1082d_spec.rb            |   2 +
 spec/nanoc/regressions/gh_1093_spec.rb             |   2 +
 spec/nanoc/regressions/gh_1094_spec.rb             |   2 +
 spec/nanoc/regressions/gh_1097_spec.rb             |   2 +
 spec/nanoc/regressions/gh_1100_spec.rb             |   2 +
 spec/nanoc/regressions/gh_1102_spec.rb             |   2 +
 spec/nanoc/regressions/gh_1107_spec.rb             |   2 +
 spec/nanoc/regressions/gh_1130_spec.rb             |  14 +-
 spec/nanoc/regressions/gh_1134_spec.rb             |  14 +-
 spec/nanoc/regressions/gh_1145_spec.rb             |  12 +-
 spec/nanoc/regressions/gh_1171_spec.rb             |  32 +-
 spec/nanoc/regressions/gh_761_spec.rb              |   2 +
 spec/nanoc/regressions/gh_767_spec.rb              |   2 +
 spec/nanoc/regressions/gh_769_spec.rb              |   2 +
 spec/nanoc/regressions/gh_776_spec.rb              |   2 +
 spec/nanoc/regressions/gh_787_spec.rb              |   2 +
 spec/nanoc/regressions/gh_795_spec.rb              |   2 +
 spec/nanoc/regressions/gh_804_spec.rb              |  12 +-
 spec/nanoc/regressions/gh_807_spec.rb              |   2 +
 spec/nanoc/regressions/gh_809_spec.rb              |   2 +
 spec/nanoc/regressions/gh_813_spec.rb              |   2 +
 spec/nanoc/regressions/gh_815_spec.rb              |   2 +
 spec/nanoc/regressions/gh_828_spec.rb              |   2 +
 spec/nanoc/regressions/gh_833_spec.rb              |   2 +
 spec/nanoc/regressions/gh_841_spec.rb              |   2 +
 spec/nanoc/regressions/gh_867_spec.rb              |   2 +
 spec/nanoc/regressions/gh_882_spec.rb              |   2 +
 spec/nanoc/regressions/gh_885_spec.rb              |   2 +
 spec/nanoc/regressions/gh_891_spec.rb              |   2 +
 spec/nanoc/regressions/gh_913_spec.rb              |   2 +
 spec/nanoc/regressions/gh_924_spec.rb              | 114 +++---
 spec/nanoc/regressions/gh_928_spec.rb              |   2 +
 spec/nanoc/regressions/gh_937_spec.rb              |  12 +-
 spec/nanoc/regressions/gh_942_spec.rb              |   2 +
 spec/nanoc/regressions/gh_947_spec.rb              |   2 +
 spec/nanoc/regressions/gh_948_spec.rb              |   2 +
 spec/nanoc/regressions/gh_951_spec.rb              |   2 +
 spec/nanoc/regressions/gh_954_spec.rb              |  26 +-
 spec/nanoc/regressions/gh_970a_spec.rb             |  10 +-
 spec/nanoc/regressions/gh_970b_spec.rb             |  18 +-
 spec/nanoc/regressions/gh_974_spec.rb              |  10 +-
 spec/nanoc/regressions/gh_981_spec.rb              |   2 +
 .../rule_dsl/action_sequence_calculator_spec.rb    |   2 +
 spec/nanoc/rule_dsl/recording_executor_spec.rb     |   2 +
 spec/nanoc/rule_dsl/rule_context_spec.rb           |   2 +
 spec/nanoc/rule_dsl/rules_collection_spec.rb       |   2 +
 spec/nanoc/spec_spec.rb                            |   2 +
 spec/nanoc/telemetry/counter_spec.rb               |   2 +
 spec/nanoc/telemetry/labelled_counter_spec.rb      |   2 +
 spec/nanoc/telemetry/labelled_summary_spec.rb      |   2 +
 spec/nanoc/telemetry/stopwatch_spec.rb             |   2 +
 spec/nanoc/telemetry/summary_spec.rb               |   2 +
 spec/nanoc/telemetry_spec.rb                       |   2 +
 spec/regression_filenames_spec.rb                  |   4 +-
 spec/spec_helper.rb                                |   2 +
 test/base/core_ext/array_spec.rb                   |   2 +
 test/base/core_ext/hash_spec.rb                    |   2 +
 test/base/core_ext/string_spec.rb                  |   2 +
 test/base/test_code_snippet.rb                     |   2 +
 test/base/test_compiler.rb                         |   2 +
 test/base/test_context.rb                          |   2 +
 test/base/test_data_source.rb                      |   2 +
 test/base/test_dependency_tracker.rb               |   2 +
 test/base/test_directed_graph.rb                   |   2 +
 test/base/test_filter.rb                           |   2 +
 test/base/test_item.rb                             |   2 +
 test/base/test_item_array.rb                       |   2 +
 test/base/test_layout.rb                           |   2 +
 test/base/test_notification_center.rb              |   2 +
 test/base/test_site.rb                             |  32 +-
 test/base/test_store.rb                            |   2 +
 test/checking/checks/test_css.rb                   |   2 +
 test/checking/checks/test_external_links.rb        |   2 +
 test/checking/checks/test_html.rb                  |   2 +
 test/checking/checks/test_internal_links.rb        |   2 +
 test/checking/checks/test_mixed_content.rb         |   2 +
 test/checking/checks/test_stale.rb                 |   2 +
 test/checking/test_check.rb                        |   2 +
 test/checking/test_dsl.rb                          |   2 +
 test/checking/test_runner.rb                       |   2 +
 test/cli/commands/test_check.rb                    |   2 +
 test/cli/commands/test_compile.rb                  |   2 +
 test/cli/commands/test_create_site.rb              |   2 +
 test/cli/commands/test_help.rb                     |   2 +
 test/cli/commands/test_info.rb                     |   2 +
 test/cli/commands/test_prune.rb                    |   2 +
 test/cli/test_cleaning_stream.rb                   |   2 +
 test/cli/test_cli.rb                               |  30 +-
 test/cli/test_error_handler.rb                     |   2 +
 test/cli/test_logger.rb                            |   2 +
 test/data_sources/test_filesystem.rb               |   2 +
 test/data_sources/test_filesystem_tools.rb         |   2 +
 test/deploying/test_fog.rb                         |   2 +
 test/deploying/test_git.rb                         |  64 +--
 test/deploying/test_rsync.rb                       |   2 +
 test/extra/core_ext/test_pathname.rb               |   2 +
 test/extra/core_ext/test_time.rb                   |   2 +
 test/extra/test_link_collector.rb                  |   2 +
 test/extra/test_piper.rb                           |   2 +
 test/filters/colorize_syntax/test_coderay.rb       |  84 ++--
 test/filters/colorize_syntax/test_common.rb        |  46 ++-
 test/filters/colorize_syntax/test_pygmentize.rb    |   2 +
 test/filters/colorize_syntax/test_pygments.rb      |   2 +
 test/filters/colorize_syntax/test_simon.rb         |   2 +
 test/filters/test_asciidoc.rb                      |   2 +
 test/filters/test_bluecloth.rb                     |   2 +
 test/filters/test_coffeescript.rb                  |   2 +
 test/filters/test_erb.rb                           |   2 +
 test/filters/test_erubi.rb                         |   2 +
 test/filters/test_erubis.rb                        |   2 +
 test/filters/test_haml.rb                          |   2 +
 test/filters/test_handlebars.rb                    |   2 +
 test/filters/test_kramdown.rb                      |   2 +
 test/filters/test_markaby.rb                       |   2 +
 test/filters/test_maruku.rb                        |   2 +
 test/filters/test_mustache.rb                      |   2 +
 test/filters/test_pandoc.rb                        |   2 +
 test/filters/test_rainpress.rb                     |   2 +
 test/filters/test_rdiscount.rb                     |   2 +
 test/filters/test_rdoc.rb                          |   2 +
 test/filters/test_redcarpet.rb                     |   2 +
 test/filters/test_redcloth.rb                      |   2 +
 test/filters/test_relativize_paths.rb              | 102 ++---
 test/filters/test_rubypants.rb                     |   2 +
 test/filters/test_sass.rb                          |   2 +
 test/filters/test_slim.rb                          |  26 ++
 test/filters/test_typogruby.rb                     |   2 +
 test/filters/test_uglify_js.rb                     |   2 +
 test/filters/test_xsl.rb                           | 126 +++---
 test/filters/test_yui_compressor.rb                |   2 +
 test/helper.rb                                     |  33 +-
 test/helpers/test_blogging.rb                      |   2 +
 test/helpers/test_capturing.rb                     |  22 +-
 test/helpers/test_link_to.rb                       |   2 +
 test/helpers/test_xml_sitemap.rb                   |   2 +
 test/rule_dsl/test_action_provider.rb              |   2 +
 test/rule_dsl/test_compiler_dsl.rb                 |  82 ++--
 test/rule_dsl/test_rule.rb                         |   2 +
 test/rule_dsl/test_rules_collection.rb             |   2 +
 test/test_gem.rb                                   |   2 +
 516 files changed, 2093 insertions(+), 926 deletions(-)
 create mode 100644 lib/nanoc/telemetry/table.rb
 create mode 100644 spec/nanoc/base/entities/code_snippet_spec.rb

-- 
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