Sha256: 3398612fa71cacce82f6c198431ecb02a7496a6b7357856f77b7d9c535de08a6

Contents?: true

Size: 716 Bytes

Versions: 18

Compression:

Stored size: 716 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

Version data entries

18 entries across 18 versions & 1 rubygems

Version Path
rubysmith-3.4.0 lib/rubysmith/templates/%project_name%/.circleci/config.yml.erb
rubysmith-3.3.0 lib/rubysmith/templates/%project_name%/.circleci/config.yml.erb
rubysmith-3.2.0 lib/rubysmith/templates/%project_name%/.circleci/config.yml.erb
rubysmith-3.1.0 lib/rubysmith/templates/%project_name%/.circleci/config.yml.erb
rubysmith-3.0.1 lib/rubysmith/templates/%project_name%/.circleci/config.yml.erb
rubysmith-3.0.0 lib/rubysmith/templates/%project_name%/.circleci/config.yml.erb
rubysmith-2.0.2 lib/rubysmith/templates/%project_name%/.circleci/config.yml.erb
rubysmith-2.0.1 lib/rubysmith/templates/%project_name%/.circleci/config.yml.erb
rubysmith-2.0.0 lib/rubysmith/templates/%project_name%/.circleci/config.yml.erb
rubysmith-1.3.0 lib/rubysmith/templates/%project_name%/.circleci/config.yml.erb
rubysmith-1.2.0 lib/rubysmith/templates/%project_name%/.circleci/config.yml.erb
rubysmith-1.1.1 lib/rubysmith/templates/%project_name%/.circleci/config.yml.erb
rubysmith-1.1.0 lib/rubysmith/templates/%project_name%/.circleci/config.yml.erb
rubysmith-1.0.0 lib/rubysmith/templates/%project_name%/.circleci/config.yml.erb
rubysmith-0.16.1 lib/rubysmith/templates/%project_name%/.circleci/config.yml.erb
rubysmith-0.16.0 lib/rubysmith/templates/%project_name%/.circleci/config.yml.erb
rubysmith-0.15.0 lib/rubysmith/templates/%project_name%/.circleci/config.yml.erb
rubysmith-0.14.0 lib/rubysmith/templates/%project_name%/.circleci/config.yml.erb