Sha256: ef721c0e586589e8dd64e5277d4e0d85b878843f2f69d84c1d87c3c8b90b726d

Contents?: true

Size: 609 Bytes

Versions: 2

Compression:

Stored size: 609 Bytes

Contents

box: wercker/ruby
# Build definition
build:
  # The steps that will be executed on build
  steps:
    # 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 rake spec

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
SgfParser-3.0.1 wercker.yml
SgfParser-3.0.0 wercker.yml