> For the complete CircleCI developer hub index, see [llms.txt](https://circleci.com/developer/llms.txt)

# toshimaru/bundle-install

Simple Ruby `bundle install` command with cache handling. https://github.com/toshimaru/bundle-install

## Commands

### bundle-install

bundle install with cache

| Parameter | Type | Default | Description |
|---|---|---|---|
| `jobs` | integer | 4 | Parameter for `bundle install --jobs` |
| `retry` | integer | 3 | Parameter for `bundle install --retry` |
| `bundle_path` | string | vendor/bundle | Parameter for `bundle install --path` |
| `cache_key_prefix` | string | bundle-cache | Parameter for CircleCI cache key prefix |

## Examples

### run_rspec

Run RSpec after bundle-install

```yaml
version: 2.1
orbs:
  bundle-install: toshimaru/bundle-install@x.y.z
jobs:
  rspec:
    docker:
      - image: circleci/ruby:2.6.3
    steps:
      - checkout
      - bundle-install/bundle-install
      - run: bundle exec rspec
```