<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>app_generators/rbiphonetest/USAGE</filename>
    </added>
    <added>
      <filename>app_generators/rbiphonetest/rbiphonetest_generator.rb</filename>
    </added>
    <added>
      <filename>app_generators/rbiphonetest/templates/Rakefile</filename>
    </added>
    <added>
      <filename>app_generators/rbiphonetest/templates/dot_autotest</filename>
    </added>
    <added>
      <filename>app_generators/rbiphonetest/templates/test/test_helper.rb</filename>
    </added>
    <added>
      <filename>bin/rbiphonetest</filename>
    </added>
    <added>
      <filename>lib/rbiphonetest.rb</filename>
    </added>
    <added>
      <filename>lib/rbiphonetest/version.rb</filename>
    </added>
    <added>
      <filename>rbiphonetest_generators/model/USAGE</filename>
    </added>
    <added>
      <filename>rbiphonetest_generators/model/model_generator.rb</filename>
    </added>
    <added>
      <filename>rbiphonetest_generators/model/templates/model.h</filename>
    </added>
    <added>
      <filename>rbiphonetest_generators/model/templates/model.m</filename>
    </added>
    <added>
      <filename>rbiphonetest_generators/model/templates/test.rb</filename>
    </added>
    <added>
      <filename>test/test_rbiphonetest.rb</filename>
    </added>
    <added>
      <filename>test/test_rbiphonetest_generator.rb</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -1,5 +1,11 @@
+== 0.2.0 2008-07-03
+
+* Renamed project from 'iphoneruby' to 'rbiphonetest'
+* iphoneruby app: prints a deprecation message
+* USE: &quot;rbiphonetest .&quot; to install test framework now
+
 == 0.1.0 2008-06-28
 
 * Initial release
-	* iphoneruby cmd - adds test framework to your Xcode project
+	* rbiphonetest cmd - adds test framework to your Xcode project
 	* script/generate model FooBar - creates Classes/FooBar.h+m and test/test_foo_bar.rb</diff>
      <filename>History.txt</filename>
    </modified>
    <modified>
      <diff>@@ -4,21 +4,22 @@ Manifest.txt
 PostInstall.txt
 README.rdoc
 Rakefile
-app_generators/iphoneruby/USAGE
-app_generators/iphoneruby/iphoneruby_generator.rb
-app_generators/iphoneruby/templates/Rakefile
-app_generators/iphoneruby/templates/dot_autotest
-app_generators/iphoneruby/templates/test/test_helper.rb
+app_generators/rbiphonetest/USAGE
+app_generators/rbiphonetest/rbiphonetest_generator.rb
+app_generators/rbiphonetest/templates/Rakefile
+app_generators/rbiphonetest/templates/dot_autotest
+app_generators/rbiphonetest/templates/test/test_helper.rb
 bin/iphoneruby
+bin/rbiphonetest
 config/hoe.rb
 config/requirements.rb
-iphoneruby_generators/model/USAGE
-iphoneruby_generators/model/model_generator.rb
-iphoneruby_generators/model/templates/model.h
-iphoneruby_generators/model/templates/model.m
-iphoneruby_generators/model/templates/test.rb
-lib/iphoneruby.rb
-lib/iphoneruby/version.rb
+lib/rbiphonetest.rb
+lib/rbiphonetest/version.rb
+rbiphonetest_generators/model/USAGE
+rbiphonetest_generators/model/model_generator.rb
+rbiphonetest_generators/model/templates/model.h
+rbiphonetest_generators/model/templates/model.m
+rbiphonetest_generators/model/templates/test.rb
 script/console
 script/destroy
 script/generate
@@ -29,6 +30,6 @@ tasks/environment.rake
 tasks/website.rake
 test/test_generator_helper.rb
 test/test_helper.rb
-test/test_iphoneruby.rb
-test/test_iphoneruby_generator.rb
 test/test_model_generator.rb
+test/test_rbiphonetest.rb
+test/test_rbiphonetest_generator.rb</diff>
      <filename>Manifest.txt</filename>
    </modified>
    <modified>
      <diff>@@ -2,7 +2,7 @@
 You can add Ruby-based unit tests to any iPhone/Xcode project by changing to the 
 project's folder in the terminal/console and running:
 
-	iphoneruby .
+	rbiphonetest .
 
 This adds the test framework, a Rakefile, and an `autotest` config file.
 </diff>
      <filename>PostInstall.txt</filename>
    </modified>
    <modified>
      <diff>@@ -1,6 +1,6 @@
