Sha256: ad8ff838c96e904063c094a4862e5e793fdc1ecef26dbf81aa74967680e193e4

Contents?: true

Size: 897 Bytes

Versions: 5

Compression:

Stored size: 897 Bytes

Contents

box: wercker/rvm
# Build definition
build:
    # The steps that will be executed on build
    # See the Ruby section on the wercker devcenter:
    # http://devcenter.wercker.com/articles/languages/ruby.html
    steps:
        # Uncomment this to force RVM to use a specific Ruby version
        # - rvm-use:
            # version: 2.1.0

        # A step that executes `bundle install` command
        - bundle-install

        # A custom script step, name value is used in the UI
        # and the code value contains the command that get executed
        - script:
            name: echo ruby information
            code: |
                echo "ruby version $(ruby --version) running"
                echo "from location $(which ruby)"
                echo -p "gem list: $(gem list)"

        # Add more steps here:
        - script:
             name: rake
             code: bundle exec rake

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
retriable-2.0.0.beta5 wercker.yml
retriable-2.0.0.beta4 wercker.yml
retriable-2.0.0.beta3 wercker.yml
retriable-2.0.0.beta2 wercker.yml
retriable-2.0.0.beta1 wercker.yml