Trevoke/SGFParser

View on GitHub
wercker.yml

Summary

Maintainability
Test Coverage
box: 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