[DRE-commits] [bundler] 01/08: Merge tag 'upstream/1.9.9'

zeha at debian.org zeha at debian.org
Tue May 26 00:07:55 UTC 2015


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

zeha pushed a commit to branch master
in repository bundler.

commit ded73a788fe4874342e7e9cbf0f3cccb6935c6d2
Merge: b30959e ffdb1c4
Author: Christian Hofstaedtler <zeha at debian.org>
Date:   Tue May 26 01:07:58 2015 +0200

    Merge tag 'upstream/1.9.9'
    
    Upstream version 1.9.9

 .gitignore                                         |   19 +-
 .rspec                                             |    1 +
 .travis.yml                                        |   42 +-
 CHANGELOG.md                                       |  322 ++++-
 CODE_OF_CONDUCT.md                                 |   40 +
 CONTRIBUTING.md                                    |   26 +-
 DEVELOPMENT.md                                     |    6 +-
 ISSUES.md                                          |    2 +-
 README.md                                          |   24 +-
 Rakefile                                           |   92 +-
 bin/bundle                                         |    2 +-
 bundler.gemspec                                    |   41 +-
 lib/bundler.rb                                     |   38 +-
 lib/bundler/anonymizable_uri.rb                    |   32 +
 lib/bundler/cli.rb                                 |  167 ++-
 lib/bundler/cli/cache.rb                           |    1 +
 lib/bundler/cli/clean.rb                           |   15 +-
 lib/bundler/cli/common.rb                          |    2 +
 lib/bundler/cli/console.rb                         |   48 +-
 lib/bundler/cli/exec.rb                            |   51 +-
 lib/bundler/cli/gem.rb                             |  197 ++-
 lib/bundler/cli/install.rb                         |   34 +-
 lib/bundler/cli/outdated.rb                        |    2 +-
 lib/bundler/cli/package.rb                         |    9 +-
 lib/bundler/cli/show.rb                            |   32 +-
 lib/bundler/cli/update.rb                          |    4 +-
 lib/bundler/cli/viz.rb                             |    2 +-
 lib/bundler/current_ruby.rb                        |   60 +
 lib/bundler/definition.rb                          |   94 +-
 lib/bundler/dep_proxy.rb                           |    4 +-
 lib/bundler/dependency.rb                          |   15 +-
 lib/bundler/dsl.rb                                 |   47 +-
 lib/bundler/endpoint_specification.rb              |    2 +-
 lib/bundler/env.rb                                 |   69 +-
 lib/bundler/fetcher.rb                             |  119 +-
 lib/bundler/friendly_errors.rb                     |   53 +-
 lib/bundler/gem_helper.rb                          |   35 +-
 lib/bundler/gem_helpers.rb                         |    2 +
 lib/bundler/graph.rb                               |    5 +-
 lib/bundler/index.rb                               |   44 +-
 lib/bundler/installer.rb                           |   49 +-
 lib/bundler/lazy_specification.rb                  |    2 +-
 lib/bundler/lockfile_parser.rb                     |   30 +-
 lib/bundler/man/bundle                             |    5 +-
 lib/bundler/man/bundle-config                      |   73 +-
 lib/bundler/man/bundle-config.txt                  |   83 +-
 lib/bundler/man/bundle-exec                        |    2 +-
 lib/bundler/man/bundle-exec.txt                    |    2 +-
 lib/bundler/man/bundle-install                     |  134 +-
 lib/bundler/man/bundle-install.txt                 |  209 ++--
 lib/bundler/man/bundle-package                     |    5 +-
 lib/bundler/man/bundle-package.txt                 |   36 +-
 lib/bundler/man/bundle-platform                    |    2 +-
 lib/bundler/man/bundle-platform.txt                |    2 +-
 lib/bundler/man/bundle-update                      |   67 +-
 lib/bundler/man/bundle-update.txt                  |   72 +-
 lib/bundler/man/bundle.txt                         |    8 +-
 lib/bundler/man/gemfile.5                          |  147 ++-
 lib/bundler/man/gemfile.5.txt                      |  156 ++-
 lib/bundler/match_platform.rb                      |    2 +-
 lib/bundler/parallel_workers.rb                    |   18 -
 lib/bundler/parallel_workers/thread_worker.rb      |   30 -
 lib/bundler/parallel_workers/unix_worker.rb        |  101 --
 lib/bundler/parallel_workers/worker.rb             |   69 --
 lib/bundler/resolver.rb                            |  532 +++-----
 lib/bundler/ruby_version.rb                        |    2 +-
 lib/bundler/rubygems_ext.rb                        |    5 +-
 lib/bundler/rubygems_integration.rb                |   59 +-
 lib/bundler/runtime.rb                             |   59 +-
 lib/bundler/settings.rb                            |   52 +-
 lib/bundler/setup.rb                               |    3 +-
 lib/bundler/shared_helpers.rb                      |   81 +-
 lib/bundler/source.rb                              |   17 +-
 lib/bundler/source/git.rb                          |    8 +-
 lib/bundler/source/git/git_proxy.rb                |    4 +
 lib/bundler/source/path.rb                         |   37 +-
 lib/bundler/source/path/installer.rb               |   21 +-
 lib/bundler/source/rubygems.rb                     |  147 ++-
 lib/bundler/source_list.rb                         |    8 +-
 .../ssl_certs/AddTrustExternalCARoot-2048.pem      |   25 +
 lib/bundler/ssl_certs/AddTrustExternalCARoot.pem   |   32 +
 lib/bundler/ssl_certs/certificate_manager.rb       |   34 +-
 lib/bundler/templates/newgem/CODE_OF_CONDUCT.md.tt |   13 +
 lib/bundler/templates/newgem/LICENSE.txt.tt        |   35 +-
 lib/bundler/templates/newgem/README.md.tt          |   10 +-
 lib/bundler/templates/newgem/Rakefile.tt           |    3 +-
 lib/bundler/templates/newgem/bin/console.tt        |   14 +
 lib/bundler/templates/newgem/bin/newgem.tt         |    3 -
 lib/bundler/templates/newgem/bin/setup.tt          |    7 +
 lib/bundler/templates/newgem/exe/newgem.tt         |    3 +
 lib/bundler/templates/newgem/gitignore.tt          |    2 +
 .../templates/newgem/lib/newgem/version.rb.tt      |    2 +-
 lib/bundler/templates/newgem/newgem.gemspec.tt     |   39 +-
 .../templates/newgem/test/test_newgem.rb.tt        |    2 +-
 lib/bundler/ui/shell.rb                            |   10 +-
 lib/bundler/vendored_molinillo.rb                  |    2 +
 lib/bundler/vendored_thor.rb                       |   11 +-
 lib/bundler/version.rb                             |    2 +-
 lib/bundler/worker.rb                              |   73 ++
 man/bundle-config.ronn                             |   40 +-
 man/bundle-install.ronn                            |  197 +--
 man/bundle-package.ronn                            |    7 +
 man/bundle-update.ronn                             |   69 +-
 man/bundle.ronn                                    |    6 +
 man/gemfile.5.ronn                                 |   95 +-
 metadata.yml                                       |  343 ++----
 spec/bundler/bundler_spec.rb                       |   74 --
 spec/bundler/cli_spec.rb                           |   16 -
 spec/bundler/definition_spec.rb                    |   22 -
 spec/bundler/dsl_spec.rb                           |   82 --
 spec/bundler/friendly_errors_spec.rb               |   13 -
 spec/bundler/gem_helper_spec.rb                    |  224 ----
 spec/bundler/psyched_yaml_spec.rb                  |    8 -
 spec/bundler/retry_spec.rb                         |   59 -
 spec/bundler/settings_spec.rb                      |   13 -
 spec/bundler/source/rubygems_spec.rb               |   25 -
 spec/bundler/source_list_spec.rb                   |  361 ------
 spec/cache/gems_spec.rb                            |  284 -----
 spec/cache/git_spec.rb                             |  188 ---
 spec/cache/path_spec.rb                            |  121 --
 spec/cache/platform_spec.rb                        |   57 -
 spec/commands/binstubs_spec.rb                     |  219 ----
 spec/commands/check_spec.rb                        |  278 -----
 spec/commands/clean_spec.rb                        |  592 ---------
 spec/commands/config_spec.rb                       |  227 ----
 spec/commands/console_spec.rb                      |   76 --
 spec/commands/exec_spec.rb                         |  309 -----
 spec/commands/help_spec.rb                         |   39 -
 spec/commands/init_spec.rb                         |   39 -
 spec/commands/inject_spec.rb                       |   78 --
 spec/commands/licenses_spec.rb                     |   18 -
 spec/commands/newgem_spec.rb                       |  423 -------
 spec/commands/open_spec.rb                         |   68 --
 spec/commands/outdated_spec.rb                     |  156 ---
 spec/commands/package_spec.rb                      |  114 --
 spec/commands/show_spec.rb                         |  125 --
 spec/install/binstubs_spec.rb                      |   24 -
 spec/install/bundler_spec.rb                       |  146 ---
 spec/install/deploy_spec.rb                        |  250 ----
 spec/install/gemfile/gemspec_spec.rb               |  170 ---
 spec/install/gemfile/git_spec.rb                   |  967 ---------------
 spec/install/gemfile/path_spec.rb                  |  500 --------
 spec/install/gemfile_spec.rb                       |   44 -
 spec/install/gems/c_ext_spec.rb                    |   48 -
 spec/install/gems/dependency_api_spec.rb           |  582 ---------
 spec/install/gems/env_spec.rb                      |  107 --
 spec/install/gems/flex_spec.rb                     |  314 -----
 spec/install/gems/groups_spec.rb                   |  308 -----
 spec/install/gems/mirror_spec.rb                   |   39 -
 spec/install/gems/platform_spec.rb                 |  195 ---
 spec/install/gems/post_install_spec.rb             |  121 --
 spec/install/gems/resolving_spec.rb                |  124 --
 spec/install/gems/simple_case_spec.rb              |  377 ------
 spec/install/gems/sources_spec.rb                  |  259 ----
 spec/install/gems/standalone_spec.rb               |  260 ----
 spec/install/gems/sudo_spec.rb                     |  136 ---
 spec/install/gems/win32_spec.rb                    |   26 -
 spec/install/gemspecs_spec.rb                      |   50 -
 spec/install/path_spec.rb                          |  150 ---
 spec/install/post_bundle_message_spec.rb           |  142 ---
 spec/install/prereleases_spec.rb                   |   43 -
 spec/install/security_policy_spec.rb               |   77 --
 spec/install/upgrade_spec.rb                       |   26 -
 spec/lock/git_spec.rb                              |   34 -
 spec/lock/lockfile_spec.rb                         |  924 --------------
 spec/other/bundle_ruby_spec.rb                     |  142 ---
 spec/other/cli_dispatch_spec.rb                    |   21 -
 spec/other/ext_spec.rb                             |   60 -
 spec/other/platform_spec.rb                        | 1285 --------------------
 spec/other/ssl_cert_spec.rb                        |   10 -
 spec/quality_spec.rb                               |   88 --
 spec/realworld/dependency_api_spec.rb              |   60 -
 spec/realworld/edgecases_spec.rb                   |  177 ---
 spec/realworld/parallel_spec.rb                    |   69 --
 spec/resolver/basic_spec.rb                        |   66 -
 spec/resolver/platform_spec.rb                     |   88 --
 spec/runtime/executable_spec.rb                    |  149 ---
 spec/runtime/load_spec.rb                          |  107 --
 spec/runtime/platform_spec.rb                      |   90 --
 spec/runtime/require_spec.rb                       |  332 -----
 spec/runtime/setup_spec.rb                         |  853 -------------
 spec/runtime/with_clean_env_spec.rb                |   91 --
 spec/spec_helper.rb                                |  121 --
 .../endopint_marshal_fail_basic_authentication.rb  |   13 -
 spec/support/artifice/endpoint.rb                  |   71 --
 spec/support/artifice/endpoint_500.rb              |   37 -
 spec/support/artifice/endpoint_api_missing.rb      |   16 -
 .../artifice/endpoint_basic_authentication.rb      |   13 -
 spec/support/artifice/endpoint_creds_diff_host.rb  |   38 -
 spec/support/artifice/endpoint_extra.rb            |   31 -
 spec/support/artifice/endpoint_extra_missing.rb    |   15 -
 spec/support/artifice/endpoint_fallback.rb         |   17 -
 spec/support/artifice/endpoint_host_redirect.rb    |   15 -
 spec/support/artifice/endpoint_marshal_fail.rb     |   11 -
 spec/support/artifice/endpoint_redirect.rb         |   15 -
 .../endpoint_strict_basic_authentication.rb        |   18 -
 spec/support/artifice/endpoint_timeout.rb          |   13 -
 spec/support/builders.rb                           |  681 -----------
 spec/support/fakeweb/rack-1.0.0.marshal            |    2 -
 spec/support/fakeweb/windows.rb                    |   23 -
 spec/support/hax.rb                                |   22 -
 spec/support/helpers.rb                            |  359 ------
 spec/support/indexes.rb                            |  280 -----
 spec/support/matchers.rb                           |   77 --
 spec/support/path.rb                               |   81 --
 spec/support/permissions.rb                        |   10 -
 spec/support/platforms.rb                          |   94 --
 spec/support/ruby_ext.rb                           |   20 -
 spec/support/rubygems_ext.rb                       |   39 -
 spec/support/streams.rb                            |   13 -
 spec/support/sudo.rb                               |   16 -
 spec/update/gems_spec.rb                           |  201 ---
 spec/update/git_spec.rb                            |  283 -----
 spec/update/path_spec.rb                           |   18 -
 214 files changed, 3148 insertions(+), 19172 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