<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -10,7 +10,7 @@ end
 
 context &quot;The PDF::Reader::Buffer class when operating on the cairo-basic PDF&quot; do
 
-  setup do
+  before do
     @file = File.new(File.dirname(__FILE__) + &quot;/data/cairo-basic.pdf&quot;)
     @buffer = PDF::Reader::Buffer.new(@file)
   end
@@ -27,7 +27,7 @@ end
 
 context &quot;The PDF::Reader::Buffer class when operating on the cairo-unicode PDF&quot; do
 
-  setup do
+  before do
     @file = File.new(File.dirname(__FILE__) + &quot;/data/cairo-unicode.pdf&quot;)
     @buffer = PDF::Reader::Buffer.new(@file)
   end
@@ -44,7 +44,7 @@ end
 
 context &quot;The PDF::Reader::Buffer class when operating on the prince1 PDF&quot; do
 
-  setup do
+  before do
     @file = File.new(File.dirname(__FILE__) + &quot;/data/prince1.pdf&quot;)
     @buffer = PDF::Reader::Buffer.new(@file)
   end
@@ -61,7 +61,7 @@ end
 
 context &quot;The PDF::Reader::Buffer class when operating on the prince2 PDF&quot; do
 
-  setup do
+  before do
     @file = File.new(File.dirname(__FILE__) + &quot;/data/prince2.pdf&quot;)
     @buffer = PDF::Reader::Buffer.new(@file)
   end
@@ -78,7 +78,7 @@ end
 
 context &quot;The PDF::Reader::Buffer class when operating on the pdfwriter manual&quot; do
 
-  setup do
+  before do
     @file = File.new(File.dirname(__FILE__) + &quot;/data/pdfwriter-manual.pdf&quot;)
     @buffer = PDF::Reader::Buffer.new(@file)
   end
@@ -95,7 +95,7 @@ end
 
 context &quot;The PDF::Reader::Buffer class when operating on the pdf-distiller PDF&quot; do
 
-  setup do
+  before do
     @file = File.new(File.dirname(__FILE__) + &quot;/data/pdf-distiller.pdf&quot;)
     @buffer = PDF::Reader::Buffer.new(@file)
   end
@@ -113,7 +113,7 @@ end
 
 context &quot;The PDF::Reader::Buffer class when operating on the pdflatex PDF&quot; do
 
-  setup do
+  before do
     @file = File.new(File.dirname(__FILE__) + &quot;/data/pdflatex.pdf&quot;)
     @buffer = PDF::Reader::Buffer.new(@file)
   end
@@ -129,7 +129,7 @@ end
 
 context &quot;The PDF::Reader::Buffer class when operating on the openoffice-2.2 PDF&quot; do
 
-  setup do
+  before do
     @file = File.new(File.dirname(__FILE__) + &quot;/data/openoffice-2.2.pdf&quot;)
     @buffer = PDF::Reader::Buffer.new(@file)
   end
@@ -151,7 +151,7 @@ end
 
 context &quot;The PDF::Reader::Buffer class when operating on a PDF with no EOF marker&quot; do
 
-  setup do
+  before do
     @file = File.new(File.dirname(__FILE__) + &quot;/data/invalid/no_eof.pdf&quot;)
     @buffer = PDF::Reader::Buffer.new(@file)
   end</diff>
      <filename>specs/buffer_spec.rb</filename>
    </modified>
    <modified>
      <diff>@@ -8,7 +8,7 @@ end
 
 context &quot;PDF::Reader::CMap&quot; do
 
-  setup do
+  before do
     
     @objstr = &lt;&lt;EOF
 /CIDInit /ProcSet findresource begin</diff>
      <filename>specs/cmap_spec.rb</filename>
    </modified>
    <modified>
      <diff>@@ -9,7 +9,7 @@ end
 
 context &quot;The PDF::Reader::XRef class when operating on the cairo-basic PDF&quot; do
 
-  setup do
+  before do
     @file = File.new(File.dirname(__FILE__) + &quot;/data/cairo-basic.pdf&quot;)
     @buffer = PDF::Reader::Buffer.new(@file)
     @xref = PDF::Reader::XRef.new(@buffer)
@@ -53,7 +53,7 @@ end
 
 context &quot;The PDF::Reader::XRef class when operating on the cairo-unicode PDF&quot; do
 
-  setup do
+  before do
     @file = File.new(File.dirname(__FILE__) + &quot;/data/cairo-unicode.pdf&quot;)
     @buffer = PDF::Reader::Buffer.new(@file)
     @xref = PDF::Reader::XRef.new(@buffer)
@@ -83,7 +83,7 @@ end
 
 context &quot;The PDF::Reader::XRef class when operating on the openoffice-2.2 PDF&quot; do
 
-  setup do
+  before do
     @file = File.new(File.dirname(__FILE__) + &quot;/data/openoffice-2.2.pdf&quot;)
     @buffer = PDF::Reader::Buffer.new(@file)
     @xref = PDF::Reader::XRef.new(@buffer)
