[DRE-commits] [ruby-rspec-core] branch master updated (4f2fdff -> 2fc14da)

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 change to branch master
in repository ruby-rspec-core.

      from  4f2fdff   update email address and upload to unstable
      adds  1d5c8fb   Imported Upstream version 2.14.4
       new  bde8c6f   Merge tag 'upstream/2.14.4'
       new  8b80605   refresh remove-aruba-stuff-in-tests.patch
       new  b84c410   ruby_test_bin.patch: use RUBY_TEST_BIN as Ruby interpreter in specs
       new  3aa0f69   Build-depend on ruby-rspec, depend on ruby-rspec-{mocks,expectations}
       new  db62978   update changelog
      adds  c121f57   Imported Upstream version 2.14.5
       new  ca9b07e   Merge tag 'upstream/2.14.5'
       new  2fc14da   update changelog

The 7 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:
 Changelog.md                                       |  163 +++++++++++
 debian/changelog                                   |   12 +
 debian/control                                     |    4 +-
 debian/patches/remove-aruba-stuff-in-tests.patch   |    6 +-
 debian/patches/ruby_test_bin.patch                 |   18 ++
 debian/patches/series                              |    1 +
 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                    |   31 +-
 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                            |   38 ++-
 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             |   83 ++++--
 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              |   91 +++---
 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 +
 spec/rspec/core/formatters/json_formatter_spec.rb  |    5 +
 .../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       |   32 +-
 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 +++++++
 122 files changed, 3140 insertions(+), 1665 deletions(-)
 create mode 100644 debian/patches/ruby_test_bin.patch
 create mode 100644 features/command_line/require_option.feature
 create mode 100644 features/command_line/warnings_option.feature
 create mode 100644 features/configuration/deprecation_stream.feature
 delete mode 100644 features/filtering/run_all_when_everything_filtered.feature
 create mode 100644 features/support/rubinius.rb
 create mode 100644 lib/rspec/core/backtrace_cleaner.rb
 create mode 100644 lib/rspec/core/formatters/deprecation_formatter.rb
 delete mode 100644 lib/rspec/core/load_path.rb
 create mode 100644 lib/rspec/core/shared_example_group/collection.rb
 create mode 100644 spec/rspec/core/backtrace_cleaner_spec.rb
 create mode 100644 spec/rspec/core/deprecation_spec.rb
 create mode 100644 spec/rspec/core/formatters/deprecation_formatter_spec.rb
 create mode 100644 spec/rspec/core/shared_example_group/collection_spec.rb
 create mode 100644 spec/support/isolate_load_path_mutation.rb
 create mode 100644 spec/support/sandboxed_mock_space.rb

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