Skip to content

Commit 68de1e3

Browse files
committed
minor: relative paths
1 parent 9d8ed10 commit 68de1e3

File tree

4 files changed

+12
-11
lines changed

4 files changed

+12
-11
lines changed

README.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,15 @@ This is the 10gen-supported Ruby driver for [MongoDB](http://www.mongodb.org).
44

55
This documentation includes other articles of interest, include:
66

7-
1. [A tutorial](http://api.mongodb.org/ruby/current/file.TUTORIAL.html).
8-
2. [Replica Sets in Ruby](http://api.mongodb.org/ruby/current/file.REPLICA_SETS.html).
9-
3. [GridFS in Ruby](http://api.mongodb.org/ruby/current/file.GridFS.html).
10-
4. [Frequently Asked Questions](http://api.mongodb.org/ruby/current/file.FAQ.html).
11-
5. [History](http://api.mongodb.org/ruby/current/file.HISTORY.html).
12-
6. [Credits](http://api.mongodb.org/ruby/current/file.CREDITS.html).
13-
14-
Here's a quick code sample. Again, see the [MongoDB Ruby Tutorial](http://api.mongodb.org/ruby/current/file.TUTORIAL.html)
7+
1. [A tutorial](file.TUTORIAL.html).
8+
2. [Replica Sets in Ruby](file.REPLICA_SETS.html).
9+
3. [Write Concern in Ruby](file.WRITE_CONCERN.html).
10+
4. [GridFS in Ruby](file.GridFS.html).
11+
5. [Frequently Asked Questions](http://api.mongodb.org/ruby/current/file.FAQ.html).
12+
6. [History](http://api.mongodb.org/ruby/current/file.HISTORY.html).
13+
7. [Credits](http://api.mongodb.org/ruby/current/file.CREDITS.html).
14+
15+
Here's a quick code sample. Again, see the [MongoDB Ruby Tutorial](file.TUTORIAL.html)
1516
for much more:
1617

1718
require 'rubygems'

Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ task :rdoc do
161161
version = eval(File.read("mongo.gemspec")).version
162162
out = File.join('html', version.to_s)
163163
FileUtils.rm_rf('html')
164-
system "rdoc --main README.rdoc --op #{out} --inline-source --quiet README.rdoc `find lib -name '*.rb'`"
164+
system "rdoc --main README.md --op #{out} --inline-source --quiet README.md `find lib -name '*.rb'`"
165165
end
166166

167167
desc "Generate YARD documentation"

docs/GridFS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ GridFS, which stands for "Grid File Store," is a specification for storing large
44

55
### The Grid class
66

7-
The [Grid class](http://api.mongodb.org/ruby/current/Mongo/Grid.html) represents the core GridFS implementation. Grid gives you a simple file store, keyed on a unique ID. This means that duplicate filenames aren't a problem. To use the Grid class, first make sure you have a database, and then instantiate a Grid:
7+
The [Grid class](Mongo/Grid.html) represents the core GridFS implementation. Grid gives you a simple file store, keyed on a unique ID. This means that duplicate filenames aren't a problem. To use the Grid class, first make sure you have a database, and then instantiate a Grid:
88

99

1010
@db = Mongo::Connection.new.db('social_site')

docs/TUTORIAL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
This tutorial gives many common examples of using MongoDB with the Ruby driver. If you're looking for information on data modeling, see [MongoDB Data Modeling and Rails](http://www.mongodb.org/display/DOCS/MongoDB+Data+Modeling+and+Rails). Links to the various object mappers are listed on our [object mappers page](http://www.mongodb.org/display/DOCS/Object+Mappers+for+Ruby+and+MongoDB).
44

5-
Interested in GridFS? See [GridFS in Ruby](http://www.mongodb.org/display/DOCS/GridFS+in+Ruby).
5+
Interested in GridFS? See [GridFS in Ruby](file.GridFS.html).
66

77
As always, the [latest source for the Ruby driver](http://github.com/mongodb/mongo-ruby-driver) can be found on [github](http://github.com/mongodb/mongo-ruby-driver/).
88

0 commit comments

Comments
 (0)