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

Christian Hofstaedtler zeha at moszumanska.debian.org
Sat Nov 30 10:58:24 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  ddbbd68   Prepare changelog for 1.4.0~rc.1-exp1
       new  7e51085   Imported Upstream version 1.5.0~rc.1
       new  2b91cb8   Merge tag 'upstream/1.5.0_rc.1'
       new  4804dbf   Prepare changelog for 1.5.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                                        |  33 +-
 CHANGELOG.md                                       |  25 +-
 Rakefile                                           |   4 +-
 bundler.gemspec                                    |   2 +-
 debian/changelog                                   |   6 +
 lib/bundler.rb                                     |   5 +-
 lib/bundler/capistrano.rb                          |   1 +
 lib/bundler/cli.rb                                 |  24 +-
 lib/bundler/definition.rb                          |   8 +-
 lib/bundler/dsl.rb                                 |  10 +-
 lib/bundler/endpoint_specification.rb              |   2 +-
 lib/bundler/fetcher.rb                             |  63 +--
 lib/bundler/installer.rb                           |  12 +-
 lib/bundler/lazy_specification.rb                  |   2 +-
 lib/bundler/man/bundle                             | 116 +++++
 lib/bundler/man/bundle-config                      | 161 +++++++
 lib/bundler/man/bundle-config.txt                  | 184 ++++++++
 lib/bundler/man/bundle-exec                        | 159 +++++++
 lib/bundler/man/bundle-exec.txt                    | 163 +++++++
 lib/bundler/man/bundle-install                     | 327 ++++++++++++++
 lib/bundler/man/bundle-install.txt                 | 387 ++++++++++++++++
 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                         |  97 ++++
 lib/bundler/man/gemfile.5                          | 492 ++++++++++++++++++++
 lib/bundler/man/gemfile.5.txt                      | 448 ++++++++++++++++++
 lib/bundler/parallel_workers/unix_worker.rb        |   6 +
 lib/bundler/remote_specification.rb                |   2 +-
 lib/bundler/retry.rb                               |   7 +-
 lib/bundler/ruby_version.rb                        |   2 +-
 lib/bundler/rubygems_ext.rb                        |   9 +-
 lib/bundler/rubygems_integration.rb                |  61 +--
 lib/bundler/settings.rb                            |  21 +
 lib/bundler/source.rb                              |  15 +-
 lib/bundler/source/git/git_proxy.rb                |   2 +-
 lib/bundler/source/rubygems.rb                     |  56 ++-
 lib/bundler/templates/newgem/README.md.tt          |   2 +-
 .../templates/newgem/spec/newgem_spec.rb.tt        |   4 +-
 lib/bundler/version.rb                             |   2 +-
 man/bundle-config.ronn                             |   9 +
 man/bundle-install.ronn                            |  14 +-
 man/gemfile.5.ronn                                 |   6 +
 metadata.yml                                       | 467 +++++++++++++++++++
 spec/bundler/retry_spec.rb                         |  29 +-
 spec/commands/config_spec.rb                       |  14 +
 .../inject.rb => commands/inject_spec.rb}          |   0
 spec/commands/newgem_spec.rb                       |   4 +-
 spec/commands/outdated_spec.rb                     |  17 +
 spec/install/binstubs_spec.rb                      |  24 +
 spec/install/bundler_spec.rb                       | 146 ++++++
 spec/install/{ => gemfile}/gemspec_spec.rb         |   0
 spec/install/{ => gemfile}/git_spec.rb             |   4 +-
 spec/install/{ => gemfile}/path_spec.rb            |   0
 spec/install/gemfile_spec.rb                       |  44 ++
 spec/install/gems/groups_spec.rb                   | 413 +++++++++--------
 spec/install/gems/mirror_spec.rb                   |  39 ++
 spec/install/gems/platform_spec.rb                 |  16 +-
 spec/install/gems/simple_case_spec.rb              | 451 +------------------
 spec/install/gemspecs_spec.rb                      |  50 +++
 spec/install/invalid_spec.rb                       |  50 ---
 spec/install/path_spec.rb                          | 500 ++++-----------------
 spec/install/prereleases_spec.rb                   |  43 ++
 spec/other/bundle_ruby_spec.rb                     |   4 +-
 spec/other/ext_spec.rb                             |   2 +-
 spec/other/platform_spec.rb                        |  31 +-
 spec/realworld/parallel_install_spec.rb            |   3 +-
 spec/realworld/parallel_update_spec.rb             |  31 ++
 spec/runtime/platform_spec.rb                      |   4 +-
 spec/spec_helper.rb                                |   4 +-
 spec/support/{rubygems_hax/platform.rb => hax.rb}  |   0
 74 files changed, 4718 insertions(+), 1264 deletions(-)
 create mode 100644 lib/bundler/man/bundle
 create mode 100644 lib/bundler/man/bundle-config
 create mode 100644 lib/bundler/man/bundle-config.txt
 create mode 100644 lib/bundler/man/bundle-exec
 create mode 100644 lib/bundler/man/bundle-exec.txt
 create mode 100644 lib/bundler/man/bundle-install
 create mode 100644 lib/bundler/man/bundle-install.txt
 create mode 100644 lib/bundler/man/bundle-package
 create mode 100644 lib/bundler/man/bundle-package.txt
 create mode 100644 lib/bundler/man/bundle-platform
 create mode 100644 lib/bundler/man/bundle-platform.txt
 create mode 100644 lib/bundler/man/bundle-update
 create mode 100644 lib/bundler/man/bundle-update.txt
 create mode 100644 lib/bundler/man/bundle.txt
 create mode 100644 lib/bundler/man/gemfile.5
 create mode 100644 lib/bundler/man/gemfile.5.txt
 create mode 100644 metadata.yml
 rename spec/{integration/inject.rb => commands/inject_spec.rb} (100%)
 create mode 100644 spec/install/binstubs_spec.rb
 create mode 100644 spec/install/bundler_spec.rb
 rename spec/install/{ => gemfile}/gemspec_spec.rb (100%)
 rename spec/install/{ => gemfile}/git_spec.rb (99%)
 copy spec/install/{ => gemfile}/path_spec.rb (100%)
 create mode 100644 spec/install/gemfile_spec.rb
 create mode 100644 spec/install/gems/mirror_spec.rb
 create mode 100644 spec/install/gemspecs_spec.rb
 delete mode 100644 spec/install/invalid_spec.rb
 create mode 100644 spec/install/prereleases_spec.rb
 create mode 100644 spec/realworld/parallel_update_spec.rb
 rename spec/support/{rubygems_hax/platform.rb => hax.rb} (100%)

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