diff options
| author | Dan Allen <dan.j.allen@gmail.com> | 2012-12-19 01:55:38 -0700 |
|---|---|---|
| committer | Ryan Waldron <rwaldron@github.com> | 2012-12-19 17:59:02 -0600 |
| commit | a7e7bbe0fc6e7eeb4d78fccd3ad496c409a4a9a9 (patch) | |
| tree | b7ebd15b13e7c77981d59520f64e9d5cdebb0aff | |
| parent | b5bf14fbb5113f4cf7c015a58661670b11b7b1a5 (diff) | |
add Gemfile to enable `bundle install` for setup
- the Gemfile simply redirects bundler to the information in the gemspec
- to bootstrap, you just run: git clone {repo}, bundle install, rake
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | Gemfile | 2 |
2 files changed, 3 insertions, 0 deletions
@@ -1 +1,2 @@ pkg/ +/Gemfile.lock diff --git a/Gemfile b/Gemfile new file mode 100644 index 00000000..e45e65f8 --- /dev/null +++ b/Gemfile @@ -0,0 +1,2 @@ +source :rubygems +gemspec |
