[DRE-commits] [ruby-simplecov] 01/11: Merge tag 'upstream/0.10.0'

Antonio Terceiro terceiro at moszumanska.debian.org
Tue Sep 15 15:29:33 UTC 2015


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

terceiro pushed a commit to branch master
in repository ruby-simplecov.

commit fa24087c5f10282ddba318bdc6caae02c9308735
Merge: 6428ede 411a1fa
Author: Antonio Terceiro <terceiro at debian.org>
Date:   Tue Sep 15 11:26:29 2015 -0300

    Merge tag 'upstream/0.10.0'
    
    Upstream version 0.10.0
    
    # gpg: Signature made Ter 15 Set 2015 11:26:27 BRT using RSA key ID CD460BDE
    # gpg: Good signature from "Antonio Terceiro <terceiro at softwarelivre.org>"
    # gpg:                 aka "Antonio Terceiro <terceiro at dcc.ufba.br>"
    # gpg:                 aka "Antonio Terceiro <terceiro at colivre.coop.br>"
    # gpg:                 aka "Antonio Terceiro <terceiro at debian.org>"

 .gitignore                                         |   1 -
 .rspec                                             |   1 +
 .rubocop.yml                                       |  69 +++
 .travis.yml                                        |  32 +-
 Appraisals                                         |   8 -
 CHANGELOG.md                                       | 213 ++++++-
 CONTRIBUTING.md                                    |  40 +-
 Gemfile                                            |  35 +-
 LICENSE => MIT-LICENSE                             |   2 +-
 README.md                                          | 639 +++++++++++++--------
 Rakefile                                           |  30 +-
 doc/alternate-formatters.md                        |  36 ++
 doc/commercial-services.md                         |  20 +
 doc/editor-integration.md                          |  13 +
 features/config_adapters.feature                   |  44 --
 features/config_command_name.feature               |  12 +
 features/config_coverage_dir.feature               |  13 +
 features/config_formatters.feature                 |  25 +
 features/config_merge_timeout.feature              |   6 +-
 features/config_profiles.feature                   |  44 ++
 features/config_project_name.feature               |   4 +-
 features/config_styles.feature                     |  28 +
 features/cucumber_basic.feature                    |   2 +-
 features/rspec_basic.feature                       |   5 +-
 features/rspec_groups_and_filters_complex.feature  |   2 +
 features/rspec_groups_using_filter_class.feature   |   5 +-
 features/step_definitions/html_steps.rb            |  25 +-
 features/step_definitions/simplecov_steps.rb       |  34 +-
 features/step_definitions/transformers.rb          |   4 +-
 features/step_definitions/web_steps.rb             |  12 +-
 features/support/env.rb                            |  43 +-
 gemfiles/multi_json-legacy.gemfile                 |   7 -
 gemfiles/multi_json-new.gemfile                    |   7 -
 lib/simplecov.rb                                   | 106 ++--
 lib/simplecov/adapters.rb                          |  29 -
 lib/simplecov/command_guesser.rb                   |  80 +--
 lib/simplecov/configuration.rb                     | 457 ++++++++-------
 lib/simplecov/defaults.rb                          | 104 ++--
 lib/simplecov/exit_codes.rb                        |  11 +-
 lib/simplecov/file_list.rb                         |  72 +--
 lib/simplecov/filter.rb                            |  14 +-
 lib/simplecov/formatter.rb                         |   4 +-
 lib/simplecov/formatter/multi_formatter.rb         |  41 +-
 lib/simplecov/formatter/simple_formatter.rb        |  28 +-
 lib/simplecov/jruby_fix.rb                         |  42 ++
 lib/simplecov/json.rb                              |  27 -
 lib/simplecov/last_run.rb                          |  28 +-
 lib/simplecov/merge_helpers.rb                     |  53 +-
 lib/simplecov/no_defaults.rb                       |   2 +
 lib/simplecov/profiles.rb                          |  31 +
 lib/simplecov/railtie.rb                           |   2 +-
 lib/simplecov/railties/tasks.rake                  |  14 +-
 lib/simplecov/result.rb                            |  63 +-
 lib/simplecov/result_merger.rb                     | 124 ++--
 lib/simplecov/source_file.rb                       |  61 +-
 lib/simplecov/version.rb                           |  23 +-
 metadata.yml                                       | 329 +++++------
 simplecov.gemspec                                  |  34 +-
 test/faked_project/Gemfile                         |  10 +-
 test/faked_project/Rakefile                        |   8 +-
 .../features/step_definitions/my_steps.rb          |  19 +-
 test/faked_project/features/support/env.rb         |  10 +-
 test/faked_project/lib/faked_project.rb            |   2 +-
 test/faked_project/lib/faked_project/some_class.rb |   7 +-
 test/faked_project/spec/faked_spec.rb              |   6 +-
 test/faked_project/spec/forking_spec.rb            |   7 +
 test/faked_project/spec/meta_magic_spec.rb         |  13 +-
 test/faked_project/spec/some_class_spec.rb         |   9 +-
 test/faked_project/spec/spec_helper.rb             |  12 +-
 test/faked_project/test/faked_test.rb              |   4 +-
 test/faked_project/test/meta_magic_test.rb         |   2 +-
 test/faked_project/test/some_class_test.rb         |   6 +-
 test/faked_project/test/test_helper.rb             |  14 +-
 test/fixtures/app/controllers/sample_controller.rb |   2 +-
 test/fixtures/app/models/user.rb                   |   2 +-
 test/fixtures/deleted_source_sample.rb             |   6 +-
 test/fixtures/frameworks/rspec_bad.rb              |  10 +-
 test/fixtures/frameworks/rspec_good.rb             |  10 +-
 test/fixtures/frameworks/testunit_bad.rb           |   6 +-
 test/fixtures/frameworks/testunit_good.rb          |   6 +-
 test/fixtures/resultset2.rb                        |   1 -
 test/fixtures/sample.rb                            |   2 +-
 test/fixtures/utf-8.rb                             |   2 +-
 test/helper.rb                                     |  25 +-
 test/shoulda_macros.rb                             |  10 -
 test/test_1_8_fallbacks.rb                         |  38 +-
 test/test_command_guesser.rb                       |  32 +-
 test/test_deleted_source.rb                        |  16 +-
 test/test_file_list.rb                             |  39 +-
 test/test_filters.rb                               | 134 +++--
 test/test_merge_helpers.rb                         | 159 ++---
 test/test_result.rb                                | 247 ++++----
 test/test_return_codes.rb                          |  58 +-
 test/test_source_file.rb                           | 126 ++--
 test/test_source_file_line.rb                      | 164 +++---
 95 files changed, 2569 insertions(+), 1895 deletions(-)

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



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