diff --git a/.gitignore b/.gitignore index 469f6ad..6cc1546 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ .bundle bin pkg -Gemfile.lock \ No newline at end of file +Gemfile.lock +vendor \ No newline at end of file diff --git a/script/bootstrap b/script/bootstrap new file mode 100755 index 0000000..bf41340 --- /dev/null +++ b/script/bootstrap @@ -0,0 +1,6 @@ +#!/bin/sh +# Usage: script/bootstrap +# Ensures all gems are in vendor/cache and installed locally. + +bundle package --all +bundle install --binstubs --local --path=vendor/gems diff --git a/script/test b/script/test new file mode 100755 index 0000000..fd1ac71 --- /dev/null +++ b/script/test @@ -0,0 +1,5 @@ +#!/bin/sh +# Usage: script/test +# Runs the library's test suite. + +bundle exec rake test