[DRE-commits] [ruby-simplecov] branch master updated (6428ede -> cad3bc1)

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

      from  6428ede   Prepare changelog
      adds  411a1fa   Imported Upstream version 0.10.0
       new  fa24087   Merge tag 'upstream/0.10.0'
       new  87d12aa   New upstream release
       new  83a6ef8   Refresh patches
       new  d4a9f3c   Update packaging with a new dh-make-ruby run
       new  aa7dd93   don't try using simplecov-html at all
       new  f318aca   debian/control: Build-Depends: ruby-minitest
       new  cd5d3d4   add debian/patches/skip-broken-test.patch
       new  9db7a73   release to unstable
       new  b5dbab8   debian/control: Build-Depends: ruby-rspec
       new  cb0e317   drop dependency on simplecov-html
       new  cad3bc1   add debian/patches/fix-test-suite.patch

The 11 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:
 .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 +-
 debian/changelog                                   |  15 +
 debian/compat                                      |   2 +-
 debian/control                                     |  23 +-
 debian/patches/fix-test-suite.patch                |  53 ++
 debian/patches/ignore-simplecov-html               |  63 +-
 debian/patches/remove-rubygems-bundler.patch       |  25 +-
 debian/patches/series                              |   3 +-
 debian/patches/skip-broken-test.patch              |  17 +
 debian/ruby-simplecov.docs                         |   3 +-
 debian/rules                                       |  13 +-
 debian/source/local-options                        |   1 -
 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 +++---
 106 files changed, 2726 insertions(+), 1956 deletions(-)
 create mode 100644 .rspec
 create mode 100644 .rubocop.yml
 delete mode 100644 Appraisals
 rename LICENSE => MIT-LICENSE (95%)
 create mode 100644 debian/patches/fix-test-suite.patch
 create mode 100644 debian/patches/skip-broken-test.patch
 delete mode 100644 debian/source/local-options
 create mode 100644 doc/alternate-formatters.md
 create mode 100644 doc/commercial-services.md
 create mode 100644 doc/editor-integration.md
 delete mode 100644 features/config_adapters.feature
 create mode 100644 features/config_profiles.feature
 delete mode 100644 gemfiles/multi_json-legacy.gemfile
 delete mode 100644 gemfiles/multi_json-new.gemfile
 delete mode 100644 lib/simplecov/adapters.rb
 create mode 100644 lib/simplecov/jruby_fix.rb
 delete mode 100644 lib/simplecov/json.rb
 create mode 100644 lib/simplecov/no_defaults.rb
 create mode 100644 lib/simplecov/profiles.rb
 create mode 100644 test/faked_project/spec/forking_spec.rb

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