Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gma/bundler-exec
Automatically run Ruby scripts with "bundle exec"
https://github.com/gma/bundler-exec
bundler gem ruby
Last synced: 7 days ago
JSON representation
Automatically run Ruby scripts with "bundle exec"
- Host: GitHub
- URL: https://github.com/gma/bundler-exec
- Owner: gma
- Created: 2010-01-26T00:08:53.000Z (almost 15 years ago)
- Default Branch: main
- Last Pushed: 2022-01-12T22:23:42.000Z (almost 3 years ago)
- Last Synced: 2024-10-16T16:48:30.999Z (22 days ago)
- Topics: bundler, gem, ruby
- Language: Shell
- Homepage: http://effectif.com/ruby/automating-bundle-exec
- Size: 29.3 KB
- Stars: 159
- Watchers: 4
- Forks: 37
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
bundler-exec
===========bundler is a great way to manage the gem dependencies in your Ruby project.
One of bundler's nifty features is the `bundle exec` command which allows
you to run an executable (such as rake) in the context of your bundled gem
dependencies. In other words, you'll only be able to access the gems that
you've told bundler that you want to use.To run a command in this way you need to prefix it with 'bundle exec', like
so:$ bundle exec rake my:task
It's something that you really ought to be doing whenever you run a ruby
script within a bundled project, but, alas, it can become a chore.Enter bundler-exec, which takes care of automatically pre-pending "bundle
exec" to the beginning of common Ruby commands.## Installation
1. Copy bundler-exec.sh to ~/.bundler-exec.sh.
2. Source it from your ~/.bashrc file.For example:
$ curl -L https://raw.githubusercontent.com/gma/bundler-exec/main/bundler-exec.sh > ~/.bundler-exec.sh
$ echo "[ -f ~/.bundler-exec.sh ] && source ~/.bundler-exec.sh" >> ~/.bashrcEr, that's it...
You can get bundler by installing the gem:
$ gem install bundler
See http://github.com/carlhuda/bundler for more about bundler.
## Usage
To check that bundler-exec has been installed properly, use the `type`
shell built-in command to see what it will do when you run `ruby`. It
should tell you it's an alias, like this:$ type ruby
ruby is aliased to `run-with-bundler ruby'If so, whenever you run `ruby` (or any of the other commands listed in
the `BUNDLED_COMMANDS` variable) you'll actually be running it with
`bundle exec`.If you want to run one of these commands without `bundler exec` you can
use `which` to find the full path to executable and then run it, like
this:$ $(which ruby) -e 'puts "hello"'