[DRE-commits] [bundler] 02/06: Merge tag 'upstream/1.12.1'

zeha at debian.org zeha at debian.org
Sun May 1 19:20:11 UTC 2016


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

zeha pushed a commit to branch master
in repository bundler.

commit 2a6659c401bbc5120e0da2ad97ae338e29f68d55
Merge: b4d8f8a 51b7abb
Author: Christian Hofstaedtler <zeha at debian.org>
Date:   Sun May 1 18:58:54 2016 +0000

    Merge tag 'upstream/1.12.1'
    
    Upstream version 1.12.1

 .codeclimate.yml                                   |  24 ++
 .gitignore                                         |   4 +-
 .rubocop.yml                                       |  19 +-
 .rubocop_todo.yml                                  | 162 +++++++-
 .travis.yml                                        |  11 +-
 CHANGELOG.md                                       | 118 ++++++
 DEVELOPMENT.md                                     |  18 +
 Rakefile                                           |  33 +-
 bin/rake                                           |   5 +
 bin/rspec                                          |   5 +
 bin/rubocop                                        |   8 +-
 bin/with_rubygems                                  |  39 ++
 bundler.gemspec                                    |   3 +-
 exe/bundle                                         |  12 +-
 exe/bundle_ruby                                    |   3 +-
 exe/bundler                                        |   4 +-
 lib/bundler.rb                                     | 177 +++++----
 lib/bundler/capistrano.rb                          |   1 +
 lib/bundler/cli.rb                                 |  37 +-
 lib/bundler/cli/binstubs.rb                        |   1 +
 lib/bundler/cli/cache.rb                           |   1 +
 lib/bundler/cli/check.rb                           |   7 +-
 lib/bundler/cli/clean.rb                           |   1 +
 lib/bundler/cli/common.rb                          |   1 +
 lib/bundler/cli/config.rb                          |  10 +-
 lib/bundler/cli/console.rb                         |   1 +
 lib/bundler/cli/exec.rb                            |  61 ++-
 lib/bundler/cli/gem.rb                             |  21 +-
 lib/bundler/cli/init.rb                            |   1 +
 lib/bundler/cli/inject.rb                          |   1 +
 lib/bundler/cli/install.rb                         |  28 +-
 lib/bundler/cli/lock.rb                            |   2 +
 lib/bundler/cli/open.rb                            |   1 +
 lib/bundler/cli/outdated.rb                        |  83 +++-
 lib/bundler/cli/package.rb                         |   1 +
 lib/bundler/cli/platform.rb                        |   5 +-
 lib/bundler/cli/show.rb                            |   1 +
 lib/bundler/cli/update.rb                          |  12 +-
 lib/bundler/cli/viz.rb                             |  10 +-
 lib/bundler/constants.rb                           |   1 +
 lib/bundler/current_ruby.rb                        | 202 ++--------
 lib/bundler/definition.rb                          |  67 ++--
 lib/bundler/dep_proxy.rb                           |   1 +
 lib/bundler/dependency.rb                          |  10 +
 lib/bundler/deployment.rb                          |   1 +
 lib/bundler/deprecate.rb                           |   1 +
 lib/bundler/dsl.rb                                 |  28 +-
 lib/bundler/endpoint_specification.rb              |  45 ++-
 lib/bundler/env.rb                                 |   7 +-
 lib/bundler/environment.rb                         |   3 +-
 lib/bundler/environment_preserver.rb               |  38 ++
 lib/bundler/errors.rb                              |  90 +++--
 lib/bundler/fetcher.rb                             |  78 ++--
 lib/bundler/fetcher/base.rb                        |   7 +-
 lib/bundler/fetcher/compact_index.rb               | 101 +++++
 lib/bundler/fetcher/dependency.rb                  |  72 ++--
 lib/bundler/fetcher/downloader.rb                  |  22 +-
 lib/bundler/fetcher/index.rb                       |  33 +-
 lib/bundler/friendly_errors.rb                     | 178 +++++----
 lib/bundler/gem_helper.rb                          |  41 +-
 lib/bundler/gem_helpers.rb                         |  11 +-
 lib/bundler/gem_path_manipulation.rb               |   8 -
 lib/bundler/gem_remote_fetcher.rb                  |   1 +
 lib/bundler/gem_tasks.rb                           |   1 +
 lib/bundler/graph.rb                               |  33 +-
 lib/bundler/index.rb                               |  10 +-
 lib/bundler/injector.rb                            |   1 +
 lib/bundler/inline.rb                              |  10 +-
 lib/bundler/installer.rb                           |   8 +-
 lib/bundler/installer/gem_installer.rb             |   1 +
 lib/bundler/installer/parallel_installer.rb        |   5 +-
 lib/bundler/installer/standalone.rb                |   6 +-
 lib/bundler/lazy_specification.rb                  |   7 +-
 lib/bundler/lockfile_parser.rb                     |  66 +++-
 lib/bundler/man/bundle                             |   2 +-
 lib/bundler/man/bundle-config                      |  11 +-
 lib/bundler/man/bundle-config.txt                  | 161 ++++----
 lib/bundler/man/bundle-exec                        |   2 +-
 lib/bundler/man/bundle-exec.txt                    | 108 +++---
 lib/bundler/man/bundle-gem                         |  10 +-
 lib/bundler/man/bundle-gem.txt                     |  78 ++--
 lib/bundler/man/bundle-install                     |  31 +-
 lib/bundler/man/bundle-install.txt                 | 432 ++++++++++-----------
 lib/bundler/man/bundle-lock                        |  16 +-
 lib/bundler/man/bundle-lock.txt                    |  66 ++--
 lib/bundler/man/bundle-package                     |   2 +-
 lib/bundler/man/bundle-package.txt                 |  74 ++--
 lib/bundler/man/bundle-platform                    |   2 +-
 lib/bundler/man/bundle-platform.txt                |  26 +-
 lib/bundler/man/bundle-update                      |   8 +-
 lib/bundler/man/bundle-update.txt                  | 119 +++---
 lib/bundler/man/bundle.txt                         |  82 ++--
 lib/bundler/man/gemfile.5                          |   2 +-
 lib/bundler/man/gemfile.5.txt                      | 372 +++++++++---------
 lib/bundler/match_platform.rb                      |   1 +
 lib/bundler/mirror.rb                              | 218 +++++++++++
 lib/bundler/psyched_yaml.rb                        |   1 +
 lib/bundler/remote_specification.rb                |   5 +-
 lib/bundler/resolver.rb                            |  46 ++-
 lib/bundler/retry.rb                               |   1 +
 lib/bundler/ruby_dsl.rb                            |  10 +-
 lib/bundler/ruby_version.rb                        | 122 +++---
 lib/bundler/rubygems_ext.rb                        |   9 +-
 lib/bundler/rubygems_gem_installer.rb              |   1 +
 lib/bundler/rubygems_integration.rb                |  80 ++--
 lib/bundler/runtime.rb                             |  56 +--
 lib/bundler/settings.rb                            |  38 +-
 lib/bundler/setup.rb                               |   1 +
 lib/bundler/shared_helpers.rb                      |  66 +++-
 lib/bundler/similarity_detector.rb                 |   1 +
 lib/bundler/source.rb                              |   3 +-
 lib/bundler/source/git.rb                          |   7 +-
 lib/bundler/source/git/git_proxy.rb                |  40 +-
 lib/bundler/source/path.rb                         |  42 +-
 lib/bundler/source/path/installer.rb               |   1 +
 lib/bundler/source/rubygems.rb                     |   7 +-
 lib/bundler/source/rubygems/remote.rb              |  20 +
 lib/bundler/source_list.rb                         |   1 +
 lib/bundler/spec_set.rb                            |   1 +
 lib/bundler/ssl_certs/AddTrustExternalCARoot.pem   |  32 --
 .../Class3PublicPrimaryCertificationAuthority.pem  |  14 -
 ...ntrustnetSecureServerCertificationAuthority.pem |  28 --
 lib/bundler/ssl_certs/Fastly.pem                   |  82 ++++
 lib/bundler/ssl_certs/GeoTrustGlobalCA.pem         |  20 -
 .../GlobalSignOrganizationValidationCA.pem         |  26 ++
 lib/bundler/ssl_certs/GlobalSignRoot.pem           |  18 +
 lib/bundler/ssl_certs/certificate_manager.rb       |   3 +-
 .../index.rubygems.org/GlobalSignRoot.pem          |  18 +
 .../DigiCertHighAssuranceEVRootCA.pem              |   0
 .../AddTrustExternalCARoot-2048.pem                |   0
 lib/bundler/stub_specification.rb                  |   1 +
 lib/bundler/templates/Executable                   |   1 +
 lib/bundler/templates/Gemfile                      |   1 +
 lib/bundler/templates/newgem/.travis.yml.tt        |   1 +
 lib/bundler/templates/newgem/newgem.gemspec.tt     |   4 +-
 lib/bundler/ui.rb                                  |   1 +
 lib/bundler/ui/rg_proxy.rb                         |   1 +
 lib/bundler/ui/shell.rb                            |   3 +-
 lib/bundler/ui/silent.rb                           |   1 +
 .../lib/compact_index_client.rb                    |  79 ++++
 .../lib/compact_index_client/cache.rb              |  98 +++++
 .../lib/compact_index_client/updater.rb            |  70 ++++
 .../lib/compact_index_client/version.rb            |   4 +
 lib/bundler/vendored_molinillo.rb                  |   1 +
 lib/bundler/vendored_persistent.rb                 |   1 +
 lib/bundler/vendored_thor.rb                       |   1 +
 lib/bundler/version.rb                             |   7 +-
 lib/bundler/vlad.rb                                |   1 +
 lib/bundler/worker.rb                              |  14 +-
 man/bundle-config.ronn                             |   6 +
 man/bundle-gem.ronn                                |  10 +-
 man/bundle-update.ronn                             |   5 +-
 metadata.yml                                       | 352 -----------------
 153 files changed, 3243 insertions(+), 2169 deletions(-)

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