-= iphoneruby
+= rbiphonetest
 
-* http://iphoneruby.rubyforge.org
+* http://rbiphonetest.rubyforge.org
 
 == DESCRIPTION:
 
@@ -22,7 +22,7 @@ Known issues:
 * Create a new iPhone project using Xcode templates
 * Open the terminal
 * Change to project folder
-* `iphoneruby .`
+* `rbiphonetest .`
 
 This adds the test framework, a Rakefile, and an `autotest` config file.
 
@@ -49,12 +49,12 @@ If using autotest, your tests will be re-run if the test files or the Objective-
 
 == INSTALL:
 
-	sudo gem install iphoneruby (COMING SOON)
+	sudo gem install rbiphonetest (COMING SOON)
 
 From source:
 	
-	git clone git://github.com/drnic/iphoneruby.git
-	cd iphoneruby
+	git clone git://github.com/drnic/rbiphonetest.git
+	cd rbiphonetest
 	rake install_gem
 
 == LICENSE:</diff>
      <filename>README.rdoc</filename>
    </modified>
    <modified>
      <diff>@@ -1,17 +1,10 @@
 #!/usr/bin/env ruby
 
-require 'rubygems'
-require 'rubigen'
+puts &lt;&lt;-EOS
+DEPRECATION: this project has been renamed to 'rbiphonetest'
 
-if %w(-v --version).include? ARGV.first
-  require 'iphoneruby/version'
-  puts &quot;#{File.basename($0)} #{Iphoneruby::VERSION::STRING}&quot;
-  exit(0)
-end
+Please use the new executable:
 
-require 'rubigen/scripts/generate'
-source = RubiGen::PathSource.new(:application, 
-  File.join(File.dirname(__FILE__), &quot;../app_generators&quot;))
-RubiGen::Base.reset_sources
-RubiGen::Base.append_sources source
-RubiGen::Scripts::Generate.new.run(ARGV, :generator =&gt; 'iphoneruby')
+  rbiphonetest .
+
+EOS
\ No newline at end of file</diff>
      <filename>bin/iphoneruby</filename>
    </modified>
    <modified>
      <diff>@@ -1,11 +1,11 @@
-require 'iphoneruby/version'
+require 'rbiphonetest/version'
 
 AUTHOR = 'Dr Nic Williams'
 EMAIL = &quot;drnicwilliams@gmail.com&quot;
 DESCRIPTION = &quot;Want to write iPhone unit tests? Want to write them in Ruby?&quot;
