Sha256: c8a5983e6fd8e0e735bd88c0f727c4e9ce060e6cb09d143f6676224f8d1b7e6b

Contents?: true

Size: 902 Bytes

Versions: 26

Compression:

Stored size: 902 Bytes

Contents

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

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

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

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

      - run:
          name: Build
          command: bundle exec rake

<% if configuration.build_simple_cov %>
      - store_artifacts:
          name: SimpleCov Artifacts Upload
          path: ~/project/coverage
          destination: coverage
<% end %>

Version data entries

26 entries across 26 versions & 1 rubygems

Version Path
rubysmith-5.8.1 lib/rubysmith/templates/%project_name%/.circleci/config.yml.erb
rubysmith-5.8.0 lib/rubysmith/templates/%project_name%/.circleci/config.yml.erb
rubysmith-5.7.0 lib/rubysmith/templates/%project_name%/.circleci/config.yml.erb
rubysmith-5.6.0 lib/rubysmith/templates/%project_name%/.circleci/config.yml.erb
rubysmith-5.5.0 lib/rubysmith/templates/%project_name%/.circleci/config.yml.erb
rubysmith-5.4.0 lib/rubysmith/templates/%project_name%/.circleci/config.yml.erb
rubysmith-5.3.0 lib/rubysmith/templates/%project_name%/.circleci/config.yml.erb
rubysmith-5.2.0 lib/rubysmith/templates/%project_name%/.circleci/config.yml.erb
rubysmith-5.1.0 lib/rubysmith/templates/%project_name%/.circleci/config.yml.erb
rubysmith-5.0.1 lib/rubysmith/templates/%project_name%/.circleci/config.yml.erb
rubysmith-4.9.0 lib/rubysmith/templates/%project_name%/.circleci/config.yml.erb
rubysmith-4.8.0 lib/rubysmith/templates/%project_name%/.circleci/config.yml.erb
rubysmith-4.7.0 lib/rubysmith/templates/%project_name%/.circleci/config.yml.erb
rubysmith-4.6.1 lib/rubysmith/templates/%project_name%/.circleci/config.yml.erb
rubysmith-4.6.0 lib/rubysmith/templates/%project_name%/.circleci/config.yml.erb
rubysmith-4.5.0 lib/rubysmith/templates/%project_name%/.circleci/config.yml.erb
rubysmith-4.4.0 lib/rubysmith/templates/%project_name%/.circleci/config.yml.erb
rubysmith-4.3.0 lib/rubysmith/templates/%project_name%/.circleci/config.yml.erb
rubysmith-4.2.0 lib/rubysmith/templates/%project_name%/.circleci/config.yml.erb
rubysmith-4.1.0 lib/rubysmith/templates/%project_name%/.circleci/config.yml.erb