Sha256: 9fdf1058548ded3420cfca8336790d364038a12227792855ff8869eda8a62ece

Contents?: true

Size: 912 Bytes

Versions: 2

Compression:

Stored size: 912 Bytes

Contents

version: 2
jobs:
  test:
    working_directory: ~/calculated_attributes
    docker:
      - image: circleci/ruby:2.3
        environment:
          GEM_HOME: ~/calculated_attributes/vendor/bundle
    steps:
      - checkout
      - restore_cache:
          key: dependency-cache-{{ checksum "calculated_attributes.gemspec" }}
      - run:
          name: bundle-install
          command: bundle check || bundle install --jobs=4 --retry=3 
      - run:
          name: appraisal-install
          command: bundle exec appraisal install
      - save_cache:
          key: dependency-cache-{{ checksum "calculated_attributes.gemspec" }}
          paths:
            - ./vendor/bundle
      - run:
          name: appraisal-rspec
          command: bundle exec appraisal rspec
      - run:
          name: rubocop
          command: bundle exec rubocop
      
workflows:
  version: 2
  test:
    jobs:
      - test

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
calculated_attributes-0.3.0 .circleci/config.yml
calculated_attributes-0.2.0 .circleci/config.yml