@@ -113,7 +113,7 @@ end
 
 context &quot;The PDF::Reader::XRef class when operating on the pdf-distiller PDF&quot; do
 
-  setup do
+  before do
     @file = File.new(File.dirname(__FILE__) + &quot;/data/pdf-distiller.pdf&quot;)
     @buffer = PDF::Reader::Buffer.new(@file)
     @xref = PDF::Reader::XRef.new(@buffer)
@@ -143,7 +143,7 @@ end
 
 context &quot;The PDF::Reader::XRef class when operating on the prince1 PDF&quot; do
 
-  setup do
+  before do
     @file = File.new(File.dirname(__FILE__) + &quot;/data/prince1.pdf&quot;)
     @buffer = PDF::Reader::Buffer.new(@file)
     @xref = PDF::Reader::XRef.new(@buffer)
@@ -173,7 +173,7 @@ end
 
 context &quot;The PDF::Reader::XRef class when operating on the prince2 PDF&quot; do
 
-  setup do
+  before do
     @file = File.new(File.dirname(__FILE__) + &quot;/data/prince2.pdf&quot;)
     @buffer = PDF::Reader::Buffer.new(@file)
     @xref = PDF::Reader::XRef.new(@buffer)
@@ -203,7 +203,7 @@ end
 
 context &quot;The PDF::Reader::XRef class when operating on the pdflatex PDF&quot; do
 
-  setup do
+  before do
     @file = File.new(File.dirname(__FILE__) + &quot;/data/pdflatex.pdf&quot;)
     @buffer = PDF::Reader::Buffer.new(@file)
     @xref = PDF::Reader::XRef.new(@buffer)
@@ -233,7 +233,7 @@ end
 
 context &quot;The PDF::Reader::XRef class when operating on the pdfwriter manual&quot; do
 
-  setup do
+  before do
     @file = File.new(File.dirname(__FILE__) + &quot;/data/pdfwriter-manual.pdf&quot;)
     @buffer = PDF::Reader::Buffer.new(@file)
     @xref = PDF::Reader::XRef.new(@buffer)
@@ -263,7 +263,7 @@ end
 
 context &quot;The PDF::Reader::XRef class when operating on a PDF that has been updated in Adobe Acrobat (and therefore has multiple xref sections with subsections)&quot; do
 
-  setup do
+  before do
     @file = File.new(File.dirname(__FILE__) + &quot;/data/xref_subsections.pdf&quot;)
     @buffer = PDF::Reader::Buffer.new(@file)
     @xref = PDF::Reader::XRef.new(@buffer)
@@ -278,7 +278,7 @@ end
 
 context &quot;The PDF::Reader::XRef class when operating on a pdf with no trailer&quot; do
 
-  setup do
+  before do
     @file = File.new(File.dirname(__FILE__) + &quot;/data/invalid/no_trailer.pdf&quot;)
     @buffer = PDF::Reader::Buffer.new(@file)
     @xref = PDF::Reader::XRef.new(@buffer)
@@ -292,7 +292,7 @@ end
 
 context &quot;The PDF::Reader::XRef class when operating on a pdf with a trailer that isn't a dict&quot; do
 
-  setup do
+  before do
     @file = File.new(File.dirname(__FILE__) + &quot;/data/invalid/trailer_is_not_a_dict.pdf&quot;)
     @buffer = PDF::Reader::Buffer.new(@file)
     @xref = PDF::Reader::XRef.new(@buffer)
@@ -306,7 +306,7 @@ end
 
 context &quot;The PDF::Reader::XRef class when operating on a pdf that uses an XRef Stream&quot; do
 
-  setup do
+  before do
     @file = File.new(File.dirname(__FILE__) + &quot;/data/cross_ref_stream.pdf&quot;)
     @buffer = PDF::Reader::Buffer.new(@file)
     @xref = PDF::Reader::XRef.new(@buffer)</diff>
      <filename>specs/xref_spec.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>2f503919a4aade5463458d8e26780683e935e2bd</id>
    </parent>
  </parents>
  <author>
    <name>James Healy</name>
    <email>jimmy@deefa.com</email>
  </author>
  <url>http://github.com/yob/pdf-reader/commit/88512fd36003d9012c48919c17e0bb46dea489dc</url>
  <id>88512fd36003d9012c48919c17e0bb46dea489dc</id>
  <committed-date>2009-04-24T00:07:13-07:00</committed-date>
  <authored-date>2009-04-24T00:07:13-07:00</authored-date>
  <message>update specs to rspec 1.2 syntax</message>
  <tree>4cfcc59196a5f3a5248fae2b0eab6291d9bb65bd</tree>
  <committer>
    <name>James Healy</name>
    <email>jimmy@deefa.com</email>
  </committer>
</commit>
