Sha256: 335cc416910697a08d17d9dc394792713fd370a7d37abfba65e3cd8aa84c2e9e

Contents?: true

Size: 1.07 KB

Versions: 6

Compression:

Stored size: 1.07 KB

Contents

      # This references the default Ruby container from
# the Docker Hub.
# https://registry.hub.docker.com/_/ruby/
# If you want to use a specific version you would use a tag:
# ruby:2.2.2
box: ruby:2.2.3
# You can also use services such as databases. Read more on our dev center:
# http://devcenter.wercker.com/docs/services/index.html
services:
  - id: redis
    # - postgres
    # http://devcenter.wercker.com/docs/services/postgresql.html

    # - mongodb
    # http://devcenter.wercker.com/docs/services/mongodb.html

# This is the build pipeline. Pipelines are the core of wercker
# Read more about pipelines on our dev center
# http://devcenter.wercker.com/docs/pipelines/index.html
build:
    # Steps make up the actions in your pipeline
    # Read more about steps on our dev center:
    # http://devcenter.wercker.com/docs/steps/index.html
    steps:
        - bundle-install

        - script:
          name: Export Redis url
          code: export REDIS_URL="redis://$REDIS_PORT_6379_TCP_ADDR:6379"

        - script:
            name: Run tests
            code: bundle exec rake test

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
fault_tolerant_redis-activesupport-4.0.6 wercker.yml
fault_tolerant_redis-activesupport-4.0.5 wercker.yml
fault_tolerant_redis-activesupport-4.0.4 wercker.yml
fault_tolerant_redis-activesupport-4.0.3 wercker.yml
fault_tolerant_redis-activesupport-4.0.2 wercker.yml
fault_tolerant_redis-activesupport-4.0.1 wercker.yml