summaryrefslogtreecommitdiff
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | Fixed full_gem_path for older RGVAsutosh Palai2016-05-271-0/+2
| | | |
| * | | Added spec for gemfile eval and a few docsAsutosh Palai2016-05-274-13/+21
| | | |
| * | | Added Gemfile eval for pluginsAsutosh Palai2016-05-269-10/+92
| | | |
| * | | Shifted rubygems installation to bundler classAsutosh Palai2016-05-262-30/+31
| | | |
| * | | Structured the classes with private methodsAsutosh Palai2016-05-243-36/+42
| | | |
| * | | Added spec helper to build pluginAsutosh Palai2016-05-246-46/+19
| | | |
| * | | Added support for git installAsutosh Palai2016-05-246-26/+87
| | | |
| * | | Added documentations to the functionsAsutosh Palai2016-05-243-2/+56
| | | |
| * | | Added some specs for malformatted pluginsAsutosh Palai2016-05-241-0/+2
| | | |
| * | | Added index fileAsutosh Palai2016-05-242-4/+63
| | | |
| * | | Added plugin module with install functionalityAsutosh Palai2016-05-246-2/+109
| | | |
* | | | Auto merge of #4603 - bundler:seg-allow-unlocking-when-removing-ruby, r=indirectHomu2016-06-112-3/+29
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [Definition] Allow unlocking when removing the ruby version requirement Closes #4595. Closes #4627. \c @RochesterinNYC
| * | | | Fix stubbing RUBY_VERSION on 1.8.7seg-allow-unlocking-when-removing-rubySamuel Giddins2016-06-101-2/+4
| | | | |
| * | | | [Definition] Fail gracefully when the lockfile ruby version is invalidSamuel Giddins2016-06-081-1/+7
| | | | |
| * | | | [RubyVersion] Fix patternSamuel Giddins2016-06-081-1/+1
| | | | |
| * | | | [RuboCop] Fix violations in RubyVersionSamuel Giddins2016-06-051-5/+3
| | | | |
| * | | | [Definition] Unlock ruby when locked version is incompatible with Gemfile ↵Samuel Giddins2016-06-051-0/+1
| | | | | | | | | | | | | | | | | | | | version
| * | | | [RubyVersion] Add .from_stringSamuel Giddins2016-06-051-0/+18
| | | | |
| * | | | [RubyVersion] Make #diff error more helpfulSamuel Giddins2016-06-051-1/+1
| | | | |
| * | | | [Definition] Allow unlocking when removing the ruby version requirementSamuel Giddins2016-06-051-0/+1
| | | | |
* | | | | Fail gracefully on Errno::EHOSTUNREACHAllen Zhao2016-06-101-1/+1
| |_|_|/ |/| | |
* | | | [Inline] Installs quietly from git if necessary when the install option is ↵seg-inline-git-auto-installSamuel Giddins2016-06-091-1/+1
| | | | | | | | | | | | | | | | not set
* | | | changed code and specs according to suggestionsBruno Ferreira2016-06-081-4/+3
| | | |
* | | | Fixes #4593 and adds related specsBruno Ferreira2016-06-082-1/+10
| | | |
* | | | Merge pull request #4645 from bundler/seg-ruby-rubygems-version-fail-fastAndré Arko2016-06-071-0/+19
|\ \ \ \ | |_|_|/ |/| | | [Installer] Fail fast when required_ruby(gems)?_version doesn't match
| * | | [Installer] Fail fast when required_ruby(gems)?_version doesn't matchseg-ruby-rubygems-version-fail-fastSamuel Giddins2016-06-051-0/+19
| |/ /
* | | Auto merge of #4580 - bundler:seg-resolver-performance, r=indirectHomu2016-06-079-74/+58
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Improve resolver performance Some not insignificant improvements found while developing https://github.com/CocoaPods/Molinillo/pull/40, which I absolutely cannot wait to 🚢 \c @indirect
| * | | [RuboCop] Fix SpacingSamuel Giddins2016-06-041-1/+1
| | | |
| * | | [Resolver] Deal with Gem::Version hash and == not aligningSamuel Giddins2016-06-041-2/+7
| | | |
| * | | [Index] Delete unused code & micro-optimizeSamuel Giddins2016-06-041-26/+13
| | | |
| * | | [RuboCop] Fix violationsSamuel Giddins2016-06-021-5/+1
| | | |
| * | | [Index] Don't calculate Platform#to_s twiceSamuel Giddins2016-06-021-3/+6
| | | |
| * | | [Resolver] Drop unused empty array allocationsSamuel Giddins2016-06-021-4/+2
| | | |
| * | | Use Array#concat instead of push(*ary)Samuel Giddins2016-06-026-8/+8
| | | |
| * | | [RemoteSpecification] Add #to_sSamuel Giddins2016-06-021-0/+4
| | | |
| * | | [EndpointSpecification] Stop allocating intermediary arraysSamuel Giddins2016-06-021-2/+2
| | | |
| * | | fixup! [Resolver] Improve calculating amount_constrainedSamuel Giddins2016-06-021-2/+2
| | | |
| * | | [RuboCop] Fix style issuesSamuel Giddins2016-06-022-4/+2
| | | |
| * | | [Resolver] Speed up searchingSamuel Giddins2016-06-021-9/+6
| | | | | | | | | | | | | | | | | | | | | | | | 1) even group_by isnt as good as manually enumerating -- it also gets rid of a bunch of convoluted logic 2) dont create SpecGroup objects just to throw them array 3) drop allocation of intermediary arrays
| * | | [Resolver] Improve calculating amount_constrainedSamuel Giddins2016-06-021-7/+9
| | | | | | | | | | | | | | | | | | | | | | | | 1) changing to searching by name means getting the list is just a hash lookup 2) we care more about the absolute amount constrained than the relative 3) when there's only one spec, that's just as good as there being none
| * | | [RemoteSpecification] Avoid allocating an object every method_missingSamuel Giddins2016-06-021-5/+1
| | | |
| * | | [Index] Speed up searchingSamuel Giddins2016-06-021-4/+2
| | | | | | | | | | | | | | | | | | | | | | | | This is a two-fold improvement: 1) using full_name as the lookup is much faster than a custom array 2) using add? avoids a second set lookup
* | | | Auto merge of #4617 - allenzhao:path-development, r=RochesterinNYCHomu2016-06-062-8/+26
|\ \ \ \ | |_|/ / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add logic to check if the issue is path source related Close #2175 **Todo:** - [x] Add spec test (Ref #2183)
| * | | Add spec test and fix logic in definition#converge_dependenciesAllen Zhao2016-06-042-5/+19
| | | |
| * | | Add logic to check if the issue is path source relatedAllen Zhao2016-05-261-10/+14
| | | |
* | | | Auto merge of #4640 - bundler:seg-bundle-lock-add-platform, r=indirectHomu2016-06-053-2/+13
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | [Lock] Add --add-platform \c @indirect @RochesterinNYC
| * | | | [Lock] Add --add-platformseg-bundle-lock-add-platformSamuel Giddins2016-06-043-2/+13
| | |/ / | |/| |
* | | | [Env] Fix printing gemspecsSamuel Giddins2016-06-041-2/+2
| | | |
* | | | fix gemspec cachingSamuel Giddins2016-06-041-8/+1
| | | |
* | | | add spec for allowing conflictsSamuel Giddins2016-06-041-1/+1
| | | |