Sha256: 1a706ed521d16b50296787feb7ba568d3bf6cfdb9f2de8c00b4ef6134dde58eb

Contents?: true

Size: 877 Bytes

Versions: 10

Compression:

Stored size: 877 Bytes

Contents

version: 2.1
jobs:
  build:
    working_directory: ~/project
    docker:
      - image: bkuhlmann/alpine-ruby:latest
    steps:
      - checkout

      - restore_cache:
          name: Gems Restore
          keys:
            - gem-cache-{{.Branch}}-{{checksum "Gemfile.lock"}}
            - gem-cache-

      - run:
          name: Gems Install
          command: |
            gem update --system
            bundle config set path "vendor/bundle"
            bundle install

      - save_cache:
          name: Gems Store
          key: gem-cache-{{.Branch}}-{{checksum "Gemfile.lock"}}
          paths:
            - vendor/bundle

      - run:
          name: Rake
          command: bundle exec rake

<% if settings.build_simple_cov %>
      - store_artifacts:
          name: SimpleCov Report
          path: ~/project/coverage
          destination: coverage
<% end %>

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
rubysmith-7.9.0 lib/rubysmith/templates/%project_name%/.circleci/config.yml.erb
rubysmith-7.8.0 lib/rubysmith/templates/%project_name%/.circleci/config.yml.erb
rubysmith-7.7.0 lib/rubysmith/templates/%project_name%/.circleci/config.yml.erb
rubysmith-7.6.0 lib/rubysmith/templates/%project_name%/.circleci/config.yml.erb
rubysmith-7.5.0 lib/rubysmith/templates/%project_name%/.circleci/config.yml.erb
rubysmith-7.4.0 lib/rubysmith/templates/%project_name%/.circleci/config.yml.erb
rubysmith-7.3.0 lib/rubysmith/templates/%project_name%/.circleci/config.yml.erb
rubysmith-7.2.0 lib/rubysmith/templates/%project_name%/.circleci/config.yml.erb
rubysmith-7.1.0 lib/rubysmith/templates/%project_name%/.circleci/config.yml.erb
rubysmith-7.0.0 lib/rubysmith/templates/%project_name%/.circleci/config.yml.erb