Sha256: ef81f11ed135b939b2a0ade5df926c247050ceb6bd5c2a6a42309f2528f767c3

Contents?: true

Size: 1010 Bytes

Versions: 2

Compression:

Stored size: 1010 Bytes

Contents

name: identity-cache

up:
  - homebrew:
    - postgresql
  - ruby: 2.4.1
  - railgun
  - bundler

env:
  RAILGUN_HOST: identity-cache.railgun
  MYSQL_HOST: identity-cache.railgun
  POSTGRES_HOST: identity-cache.railgun
  MEMCACHED_HOST: identity-cache.railgun

commands:
  test:
    syntax:
      optional:
        argument: file
        optional: args...
    desc: 'Run tests'
    run: |
      if [[ $# -eq 0 ]]; then
        bundle exec rake test
      else
        bundle exec ruby -I test "$@"
      fi

  style:
    desc: 'Run rubocop checks'
    run: bundle exec rubocop "$@"

  check:
    desc: 'Run tests and style checks'
    run: bundle exec rake test && bundle exec rubocop

  benchmark-cpu:
    desc: 'Run the identity cache CPU benchmark'
    run: bundle exec rake benchmark:cpu

  profile:
    desc: 'Profile IDC code'
    run: bundle exec rake profile:run

  update-serialization-format:
    desc: 'Update serialization format test fixture'
    run: bundle exec rake update_serialization_format

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
identity_cache-1.0.1 dev.yml
identity_cache-1.0.0 dev.yml