mongodb-mongo_record 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
data/README.rdoc CHANGED
@@ -36,7 +36,7 @@ A quick code sample:
36
36
  == Installation
37
37
 
38
38
  $ gem sources -a http://gems.github.com
39
- $ sudo gem install mongodb-mongo-activerecord-ruby
39
+ $ sudo gem install mongodb-mongo_record
40
40
 
41
41
  MongoRecord depends on the Mongo Ruby Driver, version 0.5.4 or higher.
42
42
  Installing the MongoRecord gem will also install the Mongo Ruby Driver if you
@@ -49,6 +49,10 @@ you can install it as a gem from the source by typing
49
49
 
50
50
  $ rake gem:install
51
51
 
52
+ Note: when you install the gem this way it is called "mongo_record", not
53
+ "mongodb-mongo_record". In either case, you "require 'mongo_record'" in your
54
+ source code.
55
+
52
56
 
53
57
  == Getting Started
54
58
 
@@ -1,11 +1,11 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'mongo_record'
3
- s.version = '0.1.1'
3
+ s.version = '0.1.2'
4
4
  s.platform = Gem::Platform::RUBY
5
5
  s.summary = 'ActiveRecord-like models for the 10gen Mongo DB'
6
6
  s.description = 'MongoRecord is an ActiveRecord-like framework for the 10gen Mongo database. For more information about Mongo, see http://www.mongodb.org.'
7
7
 
8
- s.add_dependency('mongodb-mongo', ['>= 0.5.4'])
8
+ s.add_dependency('mongodb-mongo', ['>= 0.6.1'])
9
9
 
10
10
  s.require_paths = ['lib']
11
11
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mongodb-mongo_record
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jim Menard
@@ -19,7 +19,7 @@ dependencies:
19
19
  requirements:
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 0.5.4
22
+ version: 0.6.1
23
23
  version:
24
24
  description: MongoRecord is an ActiveRecord-like framework for the 10gen Mongo database. For more information about Mongo, see http://www.mongodb.org.
25
25
  email: jim@10gen.com