Sha256: f5357db5f02845be4b1a81c7fb016371fa2b2c642a6759bff961d04c4dcf447d

Contents?: true

Size: 992 Bytes

Versions: 3

Compression:

Stored size: 992 Bytes

Contents

version: 2
jobs:
  build:
    working_directory: ~/project
    docker:
      - image: circleci/ruby:<%= config.dig(:versions, :ruby) %>
        environment:
          BUNDLE_JOBS: 3
          BUNDLE_RETRY: 3
          BUNDLE_PATH: vendor/bundle
          EDITOR: vim
          RAILS_ENV: test
    steps:
      - checkout

      - type: cache-restore
        name: Bundler Cache Restore
        key: bundle-{{ checksum "Gemfile" }}

      - run:
          name: Bundler Install
          command: |
            gem update --system
            bundle check || bundle install
            gem install rails

      - type: cache-save
        name: Bundler Cache Store
        key: bundle-{{ checksum "Gemfile" }}
        paths:
          - vendor/bundle

      - run:
          name: Rake Run
          command: bundle exec rake

<%- if config.dig(:generate, :code_climate) -%>
      - run:
          name: Code Climate Analyze
          command: bundle exec codeclimate-test-reporter
<%- end -%>

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
gemsmith-11.3.0 lib/gemsmith/templates/%gem_name%/circle.yml.tt
gemsmith-11.2.0 lib/gemsmith/templates/%gem_name%/circle.yml.tt
gemsmith-11.1.0 lib/gemsmith/templates/%gem_name%/circle.yml.tt