[DRE-commits] [ruby-rspec-core] 01/07: Merge tag 'upstream/2.14.4'

Cédric Boutillier boutil at alioth.debian.org
Thu Aug 15 19:59:00 UTC 2013


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

boutil pushed a commit to branch master
in repository ruby-rspec-core.

commit bde8c6f7e7823b4619baf6a2ebc4a39a379f5d93
Merge: 4f2fdff 1d5c8fb
Author: Cédric Boutillier <boutil at debian.org>
Date:   Fri Aug 2 17:37:05 2013 +0200

    Merge tag 'upstream/2.14.4'
    
    Upstream version 2.14.4
    
    # gpg: Signature faite le ven. 02 août 2013 17:37:04 CEST avec la clef RSA d'identifiant 8F9F8F09
    # gpg: Bonne signature de « Cédric Boutillier <boutil at debian.org> »
    # gpg:                 alias « Cédric Boutillier <cedric.boutillier at upmc.fr> »
    # gpg:                 alias « Cédric Boutillier <cedric.boutillier at polytechnique.org> »
    # gpg:                 alias « Cédric Boutillier <cedric.boutillier at gmail.com> »

 Changelog.md                                       |  148 ++++++++++
 exe/autospec                                       |    2 +-
 features/README.md                                 |    4 +-
 features/command_line/format_option.feature        |   22 +-
 .../line_number_appended_to_path.feature           |    8 +-
 features/command_line/line_number_option.feature   |    2 +-
 features/command_line/pattern_option.feature       |   18 ++
 features/command_line/rake_task.feature            |    4 +-
 features/command_line/require_option.feature       |   43 +++
 features/command_line/ruby.feature                 |    4 +-
 features/command_line/warnings_option.feature      |   29 ++
 .../configuration/backtrace_clean_patterns.feature |    4 +-
 features/configuration/deprecation_stream.feature  |   58 ++++
 features/configuration/pattern.feature             |    8 +
 features/configuration/profile.feature             |   61 +++-
 .../configuration/read_options_from_file.feature   |   13 +-
 .../run_all_when_everything_filtered.feature       |   24 +-
 features/example_groups/basic_structure.feature    |    2 +-
 features/example_groups/shared_context.feature     |    2 +-
 features/example_groups/shared_examples.feature    |   72 +++++
 features/filtering/exclusion_filters.feature       |   20 +-
 .../run_all_when_everything_filtered.feature       |   46 ---
 features/formatters/custom_formatter.feature       |    2 +-
 features/hooks/around_hooks.feature                |    2 +-
 features/hooks/before_and_after_hooks.feature      |   38 +--
 .../use_any_framework.feature                      |   12 +-
 .../use_flexmock.feature                           |    6 +-
 .../mock_framework_integration/use_mocha.feature   |    6 +-
 features/mock_framework_integration/use_rr.feature |    6 +-
 .../mock_framework_integration/use_rspec.feature   |    6 +-
 features/subject/implicit_subject.feature          |    2 +-
 features/support/rubinius.rb                       |    6 +
 lib/rspec/core.rb                                  |   55 +++-
 lib/rspec/core/backtrace_cleaner.rb                |   46 +++
 lib/rspec/core/backward_compatibility.rb           |   16 +-
 lib/rspec/core/configuration.rb                    |  185 ++++++++----
 lib/rspec/core/configuration_options.rb            |   30 +-
 lib/rspec/core/deprecation.rb                      |   53 ++--
 lib/rspec/core/example.rb                          |    6 +-
 lib/rspec/core/example_group.rb                    |   17 +-
 lib/rspec/core/extensions/kernel.rb                |    2 +-
 lib/rspec/core/filter_manager.rb                   |    2 +-
 lib/rspec/core/formatters.rb                       |    2 +-
 lib/rspec/core/formatters/base_formatter.rb        |   11 +-
 lib/rspec/core/formatters/base_text_formatter.rb   |   57 +++-
 lib/rspec/core/formatters/deprecation_formatter.rb |   39 +++
 lib/rspec/core/formatters/helpers.rb               |   17 +-
 lib/rspec/core/formatters/html_formatter.rb        |   13 +-
 lib/rspec/core/formatters/html_printer.rb          |   25 +-
 lib/rspec/core/formatters/json_formatter.rb        |    3 +-
 lib/rspec/core/formatters/text_mate_formatter.rb   |    2 +-
 lib/rspec/core/hooks.rb                            |    9 +
 lib/rspec/core/load_path.rb                        |    3 -
 lib/rspec/core/memoized_helpers.rb                 |   47 +--
 lib/rspec/core/metadata.rb                         |    4 +-
 lib/rspec/core/mocking/with_flexmock.rb            |    2 +-
 lib/rspec/core/mocking/with_rr.rb                  |    2 +-
 lib/rspec/core/option_parser.rb                    |   17 +-
 lib/rspec/core/pending.rb                          |    1 +
 lib/rspec/core/rake_task.rb                        |   46 +--
 lib/rspec/core/reporter.rb                         |   38 ++-
 lib/rspec/core/shared_context.rb                   |   40 +--
 lib/rspec/core/shared_example_group.rb             |   72 ++++-
 lib/rspec/core/shared_example_group/collection.rb  |   43 +++
 lib/rspec/core/version.rb                          |    3 +-
 lib/rspec/core/world.rb                            |    5 +-
 metadata.yml                                       |   36 ++-
 spec/autotest/rspec_spec.rb                        |    4 +-
 spec/rspec/core/backtrace_cleaner_spec.rb          |   68 +++++
 spec/rspec/core/configuration_options_spec.rb      |   27 +-
 spec/rspec/core/configuration_spec.rb              |  223 ++++++++++++--
 spec/rspec/core/deprecation_spec.rb                |   46 +++
 spec/rspec/core/deprecations_spec.rb               |   22 +-
 spec/rspec/core/drb_command_line_spec.rb           |    2 +-
 spec/rspec/core/example_group_spec.rb              |   75 ++---
 spec/rspec/core/example_spec.rb                    |   29 +-
 spec/rspec/core/filter_manager_spec.rb             |   12 +-
 .../core/formatters/base_text_formatter_spec.rb    |  137 ++++++---
 .../core/formatters/deprecation_formatter_spec.rb  |   96 ++++++
 .../formatters/documentation_formatter_spec.rb     |    4 +-
 spec/rspec/core/formatters/helpers_spec.rb         |   30 +-
 .../formatters/html_formatted-1.8.7-jruby.html     |   34 ++-
 .../core/formatters/html_formatted-1.8.7-rbx.html  |  238 +++++----------
 .../core/formatters/html_formatted-1.8.7.html      |   51 ++--
 .../core/formatters/html_formatted-1.9.2.html      |   75 ++---
 .../formatters/html_formatted-1.9.3-jruby.html     |   40 ++-
 .../core/formatters/html_formatted-1.9.3-rbx.html  |  214 ++++----------
 .../core/formatters/html_formatted-1.9.3.html      |   75 ++---
 .../core/formatters/html_formatted-2.0.0.html      |   75 ++---
 spec/rspec/core/formatters/html_formatter_spec.rb  |    1 +
 .../core/formatters/progress_formatter_spec.rb     |    6 +-
 .../text_mate_formatted-1.8.7-jruby.html           |   25 +-
 .../formatters/text_mate_formatted-1.8.7-rbx.html  |  306 +++++++-------------
 .../core/formatters/text_mate_formatted-1.8.7.html |   55 ++--
 .../core/formatters/text_mate_formatted-1.9.2.html |   75 ++---
 .../text_mate_formatted-1.9.3-jruby.html           |   34 ++-
 .../formatters/text_mate_formatted-1.9.3-rbx.html  |  306 +++++++-------------
 .../core/formatters/text_mate_formatted-1.9.3.html |   75 ++---
 .../core/formatters/text_mate_formatted-2.0.0.html |   75 ++---
 .../core/formatters/text_mate_formatter_spec.rb    |    1 +
 spec/rspec/core/memoized_helpers_spec.rb           |   46 +++
 spec/rspec/core/metadata_spec.rb                   |   11 +-
 spec/rspec/core/option_parser_spec.rb              |   34 +++
 spec/rspec/core/project_initializer_spec.rb        |    4 +-
 spec/rspec/core/rake_task_spec.rb                  |   16 +-
 spec/rspec/core/reporter_spec.rb                   |   43 ++-
 spec/rspec/core/resources/formatter_specs.rb       |    6 +-
 spec/rspec/core/shared_context_spec.rb             |   20 ++
 .../core/shared_example_group/collection_spec.rb   |   70 +++++
 spec/rspec/core/shared_example_group_spec.rb       |    8 +-
 spec/rspec/core/world_spec.rb                      |    4 +-
 spec/rspec/core_spec.rb                            |   39 +++
 spec/spec_helper.rb                                |   58 ++--
 spec/support/helper_methods.rb                     |   20 +-
 spec/support/isolate_load_path_mutation.rb         |    6 +
 spec/support/sandboxed_mock_space.rb               |  100 +++++++
 116 files changed, 3015 insertions(+), 1635 deletions(-)

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



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