Skip to content

Commit

Permalink
add script tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
technoweenie committed Mar 19, 2013
1 parent d300f40 commit 9e2f70b
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
.bundle
bin
pkg
Gemfile.lock
Gemfile.lock
vendor
6 changes: 6 additions & 0 deletions script/bootstrap
Original file line number Diff line number Diff line change
@@ -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
5 changes: 5 additions & 0 deletions script/test
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/bin/sh
# Usage: script/test
# Runs the library's test suite.

bundle exec rake test

0 comments on commit 9e2f70b

Please sign in to comment.