[DRE-commits] [ruby-flexmock] branch master updated (a35a0e1 -> 58e5e2a)

Antonio Terceiro terceiro at moszumanska.debian.org
Tue Sep 15 16:44:39 UTC 2015


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

terceiro pushed a change to branch master
in repository ruby-flexmock.

      from  a35a0e1   d/copyright: updated format and years
       new  6125f99   debian/watch: point at github
      adds  126aaad   Imported Upstream version 2.0.0~rc1
       new  fb420f4   Merge tag 'upstream/2.0.0_rc1'
       new  b249760   New upstream release
       new  48f49e0   Update packaging with a new dh-make-ruby run
       new  3d67994   added debian/patches/0001-gemspec-skip-git-usage.patch
       new  ac631b5   reuse upstream rakefile for tests
       new  1bee1c0   debian/changelog: reformat/remove long lines
       new  335d360   improve debian/copyright
       new  0f33d0a   release to unstable
       new  3e66255   added debian/patches/0002-gemspec-don-t-assume-lib-exists.patc
       new  58e5e2a   mark bug being closed

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:
 .autotest                                          |   3 +
 .gitignore                                         |  14 +
 .togglerc                                          |   7 +
 .travis.yml                                        |   5 +
 .yardopts                                          |   2 +
 CHANGES                                            |  11 +
 Gemfile                                            |   5 +-
 Gemfile.lock                                       |  20 -
 README.md                                          |  50 +-
 Rakefile                                           | 223 +-------
 checksums.yaml.gz                                  | Bin 268 -> 0 bytes
 debian/changelog                                   |  30 ++
 debian/control                                     |   3 +-
 debian/copyright                                   |  28 +-
 debian/patches/0001-gemspec-skip-git-usage.patch   |  21 +
 .../0002-gemspec-don-t-assume-lib-exists.patch     |  20 +
 debian/patches/series                              |   2 +
 debian/ruby-flexmock.docs                          |   7 +-
 debian/ruby-tests.rake                             |   7 +-
 debian/rules                                       |   2 +
 debian/watch                                       |   2 +-
 doc/examples/rspec_examples_spec.rb                | 244 +++++++++
 doc/examples/rspec_examples_spec.rdoc              | 245 ---------
 doc/examples/test_unit_examples_test.rb            | 240 +++++++++
 doc/examples/test_unit_examples_test.rdoc          | 241 ---------
 doc/jamis.rb                                       | 591 +++++++++++++++++++++
 flexmock.gemspec                                   |  33 ++
 lib/flexmock.rb                                    |   1 -
 lib/flexmock/composite_expectation.rb              |   2 +-
 lib/flexmock/core.rb                               |  10 +-
 lib/flexmock/core_class_methods.rb                 |   6 +-
 lib/flexmock/default_framework_adapter.rb          |   4 +-
 lib/flexmock/expectation.rb                        |  32 +-
 lib/flexmock/expectation_director.rb               |   2 +-
 lib/{flexmock.rb => flexmock/minitest.rb}          |   4 +-
 lib/flexmock/{errors.rb => minitest_extensions.rb} |  21 +-
 lib/flexmock/minitest_integration.rb               | 111 ++++
 lib/flexmock/mock_container.rb                     |   3 +-
 lib/flexmock/partial_mock.rb                       | 165 +++---
 lib/flexmock/recorder.rb                           |   3 +-
 lib/flexmock/rspec.rb                              |   9 +-
 lib/flexmock/test_unit_integration.rb              |  14 +
 lib/flexmock/validators.rb                         |   9 +-
 lib/flexmock/version.rb                            |  10 +-
 metadata.yml                                       | 189 -------
 rakelib/metrics.rake                               |  40 ++
 rakelib/preview.rake                               |   4 +
 rakelib/tags.rake                                  |  18 +
 test/aliasing_test.rb                              |   6 +-
 test/assert_spy_called_test.rb                     |  14 +-
 test/base_class_test.rb                            |   8 +-
 test/based_partials_test.rb                        |   8 +-
 test/container_methods_test.rb                     |  18 +-
 test/default_framework_adapter_test.rb             |  20 +-
 test/demeter_mocking_test.rb                       |  14 +-
 test/deprecated_methods_test.rb                    |  22 +-
 test/examples_from_readme_test.rb                  |  10 +-
 test/expectation_description_test.rb               |   6 +-
 test/extended_should_receive_test.rb               |  16 +-
 test/flexmodel_test.rb                             |   6 +-
 test/minitest_integration/auto_test.rb             |  85 +++
 .../minitest_integration/minitest_teardown_test.rb |  13 +
 test/mock_builder_test.rb                          |  28 +-
 test/naming_test.rb                                |   8 +-
 test/new_instances_test.rb                         |  30 +-
 test/object_extensions_test.rb                     |   4 +-
 test/partial_mock_test.rb                          |  83 ++-
 test/record_mode_test.rb                           |  20 +-
 test/samples_test.rb                               |  48 +-
 test/should_ignore_missing_test.rb                 |  12 +-
 test/should_receive_test.rb                        |  84 ++-
 test/spys_test.rb                                  |  18 +-
 test/symbol_extensions_test.rb                     |   4 +-
 test/test_class_extensions.rb                      |   4 +-
 test/{test_setup.rb => test_helper.rb}             |  28 +-
 test/test_unit_integration/auto_test_unit_test.rb  |   2 +-
 .../tu_integration_test.rb                         |  14 +-
 test/undefined_test.rb                             |   4 +-
 todo.txt                                           |  20 +
 79 files changed, 2018 insertions(+), 1352 deletions(-)
 create mode 100644 .autotest
 create mode 100644 .gitignore
 create mode 100644 .togglerc
 create mode 100644 .travis.yml
 create mode 100644 .yardopts
 delete mode 100644 Gemfile.lock
 delete mode 100644 checksums.yaml.gz
 create mode 100644 debian/patches/0001-gemspec-skip-git-usage.patch
 create mode 100644 debian/patches/0002-gemspec-don-t-assume-lib-exists.patch
 create mode 100644 debian/patches/series
 mode change 100644 => 120000 debian/ruby-tests.rake
 create mode 100644 doc/examples/rspec_examples_spec.rb
 delete mode 100644 doc/examples/rspec_examples_spec.rdoc
 create mode 100644 doc/examples/test_unit_examples_test.rb
 delete mode 100644 doc/examples/test_unit_examples_test.rdoc
 create mode 100644 doc/jamis.rb
 create mode 100644 flexmock.gemspec
 copy lib/{flexmock.rb => flexmock/minitest.rb} (78%)
 mode change 100644 => 100755
 copy lib/flexmock/{errors.rb => minitest_extensions.rb} (53%)
 create mode 100755 lib/flexmock/minitest_integration.rb
 delete mode 100644 metadata.yml
 create mode 100644 rakelib/metrics.rake
 create mode 100644 rakelib/preview.rake
 create mode 100644 rakelib/tags.rake
 create mode 100755 test/minitest_integration/auto_test.rb
 create mode 100644 test/minitest_integration/minitest_teardown_test.rb
 rename test/{test_setup.rb => test_helper.rb} (80%)
 rename test/{ => test_unit_integration}/tu_integration_test.rb (91%)
 create mode 100644 todo.txt

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



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