Skip to content

Commit 3ce0721

Browse files
committed
adding a bootstrap script for getting everything up and running
1 parent 0332e58 commit 3ce0721

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,6 @@ coverage/
99
doc/
1010
pkg/
1111
tmp/
12+
vendor/
1213
.rbx
1314
.rvmrc

script/bootstrap

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
#!/usr/bin/env sh
2+
3+
gem list -i bones >/dev/null 2>&1
4+
rc=$?
5+
if [[ $rc != 0 ]]; then
6+
gem install bones
7+
fi
8+
9+
gem list -i rdoc >/dev/null 2>&1
10+
rc=$?
11+
if [[ $rc != 0 ]]; then
12+
gem install rdoc
13+
fi
14+
15+
rake gem:install_dependencies

0 commit comments

Comments
 (0)