We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0332e58 commit 3ce0721Copy full SHA for 3ce0721
.gitignore
@@ -9,5 +9,6 @@ coverage/
9
doc/
10
pkg/
11
tmp/
12
+vendor/
13
.rbx
14
.rvmrc
script/bootstrap
@@ -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
+gem list -i rdoc >/dev/null 2>&1
+ gem install rdoc
15
+rake gem:install_dependencies
0 commit comments