<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>Manifest.txt</filename>
    </added>
    <added>
      <filename>PostInstall.txt</filename>
    </added>
    <added>
      <filename>script/console</filename>
    </added>
    <added>
      <filename>script/destroy</filename>
    </added>
    <added>
      <filename>script/generate</filename>
    </added>
    <added>
      <filename>script/txt2html</filename>
    </added>
    <added>
      <filename>tasks/deployment.rake</filename>
    </added>
    <added>
      <filename>tasks/environment.rake</filename>
    </added>
    <added>
      <filename>tasks/website.rake</filename>
    </added>
    <added>
      <filename>website/index.html</filename>
    </added>
    <added>
      <filename>website/index.txt</filename>
    </added>
    <added>
      <filename>website/javascripts/rounded_corners_lite.inc.js</filename>
    </added>
    <added>
      <filename>website/stylesheets/screen.css</filename>
    </added>
    <added>
      <filename>website/template.html.erb</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -4,7 +4,7 @@ AUTHOR = 'Chris Taggart'  # can also be an array of Authors
 EMAIL = &quot;chris.taggart@pushrodmedia.co.uk&quot;
 DESCRIPTION = &quot;A Ruby library for Ebay's lightweight Shopping API&quot;
 GEM_NAME = 'ebay_shopping' # what ppl will type to install your gem
-RUBYFORGE_PROJECT = 'ebay_shopping' # The unix name for your project
+RUBYFORGE_PROJECT = 'ebayshopping' # The unix name for your project
 HOMEPATH = &quot;http://#{RUBYFORGE_PROJECT}.rubyforge.org&quot;
 DOWNLOAD_PATH = &quot;http://rubyforge.org/projects/#{RUBYFORGE_PROJECT}&quot;
 EXTRA_DEPENDENCIES = [
@@ -13,7 +13,7 @@ EXTRA_DEPENDENCIES = [
 
 @config_file = &quot;~/.rubyforge/user-config.yml&quot;
 @config = nil
-RUBYFORGE_USERNAME = &quot;unknown&quot;
+RUBYFORGE_USERNAME = &quot;ctagg&quot;
 def rubyforge_username
   unless @config
     begin</diff>
      <filename>config/hoe.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,7 +1,7 @@
 --- 
 :production: 
   :app_id: 
-  :affiliate_partner: &quot;1&quot; # the affiliate provider (aka tracking partner). For Commission Junction this is 1. For others see http://developer.ebay.com/DevZone/shopping/docs/Concepts/ShoppingAPI_FormatOverview.html#AffiliateURLParameters  
+  :affiliate_partner: &quot;9&quot; # the affiliate provider (aka tracking partner). For Ebay's own affliaite scheme this is 9. For others see http://developer.ebay.com/DevZone/shopping/docs/Concepts/ShoppingAPI_FormatOverview.html#AffiliateURLParameters  
   :affiliate_id:  # your site's affiliate id, also known as tracking id, or PID
   :affiliate_shopper_id: &quot;my_campaign&quot; # default campaign identifier, also known (confusingly) as affiliate_user_id, or SID. Only applicable if affiliate provider is Commission Junction
   :default_site_id: # set the default ebay country here (for details see http://developer.ebay.com/DevZone/shopping/docs/CallRef/types/SiteCodeType.html). If this is blank, the US site (site_id=0) is  used by ebay. Can be overridden on individual requests</diff>
      <filename>ebay.yml.tpl</filename>
    </modified>
    <modified>
      <diff>@@ -63,7 +63,7 @@ module EbayShopping
       @call_params          = params
     end
     
-    # Get config params from YAML config file stored in app config folder
+    # Get config params from YAML config file
     def self.config_params(yaml_file=nil, env=nil)
       return @@config_params if @@config_params
       all_params = YAML.load_file(yaml_file)</diff>
      <filename>lib/ebay_shopping.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,8 +1,8 @@
 module EbayShopping #:nodoc:
   module VERSION #:nodoc:
     MAJOR = 0
-    MINOR = 0
-    TINY  = 1
+    MINOR = 1
+    TINY  = 0
 
     STRING = [MAJOR, MINOR, TINY].join('.')
   end</diff>
      <filename>lib/ebay_shopping/version.rb</filename>
    </modified>
    <modified>
      <diff>@@ -50,7 +50,7 @@ class TestEbayShopping &lt; Test::Unit::TestCase
   def test_should_have_callname_and_call_params_accessors
     ebay = EbayShopping::Request.new(:find_items, {:first_param =&gt; &quot;foo&quot;, :second_param =&gt; &quot;bar&quot;})
     assert_equal :find_items, ebay.callname
-    assert_equal ({:first_param =&gt; &quot;foo&quot;, :second_param =&gt; &quot;bar&quot;}), ebay.call_params
+    assert_equal({:first_param =&gt; &quot;foo&quot;, :second_param =&gt; &quot;bar&quot;}, ebay.call_params)
   end
   
   def test_should_have_app_id_affiliate_id_and_affiliate_partner_accessors_set_from_config_params
@@ -337,7 +337,7 @@ class TestEbayShopping &lt; Test::Unit::TestCase
   
   def test_should_make_items_original_hash_available_as_all_params
     item = EbayShopping::GenericItem.new(&quot;ItemID&quot; =&gt; &quot;foo123&quot;, &quot;Title&quot; =&gt; &quot;Dummy ebay item&quot;)
-    assert_equal ({&quot;ItemID&quot; =&gt; &quot;foo123&quot;, &quot;Title&quot; =&gt; &quot;Dummy ebay item&quot;}), item.all_params
+    assert_equal({&quot;ItemID&quot; =&gt; &quot;foo123&quot;, &quot;Title&quot; =&gt; &quot;Dummy ebay item&quot;}, item.all_params)
   end
   
   def test_should_allow_access_to_original_hash_via_square_brackets</diff>
      <filename>test/test_ebay_shopping.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>cd23b0825a7893c420c71b672f3b91ea7aa04f04</id>
    </parent>
  </parents>
  <author>
    <name>Chris Taggart</name>
    <email>chris@windowsxponmac.home</email>
  </author>
  <url>http://github.com/ctagg/ebay_shopping/commit/7398d3c1a59e1254cadd952d6ceb0abb41c3e24d</url>
  <id>7398d3c1a59e1254cadd952d6ceb0abb41c3e24d</id>
  <committed-date>2008-05-12T10:38:11-07:00</committed-date>
  <authored-date>2008-05-12T10:38:11-07:00</authored-date>
  <message>Tweaks to docs</message>
  <tree>f4bbfb81e1ff53677888a986ce7b85b9ad85d157</tree>
  <committer>
    <name>Chris Taggart</name>
    <email>chris@windowsxponmac.home</email>
  </committer>
</commit>
