Sha256: 3924dc4ad23771b499e4e9b57f3290d724baf760974732724e22397b6fc5dd5e
Contents?: true
Size: 845 Bytes
Versions: 6
Compression:
Stored size: 845 Bytes
Contents
version: 2 jobs: build: docker: - image: circleci/ruby:2.4.2-jessie-node environment: BUNDLER_VERSION: 2.0.2 steps: - checkout - restore_cache: keys: - v1-dependencies-{{ checksum "Gemfile.lock" }} - v1-dependencies- - run: name: setup bundler command: | sudo gem update --system sudo gem uninstall -ax bundler sudo gem install bundle - run: name: install command: bundle install --path vendor/bundle - save_cache: paths: - ./vendor/bundle key: v1-dependencies-{{ checksum "Gemfile.lock" }} - run: name: rubocop command: bundle exec rubocop - run: name: rspec command: bundle exec rspec
Version data entries
6 entries across 6 versions & 1 rubygems