| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Move common logic to rubygems integration | David Rodríguez | 2019-04-28 | 1 | -7/+1 |
| | | | | | And use the rubygems method if available. | ||||
| * | Remove unnecessary comment | David Rodríguez | 2019-04-28 | 1 | -1/+0 |
| | | |||||
| * | Make `bundle clean` clean git extension directories | Dylan Thacker-Smith | 2019-03-21 | 1 | -1/+1 |
| | | |||||
| * | Fix some rescue calls that do not specifiy error type. | utilum | 2018-03-17 | 1 | -1/+1 |
| | | |||||
| * | Rename Bundler.frozen? to avoid Object method conflictseg-rename-bundler-frozen | Samuel Giddins | 2018-01-15 | 1 | -1/+1 |
| | | |||||
| * | Make `bundle clean` clean extension directories | Artyom Khramov | 2018-01-10 | 1 | -2/+8 |
| | | | | | | | | | `bundle clean` command doesn't remove gem extensions, because extensions reside out of gem directories. This change tweaks `Bundler::Runtime#clean` to remove extensions dirs as well. | ||||
| * | Avoid activating stdlib digest under Ruby 2.5seg-ruby-2-5-digest-gem | Samuel Giddins | 2017-10-22 | 1 | -2/+0 |
| | | |||||
| * | Load digest subclasses in a thread-safe mannerseg-digest-loading | Samuel Giddins | 2017-10-15 | 1 | -1/+1 |
| | | |||||
| * | [RuboCop] Enable Layout/EmptyLineAfterMagicComment cop | Koichi ITO | 2017-07-16 | 1 | -0/+1 |
| | | |||||
| * | Use deployment instead of frozen as a setting on Bundler 2 | Samuel Giddins | 2017-07-12 | 1 | -1/+1 |
| | | |||||
| * | Ensure Bundler.original_env preserves _all_ keys bundler setsseg-original-env-all-keys | Samuel Giddins | 2017-06-13 | 1 | -4/+1 |
| | | |||||
| * | [Runtime] Print a more helpful error when gem activation conflicts with a ↵seg-test-default-gem-substitutes-are-activated | Samuel Giddins | 2017-04-28 | 1 | -12/+23 |
| | | | | | default gem | ||||
| * | Stop allowing -rbundler/setup to silently ignore added specs in deployment modeseg-deadlocking-is-bad | Samuel Giddins | 2017-04-13 | 1 | -0/+2 |
| | | |||||
| * | [Runtime] Avoid re-locking when not unlocking and nothing has changed | Samuel Giddins | 2017-04-03 | 1 | -0/+1 |
| | | |||||
| * | [Runtime] Suggest `bundle install` instead of just `bundle` | Samuel Giddins | 2017-04-03 | 1 | -1/+1 |
| | | |||||
| * | Resolve for specific platforms | Samuel Giddins | 2016-08-25 | 1 | -1/+2 |
| | | |||||
| * | Rename all BUNDLE_ORIG_* env to BUNDLER_ORIG*aa-orig-env-rename | Andre Arko | 2016-08-10 | 1 | -1/+1 |
| | | | | | | | | | | | | | Any enviroment variable that starts with BUNDLE_ will be treated as a configurationg setting, printed by `bundle config`, and made available internally via `Bundler.settings`. The ORIG_* environment variables are actually just internal housekeeping to enable us to provide clean non-bundled environments, and so they shouldn't show up as settings. This change to the environment variable names makes sure it is still clear where they are coming from, but no longer surfaces them via config/settings. | ||||
| * | Remove Bundler::Environment | Samuel Giddins | 2016-08-03 | 1 | -1/+24 |
| | | |||||
| * | fix gemspec caching | Samuel Giddins | 2016-06-04 | 1 | -8/+1 |
| | | |||||
| * | Fix the combination of gem :require and env or install_if | Brian Hawley | 2016-05-24 | 1 | -3/+3 |
| | | | | | | | | If you guard the installation of a gem with env or install_if, and that gem declaration has a :require option specified, it tried to require the gem even though it hadn't been installed. It looks like a spot was missed when the env command was added in the first place. | ||||
| * | Auto merge of #4471 - grzuy:remove_unused_method, r=indirect | Homu | 2016-05-16 | 1 | -8/+0 |
| |\ | | | | | | | | | | | | | | | | | | | Cleans up unused Runtime#dependencies_for method Hi! I was checking out things in the code and couldn't find any existent usage of this method. I might be missing something but opening the PR just in case. The method seems to be publicly accessible if someone goes `Bundler.load.dependencies_for(...)` e.g., but i am assuming that's not something "officially supported" anyways? | ||||
| | * | Removes unused Runtime#dependencies_for method | Gonzalo | 2016-04-27 | 1 | -8/+0 |
| | | | |||||
| * | | [Runtime] Keep load paths within a single spec properly sorted | Samuel Giddins | 2016-04-29 | 1 | -1/+1 |
| | | | |||||
| * | | [Runtime] Fix the ordering of the load path when there are dependencies | Samuel Giddins | 2016-04-29 | 1 | -12/+10 |
| |/ | | | | It was previously getting reversed | ||||
| * | [LockfileParser] Rename attribute to sectionseg-generically-preserve-new-attributes | Samuel Giddins | 2016-04-18 | 1 | -1/+1 |
| | | |||||
| * | Generically preserve new attributes in lockfile | Samuel Giddins | 2016-04-18 | 1 | -1/+1 |
| | | |||||
| * | Prevent recursive `bundle package` loop with multiple gemspecs | James Wen | 2016-04-14 | 1 | -5/+5 |
| | | | | | - Fixes #4430 | ||||
| * | Prevent endless recursive copy for `bundle package --all` and | James Wen | 2016-03-25 | 1 | -1/+2 |
| | | | | | | | differently named gemspecs and gems - Fixes #4392 | ||||
| * | Auto merge of #4268 - Elffers:hhh_fix_ruby-I, r=indirect | Homu | 2016-02-11 | 1 | -1/+11 |
| |\ | | | | | | | | | | | | | | | | | | | Place bundler loaded gems after -I and RUBYLIB Previously, gems were being placed at the front of the LOAD_PATH. This meant you couldn't override a gem by setting -I or RUBYLIB. This patch places -I and RUBYLIB in front of loaded gems and matches the behavior in RubyGems. | ||||
| | * | Wrap Gem method as rubygems integration | Hsing-Hui Hsu | 2016-02-07 | 1 | -1/+1 |
| | | | |||||
| | * | Place bundler loaded gems after -I and RUBYLIB | Hsing-Hui Hsu | 2016-02-02 | 1 | -1/+11 |
| | | | | | | | | | | | | | | | | | Previously, gems were being placed at the front of the LOAD_PATH. This meant you couldn't override a gem by setting -I or RUBYLIB. This patch places -I and RUBYLIB in front of loaded gems and matches the behavior in RubyGems. | ||||
| * | | [Exec] Avoid loading the definition before exec-ing | Samuel Giddins | 2016-02-01 | 1 | -14/+1 |
| |/ | |||||
| * | Compatibility with frozen string literals | Samuel Giddins | 2016-01-31 | 1 | -0/+1 |
| | | |||||
| * | [RuboCop] Fix Style/MutableConstant | Samuel Giddins | 2016-01-31 | 1 | -1/+1 |
| | | |||||
| * | [RuboCop] Address Style/GuardClause | Samuel Giddins | 2016-01-31 | 1 | -5/+4 |
| | | |||||
| * | Use SharedHelpers#filesystem_access in bundle clean for a friendlier error ↵ | James Wen | 2015-12-18 | 1 | -2/+10 |
| | | | | | message for denied permissions | ||||
| * | Fix broken `bundle package --all` command and prevent endless recursive copy | James Wen | 2015-12-15 | 1 | -0/+8 |
| | | | | | | - Only cache path-sourced gem specs that are not bundler and not the gem specified by the gemspec in the main directory the command is being executed from | ||||
| * | Auto merge of #4124 - bundler:seg-rubocop, r=indirect | Homu | 2015-11-27 | 1 | -1/+1 |
| |\ | | | | | | | More rubocop_todo cleanup | ||||
| | * | [RuboCop] Enable Style/AndOr | Samuel Giddins | 2015-11-26 | 1 | -1/+1 |
| | | | |||||
| * | | Use exe instead of bin for BUNDLE_BIN_PATH fallback | Jay Mundrawala | 2015-10-19 | 1 | -1/+1 |
| |/ | |||||
| * | runtime: avoid cleaning up extensions directory | Simon Eskildsen | 2015-10-03 | 1 | -1/+1 |
| | | |||||
| * | Wrap filesystem operations with #filesystem_access | Agis Anastasopoulos | 2015-09-27 | 1 | -2/+6 |
| | | |||||
| * | Removes duplication from bundle clean command | Phil Nash | 2015-09-26 | 1 | -36/+23 |
| | | |||||
| * | Handle errors when requiring gems gracefully | Agis- | 2015-08-29 | 1 | -1/+7 |
| | | | | | Fixes #3960. | ||||
| * | Fix Style/ParenthesesAroundCondition | Victor Koronen | 2015-08-14 | 1 | -1/+1 |
| | | |||||
| * | [RuboCop] Update to 0.33.0 | Samuel E. Giddins | 2015-08-07 | 1 | -3/+3 |
| | | |||||
| * | Fix Style/Alias | Erick Sasse | 2015-07-23 | 1 | -1/+1 |
| | | |||||
| * | Fix Style/SpaceInsideBlockBraces | Andre Arko | 2015-07-18 | 1 | -8/+8 |
| | | | | | closes #3850 | ||||
| * | [RuboCop] Enable Style/StringLiterals | Samuel E. Giddins | 2015-07-15 | 1 | -12/+12 |
| | | |||||
| * | [RuboCop] Enable Style/SymbolProc | Samuel E. Giddins | 2015-07-15 | 1 | -2/+2 |
| | | |||||
