Sha256: 2a9182c26a59601b2dc47f94f44773d4105bde4000eabfdedc59974ecb4b1a18

Contents?: true

Size: 587 Bytes

Versions: 8

Compression:

Stored size: 587 Bytes

Contents

version: 2
jobs:
  build:
    docker:
      - image: circleci/ruby:2.4.1
    steps:
      - checkout

      - restore_cache:
          keys:
            - table-on-steroids-bundle-{{checksum "Gemfile.lock"}}
            - table-on-steroids-bundle-

      - run:
          name: bundle install
          command: bundle check --path vendor/bundle || bundle install --deployment

      - save_cache:
          key: table-on-steroids-bundle-{{checksum "Gemfile.lock"}}
          paths:
            - vendor/bundle

      - run:
          name: Run spec
          command: bundle exec rspec

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
table_on_steroids-0.1.1.14 .circleci/config.yml
table_on_steroids-0.1.1.13 .circleci/config.yml
table_on_steroids-0.1.1.12 .circleci/config.yml
table_on_steroids-0.1.1.11 .circleci/config.yml
table_on_steroids-0.1.1.10 .circleci/config.yml
table_on_steroids-0.1.1.9 .circleci/config.yml
table_on_steroids-0.1.1.8 .circleci/config.yml
table_on_steroids-0.1.1.7 .circleci/config.yml