summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* [Documentation] Add instruction to not use tags or id refsavoid-tag-or-id-refs-in-commitsJames Wen2016-05-121-0/+6
|
* Auto merge of #4559 - RochesterinNYC:update-travis-rubygems-ruby, r=segiddinsHomu2016-05-102-4/+4
|\ | | | | | | | | | | [Travis] Test against Rubygems `2.6.4` and Ruby `2.3.1` - Side note: this feels like something we might be able to automate if we had a CI pipeline that could do periodic resource checks (i.e. watch for new version of Rubygems or Ruby).
| * [Travis] Test against Ruby `v2.3.1`James Wen2016-05-081-1/+1
| |
| * [Travis] Test against RubyGems `v2.6.4`James Wen2016-05-062-3/+3
| |
* | Auto merge of #4463 - ↵Homu2016-05-101-0/+31
|\ \ | |/ |/| | | | | | | | | | | | | | | | | | | | | | | RochesterinNYC:add-quality-spec-for-debugging-mechanisms, r=segiddins Create quality check spec for leftover debugging/development mechanisms Example mechanisms that are screened for: - `sleep` - `binding.pry` - `debugger` - focused `rspec` tests via `fit` - Related to discussion at https://github.com/bundler/bundler/pull/4439#issuecomment-210091297
| * Create quality check spec for leftover debugging/development mechanismsJames Wen2016-05-091-0/+31
| | | | | | | | | | | | | | | | Example mechanisms: - sleep - binding.pry - debugger - focused rspec tests via fit
* | Auto merge of #4465 - ↵Homu2016-05-103-5/+29
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | RochesterinNYC:only-show-potential-updates-on-same-platform, r=RochesterinNYC Only show potential updates on same platform for `bundle outdated` This fixes the following behavior: Say you're using a gem `laduradura` on platform `java` with version `v1.0.1`. The latest `java` platform version of this gem is `v1.0.1` but the latest `ruby` platform version of this gem is `v1.0.2`. Running `bundle outdated` will currently tell you that you can update `laduradura` to `v1.0.2`. This is a bad user experience as the user is given the suggestion to update `laduradura` to `v1.0.2`, despite this version being on a completely different platform than the one that the user is currently using `laduradura` on. With this PR, `bundle outdated` will only report potential version updates to gems for the same platforms those gems are being used on. - Fixes #4450
| * | Only report same platform gem updates for `bundle outdated`James Wen2016-04-253-2/+26
| | | | | | | | | | | | | | | | | | | | | | | | - `bundle outdated` will now only show updates for a gem if there are available updates for that gem on the same platform - ex. gem `laduradura` is being used on ruby platform but updates are available on gem `laduradura` for java platform = do not display potential update versions for java
| * | Rename `active_spec` to `active_specs` for points in execution where itJames Wen2016-04-251-4/+4
| |/ | | | | | | is an array of specs
* | Update READMEs for the removal of bundler-featuresLynn Cyrin2016-05-091-2/+1
| |
* | Update READMEs for the removal of bundler-featuresLynn Cyrin2016-05-091-4/+0
| |
* | Update READMEs for the removal of bundler-featuresLynn Cyrin2016-05-091-1/+1
| |
* | Merge tag 'v1.12.3'Samuel Giddins2016-05-062-1/+7
|\ \ | | | | | | | | | Version 1.12.3
| * | Version 1.12.3 with changelogv1.12.3Samuel Giddins2016-05-062-1/+7
| | |
| * | Auto merge of #4531 - bundler:seg-compact-index-fallback-no-home, r=indirectHomu2016-05-062-0/+15
| | | | | | | | | | | | [CompactIndex] Fall back when the user's home directory is not writable
| * | Auto merge of #4530 - bundler:seg-install-no-no-install, r=indirectHomu2016-05-062-2/+12
| | | | | | | | | | | | [Install] Don't set :no_install unecessarily
* | | Auto merge of #4531 - bundler:seg-compact-index-fallback-no-home, r=indirectHomu2016-05-072-0/+15
|\ \ \ | | | | | | | | | | | | [CompactIndex] Fall back when the user's home directory is not writable
| * | | [CompactIndex] Fall back when the user's home directory is not writableseg-compact-index-fallback-no-homeSamuel Giddins2016-05-062-0/+15
| | | |
* | | | Auto merge of #4530 - bundler:seg-install-no-no-install, r=indirectHomu2016-05-072-2/+12
|\ \ \ \ | |/ / / |/| | | | | | | [Install] Don't set :no_install unecessarily
| * | | [Install] Don't set :no_install unecessarilyseg-install-no-no-installSamuel Giddins2016-05-062-2/+12
|/ / /
* | | Merge tag 'v1.12.2'Samuel Giddins2016-05-042-1/+7
|\ \ \ | |/ / | | | | | | Version 1.12.2
| * | Version 1.12.2 with changelogv1.12.2Samuel Giddins2016-05-042-1/+7
| | |
| * | Auto merge of #4487 - b-ggs:show-executables-man-page, r=segiddinsHomu2016-05-042-3/+135
| | | | | | | | | | | | | | | | | | | | | | | | Show executable's man page when --help or -h is present Fixes #4480, where `bundle exec foo --help` shows `bundle exec`'s man instead of `foo`'s man. @RochesterinNYC
| * | Auto merge of #4524 - grzuy:fix_frozen_string, r=segiddinsHomu2016-05-042-3/+3
| | | | | | | | | | | | | | | | | | Fixes frozen string exception when checking equivalent gemfile and lockfile closes #4520
* | | Auto merge of #4487 - b-ggs:show-executables-man-page, r=segiddinsHomu2016-05-052-3/+135
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Show executable's man page when --help or -h is present Fixes #4480, where `bundle exec foo --help` shows `bundle exec`'s man instead of `foo`'s man. @RochesterinNYC
| * | | Use `cat` instead of `echo` for specsBoggs2016-04-302-40/+97
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Add specs for different positions of `exec` and `help` See #4487 for details Fix rubocop offenses
| * | | Use regex for matching usage of `exec` and `--help`Boggs2016-04-301-12/+27
| | | | | | | | | | | | | | | | See #4487 for more details
| * | | Add more specs for exec and help usageBoggs2016-04-301-4/+37
| | | |
| * | | Use help switch specified in args instead of replacing it with --helpBoggs2016-04-301-2/+2
| | | |
| * | | Show executable's man page when --help or -h is presentBoggs2016-04-302-2/+29
| | | | | | | | | | | | | | | | Fix rubocop offense
* | | | Auto merge of #4524 - grzuy:fix_frozen_string, r=segiddinsHomu2016-05-052-3/+3
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | Fixes frozen string exception when checking equivalent gemfile and lockfile closes #4520
| * | | | String interpolation no longer necessaryGonzalo2016-05-041-1/+1
| | | | |
| * | | | Fixes frozen string exception when checking equivalent gemfile and lockfile ↵Gonzalo2016-05-032-3/+3
|/ / / / | | | | | | | | | | | | (closes #4520)
* | | | Auto merge of #4448 - RochesterinNYC:update-ssl-certs--to-parallel-rubygems, ↵Homu2016-05-044-19/+22
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | r=segiddins Update Bundler ssl certs to match updated Rubygems ssl certs/structure This PR should only be merged if and after rubygems/rubygems#1583 is merged. Reasoning behind the PR is originally stated there but is as follows: The current arrangement of the ssl certs for Bundler (and Rubygems) was produced through manual testing and configured/arranged in bundler/bundler#4380 instead of programmatically. rubygems/rubygems#1583 updates the Rubygems util script for updating the ssl certs to programmatically write the certs to the appropriate nested directories. This PR ensures Bundler's certs match Rubygems' after they are programmatically generated/arranged instead of manually.
| * | | | Update Bundler ssl certs to match updated Rubygems ssl certs/structureJames Wen2016-04-174-19/+22
| | | | |
* | | | | Merge tag 'v1.12.1'Samuel Giddins2016-04-302-1/+9
|\ \ \ \ \ | | |_|/ / | |/| | | | | | | | Version 1.12.1
| * | | | Version 1.12.1 with changelogv1.12.1Samuel Giddins2016-04-302-1/+9
| | | | |
| * | | | Auto merge of #4485 - bundler:seg-setup-loadpath-order, r=segiddinsHomu2016-04-302-12/+41
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [Runtime] Fix the ordering of the load path when there are dependencies It was previously getting reversed closes #4482
| * | | | Auto merge of #4490 - bundler:seg-molinillo-0.4.5, r=segiddinsHomu2016-04-304-12/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Update vendored Molinillo to 0.4.5 Closes https://github.com/bundler/bundler/issues/4484. See https://github.com/CocoaPods/Molinillo/releases/0.4.5.
| * | | | Auto merge of #4486 - bundler:seg-updater-read-comment, r=segiddinsHomu2016-04-301-0/+3
| | | | | | | | | | | | | | | | | | | | [Updater] Add a comment why we use IO.read
| * | | | Auto merge of #4479 - mwrock:windows, r=segiddinsHomu2016-04-301-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | fixes checksums of rubygems index on windows `Digest::MD5.file(path)` uses `File.open(path) { |f| f.read }` which will inject `\r\n` style newlines on windows. Using `IO.read(path)` avoids the carriage returns and produces matching checksums on windows.
| * | | | Auto merge of #4477 - bundler:seg-checksum-mismatch-error, r=indirectHomu2016-04-307-6/+53
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [Updater] Raise a more helpful error on checksum mismatch @indirect this will make diagnosing https://github.com/bundler/bundler/issues/4472 much easier.
* | | | | Auto merge of #4485 - bundler:seg-setup-loadpath-order, r=segiddinsHomu2016-04-302-12/+41
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [Runtime] Fix the ordering of the load path when there are dependencies It was previously getting reversed closes #4482
| * | | | | Remove trailing comma for Ruby 1.8.7seg-setup-loadpath-orderSamuel Giddins2016-04-291-1/+1
| | | | | |
| * | | | | [Runtime] Keep load paths within a single spec properly sortedSamuel Giddins2016-04-291-1/+1
| | | | | |
| * | | | | [Runtime] Fix the ordering of the load path when there are dependenciesSamuel Giddins2016-04-292-12/+41
| | | | | | | | | | | | | | | | | | | | | | | | It was previously getting reversed
* | | | | | Auto merge of #4490 - bundler:seg-molinillo-0.4.5, r=segiddinsHomu2016-04-304-12/+18
|\ \ \ \ \ \ | |/ / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Update vendored Molinillo to 0.4.5 Closes https://github.com/bundler/bundler/issues/4484. See https://github.com/CocoaPods/Molinillo/releases/0.4.5.
| * | | | | Update vendored Molinillo to 0.4.5seg-molinillo-0.4.5Samuel Giddins2016-04-294-12/+18
|/ / / / /
* | | | | Auto merge of #4486 - bundler:seg-updater-read-comment, r=segiddinsHomu2016-04-291-0/+3
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | [Updater] Add a comment why we use IO.read
| * | | | | [Updater] Add a comment why we use IO.readseg-updater-read-commentSamuel Giddins2016-04-291-0/+3
|/ / / / /