From c477059f3f3815cb0e3f6bfdf3590e133fe24f92 Mon Sep 17 00:00:00 2001 From: Chris Strom Date: Tue, 28 Dec 2010 19:57:39 -0500 Subject: [PATCH] Switch to bundler for managing gem. Paired with Alex Bugosh --- Gemfile | 4 ++++ Gemfile.lock | 27 +++++++++++++++++++++++++++ lib/couch_docs/version.rb | 3 +++ 3 files changed, 34 insertions(+) create mode 100644 Gemfile create mode 100644 Gemfile.lock create mode 100644 lib/couch_docs/version.rb diff --git a/Gemfile b/Gemfile new file mode 100644 index 0000000..7d41970 --- /dev/null +++ b/Gemfile @@ -0,0 +1,4 @@ +source "http://rubygems.org" + +# Specify your gem's dependencies in couch_docs.gemspec +gemspec diff --git a/Gemfile.lock b/Gemfile.lock new file mode 100644 index 0000000..8c7a48d --- /dev/null +++ b/Gemfile.lock @@ -0,0 +1,27 @@ +PATH + remote: . + specs: + couch_docs (1.2.2) + directory_watcher (>= 1.3.1) + json (>= 1.2.0) + rest-client (~> 1.1.0) + +GEM + remote: http://rubygems.org/ + specs: + directory_watcher (1.3.2) + json (1.4.6) + mime-types (1.16) + rest-client (1.1.0) + mime-types (>= 1.16) + rspec (1.3.1) + +PLATFORMS + ruby + +DEPENDENCIES + couch_docs! + directory_watcher (>= 1.3.1) + json (>= 1.2.0) + rest-client (~> 1.1.0) + rspec (~> 1.3.0) diff --git a/lib/couch_docs/version.rb b/lib/couch_docs/version.rb new file mode 100644 index 0000000..81f2c57 --- /dev/null +++ b/lib/couch_docs/version.rb @@ -0,0 +1,3 @@ +module CouchDocs + VERSION = "1.2.2" +end