<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -50,14 +50,14 @@ The recommended method to enable pdf_filler in your project is adding the pdf_fi
 
   Rails::Initializer.run do |config|
     ...
-    config.gem 'gbdev-pdf_filler', :lib =&gt; 'pdf_filler', source =&gt; 'http://gems.github.com/'
+    config.gem 'renorb-pdf_filler', :lib =&gt; 'pdf_filler', source =&gt; 'http://gems.github.com/'
   end
 
 Run &lt;tt&gt;sudo rake gems:install&lt;/tt&gt; to install the gem.
 
 Another alternative is to install pdf_filler as a Rails plugin:
 
-  script/plugin install git://github.com/gbdev/pdf_filler.git
+  script/plugin install git://github.com/renorb/pdf_filler.git
 
 
 == Usage
@@ -69,18 +69,18 @@ Another alternative is to install pdf_filler as a Rails plugin:
 3. For a single page use the Page object?
 
     // ** Single page **
-    page = GBDev::PDF::Page.new('/path/to/template.pdf')
+    page = RenoRB::PDF::Page.new('/path/to/template.pdf')
     page.set_text(:full_name, 'Wes Hays')
     page.save_to('/path/to/save.pdf')
   
 4. For a collection of pages to be added to a single PDF use a Book object.
 
-    book = GBDev::PDF::Book.new
+    book = RenoRB::PDF::Book.new
   
-    page1 = GBDev::PDF::Page.new('/path/to/template1.pdf')
+    page1 = RenoRB::PDF::Page.new('/path/to/template1.pdf')
     page1.set_text(:full_name, 'Wes Hays')
   
-    page2 = GBDev::PDF::Page.new('/path/to/template2.pdf')
+    page2 = RenoRB::PDF::Page.new('/path/to/template2.pdf')
     page2.set_text(:full_name, 'Darren Johnson')
   
     book.add_page(page1)
@@ -98,12 +98,12 @@ Another alternative is to install pdf_filler as a Rails plugin:
     end
     
     user = User.first
-    page = GBDev::PDF::Page.new('/path/to/template1.pdf')
+    page = RenoRB::PDF::Page.new('/path/to/template1.pdf')
     page.map_to_object(user)
     page.save_to('/path/to/save.pdf)
     
 
-Note: You can use the shorter kernel methods PDFPage instead of GBDev::PDF::Page.new.  The same goes for PDFBook instead of GBDev::PDF::Book.new.
+Note: You can use the shorter kernel methods PDFPage instead of RenoRB::PDF::Page.new.  The same goes for PDFBook instead of RenoRB::PDF::Book.new.
 
 Example:
   </diff>
      <filename>README.rdoc</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>5decd58d75529f9929a16e7a2357abb848761e35</id>
    </parent>
  </parents>
  <author>
    <name>Wes Hays</name>
    <email>weshays@gbdev.com</email>
  </author>
  <url>http://github.com/weshays/pdf_filler/commit/793b692625d4337f789a7460a57ac74a2607a59e</url>
  <id>793b692625d4337f789a7460a57ac74a2607a59e</id>
  <committed-date>2009-11-04T16:06:37-08:00</committed-date>
  <authored-date>2009-11-04T16:06:37-08:00</authored-date>
  <message>Updated readme to remove relic GBDev references.</message>
  <tree>62eb85f14ce335da54f1b55e8d9fd876368c59e7</tree>
  <committer>
    <name>Wes Hays</name>
    <email>weshays@gbdev.com</email>
  </committer>
</commit>
