[DRE-commits] [bundler] 01/03: Merge tag 'upstream/1.13.1'

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 commit to branch master
in repository bundler.

commit 8e3e04d5c80fe5f51a21b47e2a4f5b308e7a98e5
Merge: 67770e7 666ba24
Author: Praveen Arimbrathodiyil <praveen at debian.org>
Date:   Sun Sep 18 18:16:31 2016 +0530

    Merge tag 'upstream/1.13.1'
    
    Upstream version 1.13.1
    
    # gpg: Signature made Sunday 18 September 2016 06:16:30 PM IST using RSA key ID CE1F9C674512C22A
    # gpg: Good signature from "Praveen Arimbrathodiyil (piratepin) <praveen at debian.org>" [ultimate]
    # gpg:                 aka "Pirate Praveen (pirates.org.in) <praveen at onenetbeyond.org>" [ultimate]
    # gpg:                 aka "Pirate Praveen (piratesin) <me at j4v4m4n.in>" [ultimate]
    # gpg:                 aka "Pirate Praveen (PP) <praveen at privacyrequired.com>" [ultimate]
    # gpg:                 aka "Praveen Arimbrathodiyil (j4v4m4n) <pravi.a at gmail.com>" [ultimate]

 .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 +-
 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 +++--
 143 files changed, 4157 insertions(+), 1884 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