summaryrefslogtreecommitdiff
path: root/plugins/bundler
AgeCommit message (Collapse)Author
2019-11-20Actions to take after repository migration is complete (#8394)Marc Cornellà
* Change project URL from robbyrussell to ohmyzsh org * Update git remote to use ohmyzsh org repository
2019-10-18bundler: support new file naming convention (#6594)Vsevolod Romashov
2019-10-18bundler: make it play nice with functions that call wrapped commands (#8271)Nick Fagerlund
When another function calls one of the bundler plugin's wrapper functions, the command to run gets passed as an array instead of a space-separated string. That works fine when the arguments are expanded alone, like `bundle exec $@`, but something like `./bin/$@` will expand to something like `./bin/rake ./bin/--silent ./bin/--tasks`, which of course will explode. This was causing a nasty interaction with the rake-fast plugin, and I'd be shocked if it wasn't causing other problems. The fix is to explicitly turn off the `RC_EXPAND_PARAM` option for that expansion. See http://zsh.sourceforge.net/Doc/Release/Expansion.html#Parameter-Expansion for more details.
2019-10-02Add rubocop to bundler readmeDavid Shaffer
2019-10-02Add rubocop to bundled_commandsDavid Shaffer
2018-09-09Fix incorrect error message when running bi without having bundler installed ↵Iulian Onofrei
(#7112)
2018-08-16Remove the white spaceDennis Hägler
The white space is causing an error and bundler cannot find any commands!
2018-08-08bundler: update README with latest changesMarc Cornellà
2018-08-07bundler: allow aliases in `bundle exec`Marc Cornellà
This means that if you have, for example, `alias rs='rails server'`, you can run `be rs` and have it expanded to `bundle exec rails server`. Fixes #5818
2018-07-18bundler: fix bundle version git errorMarc Cornellà
It seems that `bundle version` calls git to know the commit sha, while `bundle --version` only shows the version of bundler. Fixes #6988
2018-06-12Allow FreeBSD to correctly detect number of CPUsMarc Cornellà
Use the same scheme as Darwin - sysctl instead of nproc, which doesn't exist in FreeBSD Closes #2545 Co-authored-by: Daniel Bye <dbye@users.noreply.github.com>
2018-01-22add hanami to the list of wrapped gems (#6334)Vsevolod Romashov
2016-06-21bundler plugin: Simplify retrieval of cpu count on OSX (#5180)Clemens Gruber
Calling awk is not necessary here, sysctl has the -n flag to print the value. Signed-off-by: Clemens Gruber <clemensgru@gmail.com>
2016-01-29Add missing alias to README of bundler pluginAnton Rieder
2015-11-16bundle outdated aliasDenis
2015-06-14Merge pull request #3852 from sachin21/add_alias_of_bundle_cleanRobby Russell
Add alias of bundle clean
2015-06-12Add reference to bundler plugin issue in READMEFilip Bartuzi
2015-05-05Add alias of bundle cleanSatoshi Ohmori
2014-07-23Use $OSTYPE instead of uname to speed things upChristian Höltje
The $OSTYPE variable is set at ZSH compile time and can be safely used to determine the OS of the system. e.g. darwin (os x)
2014-07-15add BUNDLED_COMMANDS functionality to bundler pluginThomas Kriechbaumer
2014-07-15added Bundler readme fileThomas Kriechbaumer
2014-07-15add pry to bundler-commandsThomas Kriechbaumer
2014-07-15add spring to bundler-commandsThomas Kriechbaumer
2014-07-15remove double bundle execThomas Kriechbaumer
2014-07-15Add 'outdated' and 'platform' completions to bundler plugintoooooooby
2014-07-15remove berkshelf from bundler-commandsThomas Kriechbaumer
fixes #2076
2014-07-15remove ruby from bundler-commandsThomas Kriechbaumer
related to #1587 closes #2200 closes #2561
2014-07-15remove spin from bundler-commandsThomas Kriechbaumer
closes #1817
2014-07-15remove foreman from bundler-commandsThomas Kriechbaumer
closes #1825
2014-07-15add sidekiq to bundler-commandsThomas Kriechbaumer
closes #2779
2014-07-15split bundler-commands into seperate linesThomas Kriechbaumer
This makes adding, deleting and merging a lot easier.
2014-07-15Merge pull request #2885 from tsujigiri/bundler/run_binstubbedRobby Russell
Make bundler plugin run binstubbed cmd if existing
2014-06-28Make bundler plugin run binstubbed cmd if existingHelge Rausch
2014-06-28Add spring to bundled commandsHelge Rausch
2014-06-28Add missing quotes to within-bundler-project functionMarc Cornellà
2014-05-25Fix function/alias naming clash between bower and bundle pluginpangratz
Since the `bower` plugin specifies a `bi` alias and `bundle` plugin specifies a `bi` function, there is a name clash when using both plugins, which results in the message "Can't 'bundle install' outside a bundled project" when trying to execute `bower`. This adresses #2486
2014-04-04Remove mailcatcherDeLynn Berry
The mailcatcher gem does not work correctly when executed through Bundler.
2014-03-22Sort bundled commands alphabeticallyMiguel Flores Ruiz de Eguino
2014-03-21Add irb to the list of bundled commandsMiguel Flores Ruiz de Eguino
2014-02-19Remove mailcatcher from the bundler plugin.Brandon Beacher
Recommended by @sj26 per https://github.com/sj26/mailcatcher#bundler.
2013-12-03Merge pull request #2195 from KevinBongart/command_blacklist_for_bundler_pluginRobby Russell
Add command blacklist support to bundler plugin
2013-12-02Change `bi` alias to a functionBrandon Siegel
Only check the bundler version when we call bi. This fixes two issues: First, if there is no bundler available system-wide this will cause an error each time zsh loads. Second, if new bundler is installed system-wide but you change into an rbenv with an older version, the alias will no longer work.
2013-11-12bundle plugin throwing error when bundle is not in path while initializingSabarish Kumar R
2013-10-25Re-add whitespaceKevin Bongart
2013-10-25Add command blacklist support to bundler pluginKevin Bongart
2013-09-24Check bundler version to avoid error with unsupported command line argumentsMaxim Dobryakov
2013-09-19Merge pull request #2066 from agronemann/patch-1Robby Russell
Update bundler.plugin.zsh
2013-09-05Support of parallel bundle installStanislav Mekhonoshin
2013-08-29Update bundler.plugin.zshAlexander Gronemann
Added taps to bundled_commands
2013-06-06Update bundler.plugin.zshCharles Johnson
Added strainer & tailor to commands in bundler plugin.