-GEM_NAME = 'iphoneruby' # what ppl will type to install your gem
-RUBYFORGE_PROJECT = 'iphoneruby' # The unix name for your project
-HOMEPATH = &quot;http://github.com/drnic/iphoneruby&quot;
+GEM_NAME = 'rbiphonetest' # what ppl will type to install your gem
+RUBYFORGE_PROJECT = 'rbiphonetest' # The unix name for your project
+HOMEPATH = &quot;http://github.com/drnic/rbiphonetest&quot;
 DOWNLOAD_PATH = &quot;http://rubyforge.org/projects/#{RUBYFORGE_PROJECT}&quot;
 EXTRA_DEPENDENCIES = [
  ['rubigen', '&gt;= 1.3.2']
@@ -31,8 +31,8 @@ Run 'rubyforge setup' to prepare your env for access to Rubyforge
 end
 
 
-VERS = IPhoneRuby::VERSION::STRING
-RDOC_OPTS = ['--quiet', '--title', 'iphoneruby documentation',
+VERS = RbIphoneTest::VERSION::STRING
+RDOC_OPTS = ['--quiet', '--title', 'rbiphonetest documentation',
     &quot;--opname&quot;, &quot;index.html&quot;,
     &quot;--line-numbers&quot;,
     &quot;--main&quot;, &quot;README&quot;,</diff>
      <filename>config/hoe.rb</filename>
    </modified>
    <modified>
      <diff>@@ -5,6 +5,6 @@ irb = RUBY_PLATFORM =~ /(:?mswin|mingw)/ ? 'irb.bat' : 'irb'
 libs =  &quot; -r irb/completion&quot;
 # Perhaps use a console_lib to store any extra methods I may want available in the cosole
 # libs &lt;&lt; &quot; -r #{File.dirname(__FILE__) + '/../lib/console_lib/console_logger.rb'}&quot;
-libs &lt;&lt;  &quot; -r #{File.dirname(__FILE__) + '/../lib/iphoneruby.rb'}&quot;
-puts &quot;Loading iphoneruby gem&quot;
+libs &lt;&lt;  &quot; -r #{File.dirname(__FILE__) + '/../lib/rbiphonetest.rb'}&quot;
+puts &quot;Loading rbiphonetest gem&quot;
 exec &quot;#{irb} #{libs} --simple-prompt&quot;
\ No newline at end of file</diff>
      <filename>script/console</filename>
    </modified>
    <modified>
      <diff>@@ -1,7 +1,7 @@
 #!/usr/bin/env ruby
 
-GEM_NAME = 'iphoneruby' # what ppl will type to install your gem
-RUBYFORGE_PROJECT = 'iphoneruby'
+GEM_NAME = 'rbiphonetest' # what ppl will type to install your gem
+RUBYFORGE_PROJECT = 'rbiphonetest'
 
 require 'rubygems'
 begin
@@ -17,7 +17,7 @@ require 'syntax/convertors/html'
 require 'erb'
 require File.dirname(__FILE__) + &quot;/../lib/#{GEM_NAME}/version.rb&quot;
 
-version  = IPhoneRuby::VERSION::STRING
+version  = RbIphoneTest::VERSION::STRING
 download = &quot;http://rubyforge.org/projects/#{RUBYFORGE_PROJECT}&quot;
 
 def rubyforge_project_id</diff>
      <filename>script/txt2html</filename>
    </modified>
    <modified>
      <diff>@@ -1,2 +1,2 @@
 require 'test/unit'
-require File.dirname(__FILE__) + '/../lib/iphoneruby'
+require File.dirname(__FILE__) + '/../lib/rbiphonetest'</diff>
      <filename>test/test_helper.rb</filename>
    </modified>
    <modified>
      <diff>@@ -43,6 +43,6 @@ class TestModelGenerator &lt; Test::Unit::TestCase
   end
 
   def generator_path
-    &quot;iphoneruby_generators&quot;
+    &quot;rbiphonetest_generators&quot;
   end
 end</diff>
      <filename>test/test_model_generator.rb</filename>
    </modified>
  </modified>
  <removed type="array">
    <removed>
      <filename>app_generators/iphoneruby/USAGE</filename>
    </removed>
    <removed>
      <filename>app_generators/iphoneruby/iphoneruby_generator.rb</filename>
    </removed>
    <removed>
      <filename>app_generators/iphoneruby/templates/Rakefile</filename>
    </removed>
    <removed>
      <filename>app_generators/iphoneruby/templates/dot_autotest</filename>
    </removed>
    <removed>
      <filename>app_generators/iphoneruby/templates/test/test_helper.rb</filename>
    </removed>
    <removed>
      <filename>iphoneruby_generators/model/USAGE</filename>
    </removed>
    <removed>
      <filename>iphoneruby_generators/model/model_generator.rb</filename>
    </removed>
    <removed>
      <filename>iphoneruby_generators/model/templates/model.h</filename>
    </removed>
    <removed>
      <filename>iphoneruby_generators/model/templates/model.m</filename>
    </removed>
    <removed>
      <filename>iphoneruby_generators/model/templates/test.rb</filename>
    </removed>
    <removed>
      <filename>lib/iphoneruby.rb</filename>
    </removed>
    <removed>
      <filename>lib/iphoneruby/version.rb</filename>
    </removed>
    <removed>
      <filename>test/test_iphoneruby.rb</filename>
    </removed>
    <removed>
      <filename>test/test_iphoneruby_generator.rb</filename>
    </removed>
  </removed>
  <parents type="array">
    <parent>
      <id>b6a1b2c90ab1cc1be06df7c8cd3366b3c7f45986</id>
    </parent>
  </parents>
  <author>
    <name>Dr Nic Williams</name>
    <email>drnicwilliams@gmail.com</email>
  </author>
  <url>http://github.com/drnic/rbiphonetest/commit/6a31b32690c1454fbcea3d4fc2cdced385ba2c3e</url>
  <id>6a31b32690c1454fbcea3d4fc2cdced385ba2c3e</id>
  <committed-date>2008-07-02T18:19:34-07:00</committed-date>
  <authored-date>2008-07-02T18:19:34-07:00</authored-date>
  <message>Renamed project from 'iphoneruby' to 'rbiphonetest'</message>
  <tree>49132239c68e8627929239850ceeb8e4abd11a2f</tree>
  <committer>
    <name>Dr Nic Williams</name>
    <email>drnicwilliams@gmail.com</email>
  </committer>
</commit>
