<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>features/extract_method.feature</filename>
    </added>
    <added>
      <filename>features/steps/code.rb</filename>
    </added>
    <added>
      <filename>lib/rfactor/code.rb</filename>
    </added>
    <added>
      <filename>lib/rfactor/line_finder.rb</filename>
    </added>
    <added>
      <filename>spec/line_finder_spec.rb</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -5,5 +5,19 @@ module Rfactor
   VERSION = '0.0.1'
 end
 
+class String
+  def last_line
+    number = 0
+    self.each_with_index do |line, i|
+      number = i
+    end
+    number + 1
+  end
+end
+
 require 'rubygems'
 require 'ruby_parser'
+require 'sexp_processor'
+
+require 'rfactor/line_finder'
+require 'rfactor/code'</diff>
      <filename>lib/rfactor.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,11 +1,7 @@
 require File.dirname(__FILE__) + '/spec_helper.rb'
 
-# Time to add your specs!
-# http://rspec.info/
-describe &quot;Place your specs here&quot; do
-  
-  it &quot;find this spec in spec directory&quot; do
-    violated &quot;Be sure to write your specs&quot;
+describe Rfactor do
+  it &quot;should have VERSION&quot; do
+    Rfactor::VERSION.should_not be_empty
   end
-  
 end</diff>
      <filename>spec/rfactor_spec.rb</filename>
    </modified>
    <modified>
      <diff>@@ -14,7 +14,7 @@ EOS
   exit(0)
 end
 
-desc &quot;Run the specs under spec/models&quot;
+desc &quot;Run the specs under spec/&quot;
 Spec::Rake::SpecTask.new do |t|
   t.spec_opts = ['--options', &quot;spec/spec.opts&quot;]
   t.spec_files = FileList['spec/**/*_spec.rb']</diff>
      <filename>tasks/rspec.rake</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>46b61f744c667b934d73447cb7a1605b99ce8953</id>
    </parent>
  </parents>
  <author>
    <name>Fabio Kung</name>
    <email>fabio.kung@gmail.com</email>
  </author>
  <url>http://github.com/fabiokung/rfactor/commit/5d47cdb590df12eaddd654a6665ae8b3b2629e33</url>
  <id>5d47cdb590df12eaddd654a6665ae8b3b2629e33</id>
  <committed-date>2009-02-03T18:22:22-08:00</committed-date>
  <authored-date>2009-02-03T18:22:22-08:00</authored-date>
  <message>line number extractor and basic code extractor</message>
  <tree>7fe8558fa8facb190a1aee571373f5d5e3b1d212</tree>
  <committer>
    <name>Fabio Kung</name>
    <email>fabio.kung@gmail.com</email>
  </committer>
</commit>
