Skip to content

Commit

Permalink
Couchbase added
Browse files Browse the repository at this point in the history
  • Loading branch information
scalabl3 committed Dec 12, 2012
1 parent 852f1c6 commit 4c2d100
Show file tree
Hide file tree
Showing 4 changed files with 60 additions and 0 deletions.
Binary file added TwitterHipster/.DS_Store
Binary file not shown.
8 changes: 8 additions & 0 deletions TwitterHipster/Gemfile
Expand Up @@ -2,6 +2,14 @@ source 'https://rubygems.org'


gem 'rails', '3.2.9' gem 'rails', '3.2.9'


gem 'omniauth'
gem 'omniauth-twitter'
gem 'couchbase', '>= 1.2.0.z.beta3'
gem 'couchbase-model'
gem 'masonry-rails'
gem 'grackle'


# Bundle edge Rails instead: # Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git' # gem 'rails', :git => 'git://github.com/rails/rails.git'


Expand Down
29 changes: 29 additions & 0 deletions TwitterHipster/Gemfile.lock
Expand Up @@ -37,9 +37,19 @@ GEM
coffee-script-source coffee-script-source
execjs execjs
coffee-script-source (1.4.0) coffee-script-source (1.4.0)
couchbase (1.2.0.z.beta5)
multi_json (~> 1.0)
yaji (~> 0.3.2)
couchbase-model (0.5.1)
couchbase (~> 1.2.0.dp)
erubis (2.7.0) erubis (2.7.0)
execjs (1.4.0) execjs (1.4.0)
multi_json (~> 1.0) multi_json (~> 1.0)
grackle (0.2.1)
json
mime-types
oauth
hashie (1.2.0)
hike (1.2.1) hike (1.2.1)
i18n (0.6.1) i18n (0.6.1)
journey (1.0.4) journey (1.0.4)
Expand All @@ -51,8 +61,20 @@ GEM
i18n (>= 0.4.0) i18n (>= 0.4.0)
mime-types (~> 1.16) mime-types (~> 1.16)
treetop (~> 1.4.8) treetop (~> 1.4.8)
masonry-rails (0.1.8)
rails
mime-types (1.19) mime-types (1.19)
multi_json (1.5.0) multi_json (1.5.0)
oauth (0.4.7)
omniauth (1.1.1)
hashie (~> 1.2)
rack
omniauth-oauth (1.0.1)
oauth
omniauth (~> 1.0)
omniauth-twitter (0.0.14)
multi_json (~> 1.3)
omniauth-oauth (~> 1.0)
polyglot (0.3.3) polyglot (0.3.3)
rack (1.4.1) rack (1.4.1)
rack-cache (1.2) rack-cache (1.2)
Expand Down Expand Up @@ -98,13 +120,20 @@ GEM
uglifier (1.3.0) uglifier (1.3.0)
execjs (>= 0.3.0) execjs (>= 0.3.0)
multi_json (~> 1.0, >= 1.0.2) multi_json (~> 1.0, >= 1.0.2)
yaji (0.3.3)


PLATFORMS PLATFORMS
ruby ruby


DEPENDENCIES DEPENDENCIES
coffee-rails (~> 3.2.1) coffee-rails (~> 3.2.1)
couchbase (>= 1.2.0.z.beta3)
couchbase-model
grackle
jquery-rails jquery-rails
masonry-rails
omniauth
omniauth-twitter
rails (= 3.2.9) rails (= 3.2.9)
sass-rails (~> 3.2.3) sass-rails (~> 3.2.3)
uglifier (>= 1.0.3) uglifier (>= 1.0.3)
23 changes: 23 additions & 0 deletions TwitterHipster/config/couchbase.yml
@@ -0,0 +1,23 @@
common: &common
hostname: localhost
port: 8091
username:
password:
pool: default

development:
<<: *common
bucket: twitter_hipster_development

test:
<<: *common
bucket: twitter_hipster_test

# set these environment variables on your production server
production:
hostname: <%= ENV['COUCHBASE_HOST'] %>
port: <%= ENV['COUCHBASE_PORT'] %>
username: <%= ENV['COUCHBASE_USERNAME'] %>
password: <%= ENV['COUCHBASE_PASSWORD'] %>
pool: <%= ENV['COUCHBASE_POOL'] %>
bucket: <%= ENV['COUCHBASE_BUCKET'] %>

0 comments on commit 4c2d100

Please sign in to comment.