Sha256: 215864e1eb3b8d212da4fa4a3a284ac5b08f055f4e72ed376a0ccb7176d40c82

Contents?: true

Size: 962 Bytes

Versions: 1

Compression:

Stored size: 962 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.3

        # 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)"

        - script:
           name: rspec
           code: bundle exec rspec spec/

        - script:
           name: cucumber
           code: bundle exec cucumber features/

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
clicoder-0.0.6 wercker.yml