mirror of
https://github.com/zhigang1992/RestKit.git
synced 2026-04-13 09:40:27 +08:00
18 lines
266 B
Bash
Executable File
18 lines
266 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
# Configure RVM
|
|
[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm"
|
|
source .rvmrc
|
|
|
|
# Git submodules
|
|
git submodule update --init
|
|
|
|
# Bundler
|
|
bundle
|
|
|
|
# Run the build
|
|
rake server:stop || true
|
|
rake server:start
|
|
rake test
|
|
rake server:stop
|