wercker.yml
box: ruby:2.3.0
# Build definition
build:
steps:
- script:
name: update bundler
code: gem update bundler
# A step that executes `bundle install` command
- bundle-install:
jobs: 4
# 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