Sha256: 74fe76833ce75fa7b3aa3970c69c7354ef10976207daad2499480cb3a4f5c3dd

Contents?: true

Size: 927 Bytes

Versions: 3

Compression:

Stored size: 927 Bytes

Contents

version: 2
jobs:
  build:
    docker:
      - image: circleci/ruby:2.4.2-jessie-node
        environment:
          BUNDLER_VERSION: 2.0.2
    steps:
      - checkout
      - restore_cache:
          keys:
            - v1-dependencies-{{ checksum "Gemfile.lock" }}
            - v1-dependencies-
      - run:
          name: setup bundler
          command: |
            sudo gem update --system
            sudo gem uninstall bundler
            sudo rm /usr/local/bin/bundle
            sudo rm /usr/local/bin/bundler
            sudo gem install bundler
      - run:
          name: install
          command: bundle install --path vendor/bundle
      - save_cache:
          paths:
            - ./vendor/bundle
          key: v1-dependencies-{{ checksum "Gemfile.lock" }}
      - run:
          name: rubocop
          command: bundle exec rubocop
      - run:
          name: rspec
          command: bundle exec rspec

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
practice_terraforming-0.1.5 .circleci/config.yml
practice_terraforming-0.1.4 .circleci/config.yml
practice_terraforming-0.1.3 .circleci/config.yml