[DRE-commits] [bundler] branch master updated (24c6006 -> 05ab177)

Lucas Nussbaum lucas at moszumanska.debian.org
Mon Jul 3 20:19:29 UTC 2017


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

lucas pushed a change to branch master
in repository bundler.

      from  24c6006   Update changelog for 1.13.6-2 release
       new  02d2f06   New upstream version 1.15.1
       new  b4b000f   Refresh patches
       new  377d630   Refresh packaging using dh-make-ruby
       new  2e4810a   Update list of manpages
       new  d2d20c5   Make the dependency on ruby-thor stricter
       new  c71cbd6   Improve devendorization of Net::HTTP::Persistent
       new  05ab177   Prepare 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:
 .gitignore                                         |    2 +
 .rubocop.yml                                       |    5 +-
 .rubocop_todo.yml                                  |  238 +++-
 .travis.yml                                        |   50 +-
 CHANGELOG.md                                       |  243 +++-
 CODE_OF_CONDUCT.md                                 |    2 +-
 CONTRIBUTING.md                                    |   39 +-
 DEVELOPMENT.md                                     |  148 ---
 README.md                                          |   22 +-
 Rakefile                                           |   61 +-
 bin/rubocop                                        |    2 +-
 bundler.gemspec                                    |   19 +-
 debian/bundler.docs                                |    1 -
 debian/changelog                                   |   15 +
 debian/control                                     |    7 +-
 debian/patches/0004-Fix-typo-in-manpages.patch     |   26 -
 debian/patches/do-not-add-system-path-to-RUBYLIB   |    8 +-
 debian/patches/no-git-in-gemspec                   |    4 +-
 debian/patches/series                              |    1 -
 debian/patches/unvendorize                         |   48 +-
 debian/ruby-bundler.manpages                       |   13 +-
 debian/rules                                       |    1 +
 debian/watch                                       |    3 +-
 doc/README.md                                      |   30 +
 doc/TROUBLESHOOTING.md                             |   64 +
 doc/contributing/BUG_TRIAGE.md                     |   36 +
 doc/contributing/COMMUNITY.md                      |   13 +
 doc/contributing/GETTING_HELP.md                   |   11 +
 doc/contributing/HOW_YOU_CAN_HELP.md               |   27 +
 ISSUES.md => doc/contributing/ISSUES.md            |   61 +-
 doc/contributing/README.md                         |   38 +
 doc/development/NEW_FEATURES.md                    |   10 +
 doc/development/PULL_REQUESTS.md                   |   40 +
 doc/development/README.md                          |   19 +
 doc/development/RELEASING.md                       |    9 +
 doc/development/SETUP.md                           |   29 +
 doc/documentation/README.md                        |   29 +
 doc/documentation/VISION.md                        |   26 +
 doc/documentation/WRITING.md                       |   54 +
 exe/bundle                                         |   15 +-
 lib/bundler.rb                                     |  102 +-
 lib/bundler/cli.rb                                 |  190 ++-
 lib/bundler/cli/add.rb                             |   26 +
 lib/bundler/cli/binstubs.rb                        |    2 +-
 lib/bundler/cli/cache.rb                           |    2 +-
 lib/bundler/cli/check.rb                           |    4 +-
 lib/bundler/cli/clean.rb                           |    2 +-
 lib/bundler/cli/common.rb                          |   37 +
 lib/bundler/cli/config.rb                          |   30 +-
 lib/bundler/cli/doctor.rb                          |   36 +-
 lib/bundler/cli/exec.rb                            |    6 +
 lib/bundler/cli/gem.rb                             |   59 +-
 lib/bundler/cli/info.rb                            |   51 +
 lib/bundler/cli/init.rb                            |    4 +-
 lib/bundler/cli/inject.rb                          |   16 +-
 lib/bundler/cli/install.rb                         |   36 +-
 lib/bundler/cli/issue.rb                           |   40 +
 lib/bundler/cli/lock.rb                            |   16 +-
 lib/bundler/cli/open.rb                            |    3 +-
 lib/bundler/cli/outdated.rb                        |  220 +++-
 lib/bundler/cli/platform.rb                        |    2 +-
 lib/bundler/cli/pristine.rb                        |   33 +
 lib/bundler/cli/show.rb                            |    3 +-
 lib/bundler/cli/update.rb                          |   40 +-
 lib/bundler/cli/viz.rb                             |    2 +-
 lib/bundler/compact_index_client.rb                |  108 ++
 lib/bundler/compact_index_client/cache.rb          |  119 ++
 lib/bundler/compact_index_client/updater.rb        |   88 ++
 lib/bundler/current_ruby.rb                        |    7 +-
 lib/bundler/definition.rb                          |  256 ++--
 lib/bundler/dependency.rb                          |   14 +-
 lib/bundler/dsl.rb                                 |   13 +-
 lib/bundler/endpoint_specification.rb              |    5 +-
 lib/bundler/env.rb                                 |   57 +-
 lib/bundler/errors.rb                              |   23 +
 lib/bundler/feature_flag.rb                        |   32 +
 lib/bundler/fetcher.rb                             |    4 +-
 lib/bundler/fetcher/compact_index.rb               |   21 +-
 lib/bundler/fetcher/dependency.rb                  |    2 +-
 lib/bundler/fetcher/downloader.rb                  |   16 +-
 lib/bundler/friendly_errors.rb                     |   35 +-
 lib/bundler/gem_helper.rb                          |    7 +-
 lib/bundler/gem_helpers.rb                         |   70 +-
 lib/bundler/gemdeps.rb                             |   28 +
 lib/bundler/index.rb                               |   27 +-
 lib/bundler/injector.rb                            |   43 +-
 lib/bundler/inline.rb                              |    8 +-
 lib/bundler/installer.rb                           |    7 +-
 lib/bundler/installer/gem_installer.rb             |    6 +-
 lib/bundler/installer/parallel_installer.rb        |   69 +-
 lib/bundler/lazy_specification.rb                  |   33 +-
 lib/bundler/lockfile_parser.rb                     |   79 +-
 lib/bundler/match_platform.rb                      |   15 +-
 lib/bundler/mirror.rb                              |    2 +
 lib/bundler/plugin.rb                              |   12 +-
 lib/bundler/plugin/api.rb                          |    3 +-
 lib/bundler/plugin/api/source.rb                   |   10 +-
 lib/bundler/plugin/index.rb                        |    2 +
 lib/bundler/postit_trampoline.rb                   |   19 +-
 lib/bundler/remote_specification.rb                |   22 +-
 lib/bundler/resolver.rb                            |  142 ++-
 lib/bundler/retry.rb                               |    5 +-
 lib/bundler/ruby_version.rb                        |   11 +-
 lib/bundler/rubygems_ext.rb                        |   22 +-
 lib/bundler/rubygems_gem_installer.rb              |   60 +
 lib/bundler/rubygems_integration.rb                |  160 ++-
 lib/bundler/runtime.rb                             |   43 +-
 lib/bundler/settings.rb                            |   45 +-
 lib/bundler/setup.rb                               |    4 +-
 lib/bundler/shared_helpers.rb                      |   74 +-
 lib/bundler/source.rb                              |   23 +-
 lib/bundler/source/git.rb                          |   36 +-
 lib/bundler/source/git/git_proxy.rb                |   12 +-
 lib/bundler/source/path.rb                         |   44 +-
 lib/bundler/source/path/installer.rb               |    4 +-
 lib/bundler/source/rubygems.rb                     |   20 +-
 lib/bundler/source/rubygems/remote.rb              |    4 +
 lib/bundler/spec_set.rb                            |   85 +-
 lib/bundler/stub_specification.rb                  |   87 +-
 lib/bundler/templates/Executable                   |    2 +-
 lib/bundler/templates/Executable.standalone        |   10 +-
 lib/bundler/templates/newgem/Gemfile.tt            |    4 +-
 lib/bundler/templates/newgem/LICENSE.txt.tt        |    2 +-
 lib/bundler/templates/newgem/README.md.tt          |   20 +-
 lib/bundler/templates/newgem/Rakefile.tt           |   10 +-
 lib/bundler/templates/newgem/bin/console.tt        |    2 +-
 .../templates/newgem/ext/newgem/newgem.c.tt        |    8 +-
 .../templates/newgem/ext/newgem/newgem.h.tt        |    6 +-
 lib/bundler/templates/newgem/gitignore.tt          |    5 +
 lib/bundler/templates/newgem/lib/newgem.rb.tt      |   12 +-
 .../templates/newgem/lib/newgem/version.rb.tt      |    8 +-
 lib/bundler/templates/newgem/newgem.gemspec.tt     |   18 +-
 .../templates/newgem/test/newgem_test.rb.tt        |    2 +-
 .../templates/newgem/test/test_helper.rb.tt        |    6 +-
 lib/bundler/ui/shell.rb                            |   19 +-
 lib/bundler/ui/silent.rb                           |   21 +-
 .../lib/compact_index_client.rb                    |   79 --
 .../lib/compact_index_client/cache.rb              |  112 --
 .../lib/compact_index_client/updater.rb            |   80 --
 .../lib/compact_index_client/version.rb            |    4 -
 .../net-http-persistent/lib/net/http/faster.rb     |   27 +
 .../net-http-persistent/lib/net/http/persistent.rb | 1231 ++++++++++++++++++++
 .../lib/net/http/persistent/ssl_reuse.rb           |  129 ++
 lib/bundler/vendored_persistent.rb                 |   13 +-
 lib/bundler/vendored_thor.rb                       |    7 +-
 lib/bundler/version.rb                             |   15 +-
 lib/bundler/version_ranges.rb                      |   75 ++
 lib/bundler/worker.rb                              |   35 +-
 lib/bundler/yaml_serializer.rb                     |    2 +-
 man/bundle-add.1                                   |   43 +
 man/bundle-add.1.txt                               |   40 +
 man/bundle-add.ronn                                |   29 +
 man/bundle-binstubs.1                              |   30 +
 man/bundle-binstubs.1.txt                          |   33 +
 man/bundle-check.1                                 |   31 +
 man/bundle-check.1.txt                             |   32 +
 man/bundle-check.ronn                              |   26 +
 man/bundle-clean.1                                 |   24 +
 man/bundle-clean.1.txt                             |   26 +
 man/bundle-clean.ronn                              |   18 +
 man/bundle-config.1                                |  397 +++++++
 man/bundle-config.1.txt                            |  418 +++++++
 man/bundle-config.ronn                             |  101 +-
 man/bundle-exec.1                                  |  162 +++
 man/bundle-exec.1.txt                              |  171 +++
 man/bundle-gem.1                                   |   80 ++
 man/bundle-gem.1.txt                               |   90 ++
 man/bundle-info.1                                  |   20 +
 man/bundle-info.1.txt                              |   21 +
 man/bundle-info.ronn                               |   17 +
 man/bundle-init.1                                  |   20 +
 man/bundle-init.1.txt                              |   24 +
 man/bundle-init.ronn                               |   18 +
 man/bundle-inject.1                                |   33 +
 man/bundle-inject.1.txt                            |   32 +
 man/bundle-inject.ronn                             |   22 +
 man/bundle-install.1                               |  305 +++++
 man/bundle-install.1.txt                           |  385 ++++++
 man/bundle-install.ronn                            |    2 +-
 man/bundle-lock.1                                  |   84 ++
 man/bundle-lock.1.txt                              |   93 ++
 man/bundle-lock.ronn                               |   47 +
 man/bundle-open.1                                  |   32 +
 man/bundle-open.1.txt                              |   29 +
 man/bundle-open.ronn                               |   19 +
 man/bundle-outdated.1                              |  151 +++
 man/bundle-outdated.1.txt                          |  127 ++
 man/bundle-outdated.ronn                           |  107 ++
 man/bundle-package.1                               |   52 +
 man/bundle-package.1.txt                           |   74 ++
 man/bundle-platform.1                              |   61 +
 man/bundle-platform.1.txt                          |   57 +
 man/bundle-pristine.1                              |   16 +
 man/bundle-pristine.1.txt                          |   21 +
 man/bundle-pristine.ronn                           |   13 +
 man/bundle-show.1                                  |   23 +
 man/bundle-show.1.txt                              |   25 +
 man/bundle-show.ronn                               |   20 +
 man/bundle-update.1                                |  390 +++++++
 man/bundle-update.1.txt                            |  388 ++++++
 man/bundle-update.ronn                             |  158 ++-
 man/bundle-viz.1                                   |   39 +
 man/bundle-viz.1.txt                               |   37 +
 man/bundle-viz.ronn                                |   30 +
 man/bundle.1                                       |  137 +++
 man/bundle.1.txt                                   |  128 ++
 man/bundle.ronn                                    |   42 +-
 man/gemfile.5                                      |  653 +++++++++++
 man/gemfile.5.ronn                                 |   72 +-
 man/gemfile.5.txt                                  |  600 ++++++++++
 man/index.txt                                      |    7 +
 task/release.rake                                  |  116 ++
 212 files changed, 11584 insertions(+), 1452 deletions(-)
 delete mode 100644 DEVELOPMENT.md
 create mode 100644 doc/README.md
 create mode 100644 doc/TROUBLESHOOTING.md
 create mode 100644 doc/contributing/BUG_TRIAGE.md
 create mode 100644 doc/contributing/COMMUNITY.md
 create mode 100644 doc/contributing/GETTING_HELP.md
 create mode 100644 doc/contributing/HOW_YOU_CAN_HELP.md
 rename ISSUES.md => doc/contributing/ISSUES.md (57%)
 create mode 100644 doc/contributing/README.md
 create mode 100644 doc/development/NEW_FEATURES.md
 create mode 100644 doc/development/PULL_REQUESTS.md
 create mode 100644 doc/development/README.md
 create mode 100644 doc/development/RELEASING.md
 create mode 100644 doc/development/SETUP.md
 create mode 100644 doc/documentation/README.md
 create mode 100644 doc/documentation/VISION.md
 create mode 100644 doc/documentation/WRITING.md
 create mode 100644 lib/bundler/cli/add.rb
 create mode 100644 lib/bundler/cli/info.rb
 create mode 100644 lib/bundler/cli/issue.rb
 create mode 100644 lib/bundler/cli/pristine.rb
 create mode 100644 lib/bundler/compact_index_client.rb
 create mode 100644 lib/bundler/compact_index_client/cache.rb
 create mode 100644 lib/bundler/compact_index_client/updater.rb
 create mode 100644 lib/bundler/feature_flag.rb
 create mode 100644 lib/bundler/gemdeps.rb
 delete mode 100644 lib/bundler/vendor/compact_index_client/lib/compact_index_client.rb
 delete mode 100644 lib/bundler/vendor/compact_index_client/lib/compact_index_client/cache.rb
 delete mode 100644 lib/bundler/vendor/compact_index_client/lib/compact_index_client/updater.rb
 delete mode 100644 lib/bundler/vendor/compact_index_client/lib/compact_index_client/version.rb
 create mode 100644 lib/bundler/vendor/net-http-persistent/lib/net/http/faster.rb
 create mode 100644 lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb
 create mode 100644 lib/bundler/vendor/net-http-persistent/lib/net/http/persistent/ssl_reuse.rb
 create mode 100644 lib/bundler/version_ranges.rb
 create mode 100644 man/bundle-add.1
 create mode 100644 man/bundle-add.1.txt
 create mode 100644 man/bundle-add.ronn
 create mode 100644 man/bundle-binstubs.1
 create mode 100644 man/bundle-binstubs.1.txt
 create mode 100644 man/bundle-check.1
 create mode 100644 man/bundle-check.1.txt
 create mode 100644 man/bundle-check.ronn
 create mode 100644 man/bundle-clean.1
 create mode 100644 man/bundle-clean.1.txt
 create mode 100644 man/bundle-clean.ronn
 create mode 100644 man/bundle-config.1
 create mode 100644 man/bundle-config.1.txt
 create mode 100644 man/bundle-exec.1
 create mode 100644 man/bundle-exec.1.txt
 create mode 100644 man/bundle-gem.1
 create mode 100644 man/bundle-gem.1.txt
 create mode 100644 man/bundle-info.1
 create mode 100644 man/bundle-info.1.txt
 create mode 100644 man/bundle-info.ronn
 create mode 100644 man/bundle-init.1
 create mode 100644 man/bundle-init.1.txt
 create mode 100644 man/bundle-init.ronn
 create mode 100644 man/bundle-inject.1
 create mode 100644 man/bundle-inject.1.txt
 create mode 100644 man/bundle-inject.ronn
 create mode 100644 man/bundle-install.1
 create mode 100644 man/bundle-install.1.txt
 create mode 100644 man/bundle-lock.1
 create mode 100644 man/bundle-lock.1.txt
 create mode 100644 man/bundle-open.1
 create mode 100644 man/bundle-open.1.txt
 create mode 100644 man/bundle-open.ronn
 create mode 100644 man/bundle-outdated.1
 create mode 100644 man/bundle-outdated.1.txt
 create mode 100644 man/bundle-outdated.ronn
 create mode 100644 man/bundle-package.1
 create mode 100644 man/bundle-package.1.txt
 create mode 100644 man/bundle-platform.1
 create mode 100644 man/bundle-platform.1.txt
 create mode 100644 man/bundle-pristine.1
 create mode 100644 man/bundle-pristine.1.txt
 create mode 100644 man/bundle-pristine.ronn
 create mode 100644 man/bundle-show.1
 create mode 100644 man/bundle-show.1.txt
 create mode 100644 man/bundle-show.ronn
 create mode 100644 man/bundle-update.1
 create mode 100644 man/bundle-update.1.txt
 create mode 100644 man/bundle-viz.1
 create mode 100644 man/bundle-viz.1.txt
 create mode 100644 man/bundle-viz.ronn
 create mode 100644 man/bundle.1
 create mode 100644 man/bundle.1.txt
 create mode 100644 man/gemfile.5
 create mode 100644 man/gemfile.5.txt
 create mode 100644 task/release.rake

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



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