Sha256: 1b0109e7565dd30e45872755e4158fd68b0a277c534e7dcd547a2678f9d751ab
Contents?: true
Size: 835 Bytes
Versions: 31
Compression:
Stored size: 835 Bytes
Contents
image: ruby:2.3.1 stages: - setup - test - deploy setup: stage: setup allow_failure: true script: - apt-get update -qy - apt-get install -y nodejs - bundle install --path /cache rubocop-testing: stage: test allow_failure: true script: - gem install rubocop - rubocop --lint security-testing: stage: test allow_failure: true script: - gem install brakeman - brakeman rspec-testing: stage: test allow_failure: true script: - gem install rspec - rspec rubygems-deploy: stage: deploy allow_failure: false script: - bundle install - gem install rake - version=$(rake install | grep -o 'pkg/zuora_api-.*gem') - curl -u $USERNAME:$PASSWORD https://rubygems.org/api/v1/api_key.yaml > ~/.gem/credentials; chmod 0600 ~/.gem/credentials - gem push $version only: - master
Version data entries
31 entries across 31 versions & 1 rubygems