[DRE-commits] [bundler] branch master updated (67770e7 -> d46c4cb)

Praveen Arimbrathodiyil praveen at moszumanska.debian.org
Sun Sep 18 15:03:03 UTC 2016


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

praveen pushed a change to branch master
in repository bundler.

      from  67770e7   Update changelog for 1.12.5-3 release
      adds  666ba24   New upstream version 1.13.1
       new  8e3e04d   Merge tag 'upstream/1.13.1'
       new  b4b3e54   update changelog
       new  d46c4cb   refresh patches

The 3 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:
 .codeclimate.yml                                   |   1 +
 .rubocop.yml                                       |   8 +
 .rubocop_todo.yml                                  |  56 ++--
 .travis.yml                                        |  10 +-
 CHANGELOG.md                                       | 102 +++++++
 CONTRIBUTING.md                                    |  14 +-
 DEVELOPMENT.md                                     |  52 ++--
 ISSUES.md                                          |  48 ++--
 Rakefile                                           |  45 +++-
 bin/rake                                           |   2 +-
 bin/rspec                                          |   2 +-
 bin/rubocop                                        |   4 +-
 bundler.gemspec                                    |   8 +-
 debian/changelog                                   |   7 +
 .../0002-Mark-molinillo-methods-as-public.patch    |  30 ---
 debian/patches/do-not-add-system-path-to-RUBYLIB   |   8 +-
 debian/patches/no-git-in-gemspec                   |   6 +-
 debian/patches/series                              |   1 -
 exe/bundle                                         |   7 +
 exe/bundle_ruby                                    |   6 +-
 exe/bundler                                        |  20 +-
 lib/bundler.rb                                     | 102 ++++---
 lib/bundler/capistrano.rb                          |   2 +-
 lib/bundler/cli.rb                                 |  98 +++++--
 lib/bundler/cli/binstubs.rb                        |   7 +-
 lib/bundler/cli/console.rb                         |   3 +
 lib/bundler/cli/doctor.rb                          |  95 +++++++
 lib/bundler/cli/exec.rb                            |  22 +-
 lib/bundler/cli/gem.rb                             |   2 +-
 lib/bundler/cli/inject.rb                          |  32 ++-
 lib/bundler/cli/install.rb                         | 170 +++++++-----
 lib/bundler/cli/lock.rb                            |  17 ++
 lib/bundler/cli/open.rb                            |   4 +-
 lib/bundler/cli/outdated.rb                        |  16 +-
 lib/bundler/cli/plugin.rb                          |  23 ++
 lib/bundler/cli/update.rb                          |  13 +-
 lib/bundler/cli/viz.rb                             |   3 +
 lib/bundler/definition.rb                          | 228 ++++++++++++----
 lib/bundler/deployment.rb                          |   6 +
 lib/bundler/deprecate.rb                           |  16 ++
 lib/bundler/dsl.rb                                 | 111 ++++++--
 lib/bundler/endpoint_specification.rb              |   4 +-
 lib/bundler/env.rb                                 |   6 +-
 lib/bundler/environment.rb                         |  42 ---
 lib/bundler/environment_preserver.rb               |   2 +-
 lib/bundler/errors.rb                              |  26 +-
 lib/bundler/fetcher.rb                             |  12 +-
 lib/bundler/fetcher/base.rb                        |  10 +
 lib/bundler/fetcher/compact_index.rb               |  40 ++-
 lib/bundler/fetcher/dependency.rb                  |  25 +-
 lib/bundler/fetcher/downloader.rb                  |   4 +-
 lib/bundler/friendly_errors.rb                     |   8 +-
 lib/bundler/gem_helper.rb                          |   4 +-
 lib/bundler/gem_version_promoter.rb                | 175 ++++++++++++
 lib/bundler/graph.rb                               |  29 +-
 lib/bundler/index.rb                               |  73 ++---
 lib/bundler/injector.rb                            |  17 +-
 lib/bundler/inline.rb                              |  22 +-
 lib/bundler/installer.rb                           |  54 +++-
 lib/bundler/installer/gem_installer.rb             |  28 +-
 lib/bundler/installer/parallel_installer.rb        | 220 +++++++++-------
 lib/bundler/installer/standalone.rb                |   2 +-
 lib/bundler/lazy_specification.rb                  |  10 +-
 lib/bundler/lockfile_parser.rb                     |  42 +--
 lib/bundler/man/bundle                             |  23 +-
 lib/bundler/man/bundle-binstubs                    |  30 +++
 lib/bundler/man/bundle-binstubs.txt                |  33 +++
 lib/bundler/man/bundle-config                      |  24 +-
 lib/bundler/man/bundle-config.txt                  | 147 +++++++----
 lib/bundler/man/bundle-exec                        |   2 +-
 lib/bundler/man/bundle-exec.txt                    |   2 +-
 lib/bundler/man/bundle-gem                         |   2 +-
 lib/bundler/man/bundle-gem.txt                     |   2 +-
 lib/bundler/man/bundle-install                     |  57 ++--
 lib/bundler/man/bundle-install.txt                 | 204 +++++++-------
 lib/bundler/man/bundle-lock                        |   2 +-
 lib/bundler/man/bundle-lock.txt                    |   2 +-
 lib/bundler/man/bundle-package                     |  12 +-
 lib/bundler/man/bundle-package.txt                 |  47 ++--
 lib/bundler/man/bundle-platform                    |   4 +-
 lib/bundler/man/bundle-platform.txt                |   6 +-
 lib/bundler/man/bundle-update                      |   8 +-
 lib/bundler/man/bundle-update.txt                  |  25 +-
 lib/bundler/man/bundle.txt                         |  20 +-
 lib/bundler/man/gemfile.5                          |  59 +++--
 lib/bundler/man/gemfile.5.txt                      | 234 ++++++++--------
 lib/bundler/mirror.rb                              |  12 +-
 lib/bundler/plugin.rb                              | 278 +++++++++++++++++++
 lib/bundler/plugin/api.rb                          |  80 ++++++
 lib/bundler/plugin/api/source.rb                   | 293 +++++++++++++++++++++
 lib/bundler/plugin/dsl.rb                          |  53 ++++
 lib/bundler/plugin/index.rb                        | 155 +++++++++++
 lib/bundler/plugin/installer.rb                    |  95 +++++++
 lib/bundler/plugin/installer/git.rb                |  38 +++
 lib/bundler/plugin/installer/rubygems.rb           |  27 ++
 lib/bundler/plugin/source_list.rb                  |  28 ++
 lib/bundler/postit_trampoline.rb                   |  68 +++++
 lib/bundler/psyched_yaml.rb                        |   2 +-
 lib/bundler/remote_specification.rb                |  10 +-
 lib/bundler/resolver.rb                            |  90 ++++---
 lib/bundler/retry.rb                               |   3 +-
 lib/bundler/ruby_version.rb                        |  34 ++-
 lib/bundler/rubygems_ext.rb                        |  27 +-
 lib/bundler/rubygems_gem_installer.rb              |   6 +
 lib/bundler/rubygems_integration.rb                | 191 ++++++++------
 lib/bundler/runtime.rb                             |  38 +--
 lib/bundler/settings.rb                            | 101 +++++--
 lib/bundler/setup.rb                               |  10 +-
 lib/bundler/shared_helpers.rb                      |  42 ++-
 lib/bundler/source.rb                              |   7 +-
 lib/bundler/source/gemspec.rb                      |  17 ++
 lib/bundler/source/git.rb                          |  22 +-
 lib/bundler/source/git/git_proxy.rb                |  50 +++-
 lib/bundler/source/path.rb                         |  41 +--
 lib/bundler/source/path/installer.rb               |  50 +++-
 lib/bundler/source/rubygems.rb                     |  45 ++--
 lib/bundler/source_list.rb                         |  42 ++-
 lib/bundler/spec_set.rb                            |   8 +-
 lib/bundler/ssl_certs/Fastly.pem                   |  82 ------
 .../GlobalSignOrganizationValidationCA.pem         |  26 --
 lib/bundler/ssl_certs/GlobalSignRoot.pem           |  18 --
 .../index.rubygems.org/GlobalSignRoot.pem          |  18 --
 .../index.rubygems.org/GlobalSignRootCA.pem        |  21 ++
 ...lCARoot-2048.pem => AddTrustExternalCARoot.pem} |   0
 lib/bundler/templates/Executable.standalone        |   6 +-
 lib/bundler/templates/Gemfile                      |   1 -
 lib/bundler/templates/newgem/CODE_OF_CONDUCT.md.tt |  83 ++++--
 lib/bundler/templates/newgem/newgem.gemspec.tt     |   7 +-
 .../templates/newgem/spec/newgem_spec.rb.tt        |   6 +-
 .../templates/newgem/spec/spec_helper.rb.tt        |   4 +-
 lib/bundler/ui/shell.rb                            |  30 ++-
 lib/bundler/ui/silent.rb                           |   4 +
 lib/bundler/uri_credentials_filter.rb              |  36 +++
 .../lib/compact_index_client.rb                    |  79 ------
 .../lib/compact_index_client/cache.rb              |  98 -------
 .../lib/compact_index_client/updater.rb            |  80 ------
 .../lib/compact_index_client/version.rb            |   4 -
 lib/bundler/version.rb                             |   2 +-
 lib/bundler/vlad.rb                                |   2 +-
 lib/bundler/yaml_serializer.rb                     |  90 +++++++
 man/bundle-binstubs.ronn                           |  29 ++
 man/bundle-config.ronn                             |  32 +++
 man/bundle-install.ronn                            |  62 ++---
 man/bundle-package.ronn                            |  15 +-
 man/bundle-platform.ronn                           |   2 +-
 man/bundle-update.ronn                             |   7 +-
 man/bundle.ronn                                    |  17 +-
 man/gemfile.5.ronn                                 |  62 +++--
 148 files changed, 4168 insertions(+), 1925 deletions(-)
 delete mode 100644 debian/patches/0002-Mark-molinillo-methods-as-public.patch
 create mode 100644 lib/bundler/cli/doctor.rb
 create mode 100644 lib/bundler/cli/plugin.rb
 delete mode 100644 lib/bundler/environment.rb
 create mode 100644 lib/bundler/gem_version_promoter.rb
 create mode 100644 lib/bundler/man/bundle-binstubs
 create mode 100644 lib/bundler/man/bundle-binstubs.txt
 create mode 100644 lib/bundler/plugin.rb
 create mode 100644 lib/bundler/plugin/api.rb
 create mode 100644 lib/bundler/plugin/api/source.rb
 create mode 100644 lib/bundler/plugin/dsl.rb
 create mode 100644 lib/bundler/plugin/index.rb
 create mode 100644 lib/bundler/plugin/installer.rb
 create mode 100644 lib/bundler/plugin/installer/git.rb
 create mode 100644 lib/bundler/plugin/installer/rubygems.rb
 create mode 100644 lib/bundler/plugin/source_list.rb
 create mode 100644 lib/bundler/postit_trampoline.rb
 create mode 100644 lib/bundler/source/gemspec.rb
 delete mode 100644 lib/bundler/ssl_certs/Fastly.pem
 delete mode 100644 lib/bundler/ssl_certs/GlobalSignOrganizationValidationCA.pem
 delete mode 100644 lib/bundler/ssl_certs/GlobalSignRoot.pem
 delete mode 100644 lib/bundler/ssl_certs/index.rubygems.org/GlobalSignRoot.pem
 create mode 100644 lib/bundler/ssl_certs/index.rubygems.org/GlobalSignRootCA.pem
 rename lib/bundler/ssl_certs/rubygems.org/{AddTrustExternalCARoot-2048.pem => AddTrustExternalCARoot.pem} (100%)
 create mode 100644 lib/bundler/uri_credentials_filter.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/yaml_serializer.rb
 create mode 100644 man/bundle-binstubs.ronn

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