An open API service indexing awesome lists of open source software.

https://github.com/rubygems/bundler-compose

A bundler plugin to allow composing new gems into an existing bundle
https://github.com/rubygems/bundler-compose

bundler bundler-plugin cli ruby

Last synced: about 2 months ago
JSON representation

A bundler plugin to allow composing new gems into an existing bundle

Awesome Lists containing this project

README

        

# Bundler::Compose

This is a bundler subcommand called `bundle compose` that makes it easy to layer additional gems on top of an existing bundle.

Currently, two modes are supported: `bundle compose gem GEMNAME` and `bundle compose gemfile PATH_TO_ADDITIONAL_GEMFILE`.

For example, if you want to run solargraph in your rails project without adding it to the main Gemfile for that project,

```sh
$ cd path/to/project
$ gem install bundler-compose
$ bundle compose gem solargraph -- [solargraph options]
```

or if you want to run rubocop & plugins in a project that doesn't want to commit to a linter,

```sh
$ cd path/to/project
$ cat >gems.rubocop.rb <<