<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>examples/bounding_box/indentation.rb</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -349,17 +349,17 @@ module Prawn
     end
     
     
-    # Adds left padding to the document
+    # Indents the specified number of PDF points for the duration of the block
     #
     #  pdf.text &quot;some text&quot;
-    #  pdf.pad_left(20) do
+    #  pdf.indent(20) do
     #    pdf.text &quot;This is indented 20 points&quot;
     #  end
     #  pdf.text &quot;This starts 20 points left of the above line &quot; +
     #           &quot;and is flush with the first line&quot;
     #
-    def pad_left(x, &amp;block)
-      bounds.pad_left(x, &amp;block)
+    def indent(x, &amp;block)
+      bounds.indent(x, &amp;block)
     end
     
 </diff>
      <filename>lib/prawn/document.rb</filename>
    </modified>
    <modified>
      <diff>@@ -213,7 +213,7 @@ module Prawn
       
       # Temporarily adjust the @x coordinate to allow for left_padding
       #
-      def pad_left(left_padding, &amp;block)
+      def indent(left_padding, &amp;block)
         @x += left_padding
         @width -= left_padding
         yield</diff>
      <filename>lib/prawn/document/bounding_box.rb</filename>
    </modified>
    <modified>
      <diff>@@ -11,7 +11,7 @@ spec = Gem::Specification.new do |spec|
   spec.version = &quot;0.5.0.2&quot;
   spec.platform = Gem::Platform::RUBY
   spec.summary = &quot;A fast and nimble PDF generator for Ruby&quot;
-  spec.add_dependency('prawn-core', '~&gt; 0.5.0')
+  spec.add_dependency('prawn-core', '&gt; 0.5.0.1', '&lt; 0.6')
   spec.add_dependency('prawn-layout', '~&gt; 0.2.0')
   spec.add_dependency('prawn-format', '~&gt; 0.2.0')
   spec.files = Dir.glob(&quot;lib/*&quot;)
@@ -23,7 +23,7 @@ spec = Gem::Specification.new do |spec|
   spec.description = &quot;Prawn is a fast, tiny, and nimble PDF generator for Ruby&quot;
   spec.post_install_message = %{
   Welcome to Prawn, the best pure-Ruby PDF solution ever!
-  This is version 0.5 RC1
+  This is version 0.5 RC2
    
   Please note that you have downloaded a pre-release candidate gem,
   which has some bugs, ugly spots, other bad things in it.  This gem is also</diff>
      <filename>meta/Rakefile</filename>
    </modified>
    <modified>
      <diff>@@ -128,12 +128,12 @@ describe &quot;drawing bounding boxes&quot; do
   
 end
 
-describe &quot;With left padding&quot; do
+describe &quot;Indentation&quot; do
   before(:each) { create_pdf }
 
   it &quot;should temporarily shift the x coordinate and width&quot; do
     @pdf.bounding_box([100,100], :width =&gt; 200) do
-      @pdf.pad_left(20) do
+      @pdf.indent(20) do
         @pdf.bounds.absolute_left.should == 120
         @pdf.bounds.width.should == 180
       end
@@ -142,8 +142,8 @@ describe &quot;With left padding&quot; do
 
   it &quot;should restore the x coordinate and width after block exits&quot; do
     @pdf.bounding_box([100,100], :width =&gt; 200) do
-      @pdf.pad_left(20) do
-        # noop
+      @pdf.indent(20) do
+        # no-op
       end
       @pdf.bounds.absolute_left.should == 100
       @pdf.bounds.width.should == 200
@@ -153,7 +153,7 @@ describe &quot;With left padding&quot; do
   it &quot;should restore the x coordinate and width on error&quot; do
     @pdf.bounding_box([100,100], :width =&gt; 200) do
       begin
-        @pdf.pad_left(20) { raise }
+        @pdf.indent(20) { raise }
       rescue
         @pdf.bounds.absolute_left.should == 100
         @pdf.bounds.width.should == 200</diff>
      <filename>spec/bounding_box_spec.rb</filename>
    </modified>
  </modified>
  <removed type="array">
    <removed>
      <filename>examples/bounding_box/left_padding.rb</filename>
    </removed>
  </removed>
  <parents type="array">
    <parent>
      <id>f67b351a490fe61a0e8c0ab243922e2f2b8a01a0</id>
    </parent>
  </parents>
  <author>
    <name>Gregory Brown</name>
    <email>gregory.t.brown@gmail.com</email>
  </author>
  <url>http://github.com/sandal/prawn/commit/29ff7a2b4c495964fff7bd0f5fa138de12878dc1</url>
  <id>29ff7a2b4c495964fff7bd0f5fa138de12878dc1</id>
  <committed-date>2009-06-20T06:52:55-07:00</committed-date>
  <authored-date>2009-06-20T06:52:55-07:00</authored-date>
  <message>I prefer the term 'indent', probably a bit anal</message>
  <tree>7c88acdcec8d5926eb4ed0b03f9a67602ca0dae6</tree>
  <committer>
    <name>Gregory Brown</name>
    <email>gregory.t.brown@gmail.com</email>
  </committer>
</commit>
