Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
shenoudab committed Jan 8, 2011
0 parents commit 24ec50d
Show file tree
Hide file tree
Showing 53 changed files with 10,365 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
@@ -0,0 +1,4 @@
.bundle
db/*.sqlite3
log/*.log
tmp/**/*
12 changes: 12 additions & 0 deletions Gemfile
@@ -0,0 +1,12 @@
source 'http://rubygems.org'

gem 'rails', '3.0.3'

gem 'couchrest', :git => 'git://github.com/couchrest/couchrest.git'
gem 'couchrest_model', :git => 'git://github.com/couchrest/couchrest_model.git'

gem 'orm_adapter', :git => 'git://github.com/shenoudab/orm_adapter.git'
gem 'devise',:git => 'git://github.com/plataformatec/devise.git' # '1.2.rc'
gem 'devise_couch', :git => 'git://github.com/shenoudab/devise_couch.git'

gem 'rails3-generators', :git => 'git://github.com/shenoudab/rails3-generators.git'
130 changes: 130 additions & 0 deletions Gemfile.lock
@@ -0,0 +1,130 @@
GIT
remote: git://github.com/couchrest/couchrest.git
revision: 12828d3122a78428c86f6e5eabe5ac6024a70835
specs:
couchrest (1.0.1)
json (~> 1.4.6)
mime-types (~> 1.15)
rest-client (~> 1.5.1)

GIT
remote: git://github.com/couchrest/couchrest_model.git
revision: 1d0df87e34a1a01b41adecea9538fe143d95bd91
specs:
couchrest_model (1.0.0.beta8)
activemodel (~> 3.0.0.rc)
couchrest (~> 1.0.1)
mime-types (~> 1.15)
railties (~> 3.0.0.rc)
tzinfo (~> 0.3.22)

GIT
remote: git://github.com/plataformatec/devise.git
revision: fb4ec6e9da702aba77e536027a24aacada94ccd2
specs:
devise (1.2.rc)
bcrypt-ruby (~> 2.1.2)
orm_adapter (~> 0.0.3)
warden (~> 1.0.3)

GIT
remote: git://github.com/shenoudab/devise_couch.git
revision: 4fc35f731fbfa870751982e742d6011fd8ba1a98
specs:
devise_couch (1.0.0.beta2)

GIT
remote: git://github.com/shenoudab/orm_adapter.git
revision: 0561c1cacfc9c839ad4ebcf132e9f5cbf1e9e7c7
specs:
orm_adapter (0.0.3)

GIT
remote: git://github.com/shenoudab/rails3-generators.git
revision: e8c8f70af1590af6380efadefcfe3de28614e658
specs:
rails3-generators (0.12.1)

GEM
remote: http://rubygems.org/
specs:
abstract (1.0.0)
actionmailer (3.0.3)
actionpack (= 3.0.3)
mail (~> 2.2.9)
actionpack (3.0.3)
activemodel (= 3.0.3)
activesupport (= 3.0.3)
builder (~> 2.1.2)
erubis (~> 2.6.6)
i18n (~> 0.4)
rack (~> 1.2.1)
rack-mount (~> 0.6.13)
rack-test (~> 0.5.6)
tzinfo (~> 0.3.23)
activemodel (3.0.3)
activesupport (= 3.0.3)
builder (~> 2.1.2)
i18n (~> 0.4)
activerecord (3.0.3)
activemodel (= 3.0.3)
activesupport (= 3.0.3)
arel (~> 2.0.2)
tzinfo (~> 0.3.23)
activeresource (3.0.3)
activemodel (= 3.0.3)
activesupport (= 3.0.3)
activesupport (3.0.3)
arel (2.0.6)
bcrypt-ruby (2.1.3)
builder (2.1.2)
erubis (2.6.6)
abstract (>= 1.0.0)
i18n (0.5.0)
json (1.4.6)
mail (2.2.14)
activesupport (>= 2.3.6)
i18n (>= 0.4.0)
mime-types (~> 1.16)
treetop (~> 1.4.8)
mime-types (1.16)
polyglot (0.3.1)
rack (1.2.1)
rack-mount (0.6.13)
rack (>= 1.0.0)
rack-test (0.5.7)
rack (>= 1.0)
rails (3.0.3)
actionmailer (= 3.0.3)
actionpack (= 3.0.3)
activerecord (= 3.0.3)
activeresource (= 3.0.3)
activesupport (= 3.0.3)
bundler (~> 1.0)
railties (= 3.0.3)
railties (3.0.3)
actionpack (= 3.0.3)
activesupport (= 3.0.3)
rake (>= 0.8.7)
thor (~> 0.14.4)
rake (0.8.7)
rest-client (1.5.1)
mime-types (>= 1.16)
thor (0.14.6)
treetop (1.4.9)
polyglot (>= 0.3.1)
tzinfo (0.3.23)
warden (1.0.3)
rack (>= 1.0.0)

PLATFORMS
ruby

DEPENDENCIES
couchrest!
couchrest_model!
devise!
devise_couch!
orm_adapter!
rails (= 3.0.3)
rails3-generators!

0 comments on commit 24ec50d

Please sign in to comment.