Skip to content

Commit

Permalink
Require pre-release couchbase from git directly
Browse files Browse the repository at this point in the history
  • Loading branch information
davidjrice committed Jul 27, 2011
1 parent 5dcc85e commit d5250c3
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Gemfile
@@ -1,4 +1,5 @@
source "http://rubygems.org"

gem "active_support"
gem "couchbase-ruby-client"
# gem "couchbase-ruby-client", :require => "couchbase"
gem "couchbase-ruby-client", :git => "git://github.com/couchbase/couchbase-ruby-client.git", :require => "couchbase"
27 changes: 27 additions & 0 deletions Gemfile.lock
@@ -0,0 +1,27 @@
GIT
remote: git://github.com/couchbase/couchbase-ruby-client.git
revision: 119212c40e06a700528303c8015bb5922603360e
specs:
couchbase-ruby-client (0.9.1)
curb (~> 0.7.15)
memcached (~> 1.2.7)
will_paginate (~> 2.3)
yajl-ruby (~> 0.8.2)

GEM
remote: http://rubygems.org/
specs:
active_support (3.0.0)
activesupport (= 3.0.0)
activesupport (3.0.0)
curb (0.7.15)
memcached (1.2.7.1)
will_paginate (2.3.15)
yajl-ruby (0.8.2)

PLATFORMS
ruby

DEPENDENCIES
active_support
couchbase-ruby-client!
2 changes: 1 addition & 1 deletion hello-world.rb
Expand Up @@ -2,7 +2,7 @@
require 'bundler/setup'
Bundler.require(:default)

client = Couchbase.new "http://109.169.74.98:8091/pools/default"
client = Couchbase.new "http://localhost:8091/pools/default"
begin
spoon = client.get "spoon"
puts spoon
Expand Down

0 comments on commit d5250c3

Please sign in to comment.