openid_mongodb_store 0.0.0 → 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.rdoc +4 -0
- data/VERSION +1 -1
- metadata +1 -1
data/README.rdoc
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
OpenID requires some form of storage for its various cryptographic nuts and bolts. This project lets you use MongoDB (through MongoMapper) for that storage. This was pretty much copied from the ActiveRecord adaptor.
|
|
4
4
|
|
|
5
|
+
== Install
|
|
6
|
+
|
|
7
|
+
gem install openid_mongodb_store
|
|
8
|
+
|
|
5
9
|
Will inherit whatever MongoMapper settings already exist. If you are using localhost and no username or password, only the database name is required:
|
|
6
10
|
require 'mongomapper'
|
|
7
11
|
MongoMapper.database = 'my_db_name'
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.0.
|
|
1
|
+
0.0.1
|