Sha256: 1afa280d1930e75d01de73ed73ce02506e06558c5a92488755f5adf6af5e16f7

Contents?: true

Size: 976 Bytes

Versions: 1

Compression:

Stored size: 976 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.2

        - script:
            name: bundle
            code: gem install bundler

        # 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: rspec
           code: bundle exec rspec

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
backlog-api-client-0.0.1 wercker.yml