diff options
| author | mo khan <mo@mokhan.ca> | 2015-02-21 21:31:26 -0700 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2015-02-21 21:31:26 -0700 |
| commit | d7e75d21686d847ff53c9608f7df960f5c6365a7 (patch) | |
| tree | 5ec5bb572e3f85d3ea5c5d4337ccfae4260a2f0c | |
| parent | b87ca62368c2435a52573ff5352c93feb0caa548 (diff) | |
add ruby driver.
| -rw-r--r-- | week-7/final7/Gemfile | 6 | ||||
| -rw-r--r-- | week-7/final7/Gemfile.lock | 15 |
2 files changed, 21 insertions, 0 deletions
diff --git a/week-7/final7/Gemfile b/week-7/final7/Gemfile new file mode 100644 index 0000000..4afc7e0 --- /dev/null +++ b/week-7/final7/Gemfile @@ -0,0 +1,6 @@ +# A sample Gemfile +source "https://rubygems.org" + +gem 'mongo' +gem 'bson_ext' + diff --git a/week-7/final7/Gemfile.lock b/week-7/final7/Gemfile.lock new file mode 100644 index 0000000..6020b5a --- /dev/null +++ b/week-7/final7/Gemfile.lock @@ -0,0 +1,15 @@ +GEM + remote: https://rubygems.org/ + specs: + bson (1.12.0) + bson_ext (1.12.0) + bson (~> 1.12.0) + mongo (1.12.0) + bson (= 1.12.0) + +PLATFORMS + ruby + +DEPENDENCIES + bson_ext + mongo |
