<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -1,6 +1,6 @@
 module Features2Cards
   class Card
-  
+
     attr_reader :type
     attr_reader :body
     attr_reader :footer
@@ -14,10 +14,10 @@ module Features2Cards
       body  = actual_feature[0].gsub(/^\s*#{title}\n/, '')
       card = [new(title, body, &quot;&quot;)]
       footer = title
-      
+
       actual_feature.shift
       scenarios = actual_feature
-      
+
       scenarios.map do |scenario|
         case(scenario[0])
           when :scenario_outline
@@ -29,25 +29,25 @@ module Features2Cards
             next
           when :comment
             next
-        end     
+        end
          title = scenario[0] + &quot; &quot; + scenario[1]
          scenario.shift
          scenario.shift
          body = &quot;&quot;
          scenario.map do |step|
-           body += step[2] + &quot; &quot; + step[3] + &quot;\n&quot; if step[0] == :step or step[0] == :step_invocation 
+           body += step[2] + &quot; &quot; + step[3] + &quot;\n&quot; if step[0] == :step or step[0] == :step_invocation
          end
          card.push(new(title, body, footer))
       end
-      
+
       return card
     end
-    
+
     def initialize(type, body, footer = nil)
       @type = type
       @body = body
       @footer = footer
     end
-  
+
   end
-end
\ No newline at end of file
+end</diff>
      <filename>lib/features2cards/card.rb</filename>
    </modified>
    <modified>
      <diff>@@ -110,4 +110,4 @@ module Features2Cards
     end
 
   end
-end
\ No newline at end of file
+end</diff>
      <filename>lib/features2cards/cli.rb</filename>
    </modified>
    <modified>
      <diff>@@ -11,4 +11,4 @@ module Features2Cards
   RAILS         = defined?(Rails)
   RUBY_BINARY   = File.join(Config::CONFIG['bindir'], Config::CONFIG['ruby_install_name'])
   RUBY_1_9      = RUBY_VERSION =~ /^1\.9/
-end
\ No newline at end of file
+end</diff>
      <filename>lib/features2cards/platform.rb</filename>
    </modified>
    <modified>
      <diff>@@ -3,23 +3,23 @@ require &quot;prawn&quot;
 class Prawn::Document
   CARD_WIDTH  = 72 * 5 # 5 inches
   CARD_HEIGHT = 72 * 3 # 3 inches
-  
+
   def self.generate_cards(outfile, cards)
     generate(outfile, :page_layout =&gt; :landscape) do
       row = 2
       col = 0
-  
+
       cards.each do |card|
         if row == 0
           start_new_page
           row = 2
           col = 0
         end
-    
+
         draw_card(card, row, col)
-    
+
         col += 1
-    
+
         if col &gt; 1
           col = 0
           row -= 1
@@ -27,13 +27,13 @@ class Prawn::Document
       end
     end
   end
-  
+
   def margin_box(margin, &amp;block)
     bounding_box [bounds.left + margin, bounds.top - margin],
       :width =&gt; bounds.width - (margin * 2), :height =&gt; bounds.height - (margin * 2),
       &amp;block
   end
-  
+
   def outline_box
     stroke_rectangle bounds.top_left, bounds.width, bounds.height
   end
@@ -41,16 +41,16 @@ class Prawn::Document
   def draw_card(card, row, col)
     bounding_box [CARD_WIDTH * col, CARD_HEIGHT * row + ((bounds.height - (2*CARD_HEIGHT))/2)],
       :width =&gt; CARD_WIDTH, :height =&gt; CARD_HEIGHT do
-        
+
       outline_box
-    
+
       margin_box 8 do
         text card.type, :size =&gt; 12
-        
+
         margin_box 16 do
           text card.body, :size =&gt; 10, :align =&gt; :left
         end
-        
+
         unless card.footer.nil?
           bounding_box [bounds.left, bounds.bottom + 10], :width =&gt; bounds.width, :height =&gt; 10 do
             text card.footer, :size =&gt; 8, :align =&gt; :right
@@ -59,5 +59,5 @@ class Prawn::Document
       end
     end
   end
-  
-end
\ No newline at end of file
+
+end</diff>
      <filename>lib/features2cards/prawn.rb</filename>
    </modified>
    <modified>
      <diff>@@ -3,6 +3,6 @@ require 'features2cards/card'
 
 module Features2Cards
   describe Card do
-    
+
   end
-end
\ No newline at end of file
+end</diff>
      <filename>spec/features2cards/card_spec.rb</filename>
    </modified>
    <modified>
      <diff>@@ -2,20 +2,20 @@ require File.dirname(__FILE__) + '/../spec_helper'
 require 'features2cards/cli'
 
 module Features2Cards
-  describe CLI do  
+  describe CLI do
     it &quot;should parse feature&quot; do
       cli = CLI.execute(%w{examples/self_test/features/features2cards.feature})
     end
-    
+
     it &quot;should parse feature in german&quot; do
       cli = CLI.execute(%w{examples/i18n/de})
     end
-    
+
     it &quot;should accept --out option&quot; do
       cli = CLI.new(StringIO.new)
       cli.parse!(%w{--out test.pdf})
       cli.options[:pdf_file].should == 'test.pdf'
-    end  
+    end
   end
 end
 </diff>
      <filename>spec/features2cards/cli_spec.rb</filename>
    </modified>
    <modified>
      <diff>@@ -2,4 +2,4 @@ require File.dirname(__FILE__) + '/../spec_helper'
 require 'prawn'
 
 describe Prawn::Document do
-end
\ No newline at end of file
+end</diff>
      <filename>spec/features2cards/prawn_spec.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>c795c545566ad28094d5142915503aaa48c9b93a</id>
    </parent>
  </parents>
  <author>
    <name>Bryan Helmkamp</name>
    <email>bryan@brynary.com</email>
  </author>
  <url>http://github.com/brynary/features2cards/commit/8c942646ada7158fe085f031f6bc9d2ce85d2546</url>
  <id>8c942646ada7158fe085f031f6bc9d2ce85d2546</id>
  <committed-date>2009-11-09T10:37:50-08:00</committed-date>
  <authored-date>2009-11-09T10:37:50-08:00</authored-date>
  <message>Whitespace</message>
  <tree>4ec5424c3629c73e5cf83ff571bfd6e78015946d</tree>
  <committer>
    <name>Bryan Helmkamp</name>
    <email>bryan@brynary.com</email>
  </committer>
</commit>
