Navigation Menu

Skip to content

Commit

Permalink
update mongo driver to include my patch. mongodb/mongo-ruby-driver#12
Browse files Browse the repository at this point in the history
Signed-off-by: David A. Cuadrado <krawek@gmail.com>
  • Loading branch information
dcu committed Dec 1, 2010
1 parent 293a1e9 commit bea6486
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions config/environment.rb
Expand Up @@ -21,8 +21,8 @@
# config.gem "hpricot", :version => '0.6', :source => "http://code.whytheluckystiff.net"
# config.gem "sqlite3-ruby", :lib => "sqlite3"
# config.gem "aws-s3", :lib => "aws/s3"
config.gem "bson", :version => "1.0.9", :lib => "bson"
config.gem "mongo", :version => "1.0.9"
config.gem "bson", :version => "1.1.4", :lib => "bson"
config.gem "mongo", :version => "1.1.4"
config.gem "plucky", :version => "0.3.5"

if RUBY_PLATFORM !~ /mswin|mingw/
Expand Down
Expand Up @@ -2,6 +2,7 @@ module OpenIdAuthentication
class Association
include MongoMapper::Document

key :_id, String
key :issued, Integer
key :lifetime, Integer
key :handle, String
Expand Down
Expand Up @@ -2,6 +2,7 @@ module OpenIdAuthentication
class Nonce
include MongoMapper::Document

key :_id, String
key :timestamp, Integer
key :server_url, String
key :salt, String
Expand Down

0 comments on commit bea6486

Please sign in to comment.