6 lines
74 B
Bash
6 lines
74 B
Bash
|
#!/bin/bash
|
||
|
set -e
|
||
|
|
||
|
bundle check || bundle install
|
||
|
bundle exec rspec spec
|