[DRE-commits] [bundler] branch master updated (ec30ea9 -> ddbbd68)

Christian Hofstaedtler zeha at alioth.debian.org
Mon Oct 21 21:51:20 UTC 2013


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

zeha pushed a change to branch master
in repository bundler.

      from  ec30ea9   Prepare changelog for 1.3.5-2
       new  d1a85cd   Update my E-Mail Address
      adds  1dfe708   Imported Upstream version 1.4.0~rc.1
       new  da2643c   Merge tag 'upstream/1.4.0_rc.1'
       new  ddbbd68   Prepare changelog for 1.4.0~rc.1-exp1

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:
 .travis.yml                                    |   31 +-
 CHANGELOG.md                                   |   58 ++++
 CONTRIBUTING.md                                |   12 +-
 CONTRIBUTE.md => DEVELOPMENT.md                |   75 ++--
 ISSUES.md                                      |   57 +--
 LICENSE.md                                     |    2 +-
 README.md                                      |   18 +-
 Rakefile                                       |   23 +-
 UPGRADING.md                                   |    2 +-
 bin/bundle                                     |    8 +-
 bin/bundler                                    |   10 +
 bundler.gemspec                                |    4 +-
 debian/changelog                               |    7 +
 debian/control                                 |    2 +-
 lib/bundler.rb                                 |   80 +++--
 lib/bundler/capistrano.rb                      |    4 +
 lib/bundler/cli.rb                             |  126 ++++---
 lib/bundler/constants.rb                       |    5 +
 lib/bundler/current_ruby.rb                    |  123 +++++++
 lib/bundler/definition.rb                      |   55 ++-
 lib/bundler/dependency.rb                      |   95 +----
 lib/bundler/deployment.rb                      |    2 +-
 lib/bundler/dsl.rb                             |   11 +-
 lib/bundler/endpoint_specification.rb          |    2 -
 lib/bundler/fetcher.rb                         |  114 ++++--
 lib/bundler/friendly_errors.rb                 |   11 +
 lib/bundler/gem_helper.rb                      |    7 +-
 lib/bundler/gem_helpers.rb                     |   13 +-
 lib/bundler/gem_installer.rb                   |    9 +
 lib/bundler/index.rb                           |    7 +-
 lib/bundler/installer.rb                       |  120 ++++++-
 lib/bundler/lazy_specification.rb              |    1 +
 lib/bundler/man/bundle                         |  116 -------
 lib/bundler/man/bundle-config                  |  139 --------
 lib/bundler/man/bundle-config.txt              |  164 ---------
 lib/bundler/man/bundle-exec                    |  122 -------
 lib/bundler/man/bundle-exec.txt                |  131 -------
 lib/bundler/man/bundle-install                 |  317 -----------------
 lib/bundler/man/bundle-install.txt             |  377 --------------------
 lib/bundler/man/bundle-package                 |   49 ---
 lib/bundler/man/bundle-package.txt             |   67 ----
 lib/bundler/man/bundle-platform                |   61 ----
 lib/bundler/man/bundle-platform.txt            |   57 ---
 lib/bundler/man/bundle-update                  |  202 -----------
 lib/bundler/man/bundle-update.txt              |  207 -----------
 lib/bundler/man/bundle.txt                     |   98 ------
 lib/bundler/man/gemfile.5                      |  440 ------------------------
 lib/bundler/man/gemfile.5.txt                  |  411 ----------------------
 lib/bundler/parallel_workers.rb                |   18 +
 lib/bundler/parallel_workers/thread_worker.rb  |   30 ++
 lib/bundler/parallel_workers/unix_worker.rb    |   87 +++++
 lib/bundler/parallel_workers/worker.rb         |   68 ++++
 lib/bundler/resolver.rb                        |   28 +-
 lib/bundler/retry.rb                           |   59 ++++
 lib/bundler/ruby_dsl.rb                        |    2 +-
 lib/bundler/ruby_version.rb                    |   25 +-
 lib/bundler/rubygems_ext.rb                    |    3 +-
 lib/bundler/rubygems_integration.rb            |   46 ++-
 lib/bundler/runtime.rb                         |   12 +-
 lib/bundler/safe_catch.rb                      |  101 ++++++
 lib/bundler/shared_helpers.rb                  |   41 ++-
 lib/bundler/source/git.rb                      |   10 +-
 lib/bundler/source/git/git_proxy.rb            |   47 ++-
 lib/bundler/source/path.rb                     |    4 +-
 lib/bundler/source/rubygems.rb                 |   10 +-
 lib/bundler/spec_set.rb                        |   17 +-
 lib/bundler/templates/newgem/newgem.gemspec.tt |    4 +-
 lib/bundler/ui.rb                              |    4 +
 lib/bundler/vendored_persistent.rb             |   13 +-
 lib/bundler/version.rb                         |    2 +-
 man/bundle-config.ronn                         |    6 +
 man/bundle-exec.ronn                           |   39 ++-
 man/bundle-install.ronn                        |    8 +-
 man/bundle.ronn                                |    4 +-
 man/gemfile.5.ronn                             |   25 +-
 metadata.yml                                   |  409 ----------------------
 spec/bundler/cli_rspec.rb                      |    9 +-
 spec/bundler/dsl_spec.rb                       |   10 +-
 spec/bundler/friendly_errors_spec.rb           |   13 +
 spec/bundler/gem_helper_spec.rb                |   40 +--
 spec/bundler/retry_spec.rb                     |   37 ++
 spec/bundler/safe_catch_spec.rb                |   37 ++
 spec/cache/platform_spec.rb                    |    4 +-
 spec/{other => commands}/binstubs_spec.rb      |   30 +-
 spec/{other => commands}/check_spec.rb         |    2 +-
 spec/{other => commands}/clean_spec.rb         |    4 +-
 spec/{other => commands}/config_spec.rb        |    0
 spec/{other => commands}/console_spec.rb       |    0
 spec/{other => commands}/exec_spec.rb          |   65 +++-
 spec/{other => commands}/help_spec.rb          |   12 +-
 spec/{other => commands}/init_spec.rb          |    1 -
 spec/{other => commands}/licenses_spec.rb      |    0
 spec/{other => commands}/newgem_spec.rb        |    0
 spec/{other => commands}/open_spec.rb          |    0
 spec/{other => commands}/outdated_spec.rb      |   18 +-
 spec/{other => commands}/show_spec.rb          |    0
 spec/install/gems/dependency_api_spec.rb       |   17 +-
 spec/install/gems/flex_spec.rb                 |    2 +-
 spec/install/gems/packed_spec.rb               |    6 +-
 spec/install/gems/post_install_spec.rb         |    6 +-
 spec/install/gems/resolving_spec.rb            |   37 ++
 spec/install/gems/simple_case_spec.rb          |   18 +
 spec/install/gems/win32_spec.rb                |    2 +-
 spec/install/git_spec.rb                       |   58 +++-
 spec/install/invalid_spec.rb                   |   15 +
 spec/install/security_policy_spec.rb           |   21 +-
 spec/integration/inject.rb                     |    2 +-
 spec/lock/git_spec.rb                          |    1 -
 spec/lock/lockfile_spec.rb                     |   34 +-
 spec/other/bundle_ruby_spec.rb                 |  180 ++++++----
 spec/other/cli_dispatch_spec.rb                |   21 ++
 spec/other/ext_spec.rb                         |   23 ++
 spec/other/platform_spec.rb                    |  212 +++++++++++-
 spec/quality_spec.rb                           |   28 +-
 spec/realworld/dependency_api_spec.rb          |    3 +-
 spec/realworld/edgecases_spec.rb               |    6 +-
 spec/realworld/parallel_install_spec.rb        |   22 ++
 spec/resolver/basic_spec.rb                    |   13 +-
 spec/resolver/platform_spec.rb                 |    8 +-
 spec/runtime/load_spec.rb                      |    2 +-
 spec/runtime/require_spec.rb                   |    9 +
 spec/runtime/setup_spec.rb                     |    4 +-
 spec/runtime/with_clean_env_spec.rb            |    1 -
 spec/support/builders.rb                       |    6 +-
 spec/support/helpers.rb                        |   15 +-
 spec/support/indexes.rb                        |   20 +-
 spec/support/path.rb                           |    4 +
 spec/support/platforms.rb                      |   10 +-
 spec/support/streams.rb                        |   13 +
 spec/update/gems_spec.rb                       |    6 +-
 spec/update/git_spec.rb                        |    4 +-
 spec/update/source_spec.rb                     |    1 -
 132 files changed, 2311 insertions(+), 3975 deletions(-)
 rename CONTRIBUTE.md => DEVELOPMENT.md (65%)
 create mode 100755 bin/bundler
 create mode 100644 lib/bundler/constants.rb
 create mode 100644 lib/bundler/current_ruby.rb
 delete mode 100644 lib/bundler/man/bundle
 delete mode 100644 lib/bundler/man/bundle-config
 delete mode 100644 lib/bundler/man/bundle-config.txt
 delete mode 100644 lib/bundler/man/bundle-exec
 delete mode 100644 lib/bundler/man/bundle-exec.txt
 delete mode 100644 lib/bundler/man/bundle-install
 delete mode 100644 lib/bundler/man/bundle-install.txt
 delete mode 100644 lib/bundler/man/bundle-package
 delete mode 100644 lib/bundler/man/bundle-package.txt
 delete mode 100644 lib/bundler/man/bundle-platform
 delete mode 100644 lib/bundler/man/bundle-platform.txt
 delete mode 100644 lib/bundler/man/bundle-update
 delete mode 100644 lib/bundler/man/bundle-update.txt
 delete mode 100644 lib/bundler/man/bundle.txt
 delete mode 100644 lib/bundler/man/gemfile.5
 delete mode 100644 lib/bundler/man/gemfile.5.txt
 create mode 100644 lib/bundler/parallel_workers.rb
 create mode 100644 lib/bundler/parallel_workers/thread_worker.rb
 create mode 100644 lib/bundler/parallel_workers/unix_worker.rb
 create mode 100644 lib/bundler/parallel_workers/worker.rb
 create mode 100644 lib/bundler/retry.rb
 create mode 100644 lib/bundler/safe_catch.rb
 delete mode 100644 metadata.yml
 create mode 100644 spec/bundler/friendly_errors_spec.rb
 create mode 100644 spec/bundler/retry_spec.rb
 create mode 100644 spec/bundler/safe_catch_spec.rb
 rename spec/{other => commands}/binstubs_spec.rb (85%)
 rename spec/{other => commands}/check_spec.rb (98%)
 rename spec/{other => commands}/clean_spec.rb (99%)
 rename spec/{other => commands}/config_spec.rb (100%)
 rename spec/{other => commands}/console_spec.rb (100%)
 rename spec/{other => commands}/exec_spec.rb (76%)
 rename spec/{other => commands}/help_spec.rb (71%)
 rename spec/{other => commands}/init_spec.rb (99%)
 rename spec/{other => commands}/licenses_spec.rb (100%)
 rename spec/{other => commands}/newgem_spec.rb (100%)
 rename spec/{other => commands}/open_spec.rb (100%)
 rename spec/{other => commands}/outdated_spec.rb (84%)
 rename spec/{other => commands}/show_spec.rb (100%)
 create mode 100644 spec/other/cli_dispatch_spec.rb
 create mode 100644 spec/realworld/parallel_install_spec.rb
 create mode 100644 spec/support/streams.rb

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