summaryrefslogtreecommitdiff
path: root/lib/bundler/templates/newgem/circleci/config.yml.tt
blob: 79fd0dcc0fe9adf7b6faa371621ea9919ac10729 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
version: 2.1
jobs:
  build:
    docker:
      - image: ruby:<%= RUBY_VERSION %>
    steps:
      - checkout
      - run:
          name: Run the default task
          command: |
            gem install bundler -v <%= Bundler::VERSION %>
            bundle install
            bundle exec rake