<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -17,12 +17,12 @@ module RPH
       SUPPORTED_VERSIONS = {
         JQUERY        =&gt; ['1.2.3', '1.2.6', '1.3.0', '1.3.1', '1.3.2'],
         JQUERYUI      =&gt; ['1.5.2', '1.5.3', '1.7.0', '1.7.1', '1.7.2'],
-        PROTOTYPE     =&gt; ['1.6.0.2', '1.6.0.3'],
+        PROTOTYPE     =&gt; ['1.6.0.2', '1.6.0.3', '1.6.1.0'],
         SCRIPTACULOUS =&gt; ['1.8.1', '1.8.2'],
         MOOTOOLS      =&gt; ['1.11', '1.2.1', '1.2.2', '1.2.3'],
-        DOJO          =&gt; ['1.1.1', '1.2.0', '1.2.3', '1.3.0', '1.3.1'],
+        DOJO          =&gt; ['1.1.1', '1.2.0', '1.2.3', '1.3.0', '1.3.1', '1.3.2'],
         SWFOBJECT     =&gt; ['2.1', '2.2'],
-        YUI           =&gt; ['2.6.0', '2.7.0'],
+        YUI           =&gt; ['2.6.0', '2.7.0', '2.8.0r4'],
         EXT_CORE      =&gt; ['3.0.0']
       }      
       </diff>
      <filename>lib/google_ajax_libraries_api/constants.rb</filename>
    </modified>
    <modified>
      <diff>@@ -85,7 +85,7 @@ describe &quot;RPH::Google::AjaxLibraries&quot; do
   
     it &quot;should map to the prototype google api url&quot; do
       @helper.google_prototype.
-        should eql(&quot;&lt;script src=\&quot;http://ajax.googleapis.com/ajax/libs/prototype/1.6.0.3/prototype.js\&quot; type=\&quot;text/javascript\&quot;&gt;&lt;/script&gt;&quot;)
+        should eql(&quot;&lt;script src=\&quot;http://ajax.googleapis.com/ajax/libs/prototype/1.6.1.0/prototype.js\&quot; type=\&quot;text/javascript\&quot;&gt;&lt;/script&gt;&quot;)
     end
   
     it &quot;should map to the scriptaculous google api url&quot; do
@@ -100,7 +100,7 @@ describe &quot;RPH::Google::AjaxLibraries&quot; do
   
     it &quot;should map to the dojo google api url&quot; do
       @helper.google_dojo.
-        should eql(&quot;&lt;script src=\&quot;http://ajax.googleapis.com/ajax/libs/dojo/1.3.1/dojo/dojo.xd.js\&quot; type=\&quot;text/javascript\&quot;&gt;&lt;/script&gt;&quot;)
+        should eql(&quot;&lt;script src=\&quot;http://ajax.googleapis.com/ajax/libs/dojo/1.3.2/dojo/dojo.xd.js\&quot; type=\&quot;text/javascript\&quot;&gt;&lt;/script&gt;&quot;)
     end
     
     it &quot;should map to the swfobject google api url&quot; do
@@ -110,7 +110,7 @@ describe &quot;RPH::Google::AjaxLibraries&quot; do
     
     it &quot;should map to the YUI google api url&quot; do
       @helper.google_yui.
-        should eql(&quot;&lt;script src=\&quot;http://ajax.googleapis.com/ajax/libs/yui/2.7.0/build/yuiloader/yuiloader-min.js\&quot; type=\&quot;text/javascript\&quot;&gt;&lt;/script&gt;&quot;)
+        should eql(&quot;&lt;script src=\&quot;http://ajax.googleapis.com/ajax/libs/yui/2.8.0r4/build/yuiloader/yuiloader-min.js\&quot; type=\&quot;text/javascript\&quot;&gt;&lt;/script&gt;&quot;)
     end
     
     it &quot;should map to the ext-core google api url&quot; do
@@ -157,7 +157,7 @@ describe &quot;RPH::Google::AjaxLibraries&quot; do
   it &quot;should support multiple libraries at once&quot; do
     @helper.google_javascripts(:prototype, :scriptaculous, :jquery).
       should eql(
-        &quot;&lt;script src=\&quot;http://ajax.googleapis.com/ajax/libs/prototype/1.6.0.3/prototype.js\&quot; type=\&quot;text/javascript\&quot;&gt;&lt;/script&gt;\n&quot; +
+        &quot;&lt;script src=\&quot;http://ajax.googleapis.com/ajax/libs/prototype/1.6.1.0/prototype.js\&quot; type=\&quot;text/javascript\&quot;&gt;&lt;/script&gt;\n&quot; +
         &quot;&lt;script src=\&quot;http://ajax.googleapis.com/ajax/libs/scriptaculous/1.8.2/scriptaculous.js\&quot; type=\&quot;text/javascript\&quot;&gt;&lt;/script&gt;\n&quot; +
         &quot;&lt;script src=\&quot;http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js\&quot; type=\&quot;text/javascript\&quot;&gt;&lt;/script&gt;&quot;
       )
@@ -166,7 +166,7 @@ describe &quot;RPH::Google::AjaxLibraries&quot; do
   it &quot;should make the :version option irrelevent when loading multiple libraries at once&quot; do
     @helper.google_javascripts(:prototype, :scriptaculous, :jquery, :version =&gt; '1.2.3').
       should eql(
-        &quot;&lt;script src=\&quot;http://ajax.googleapis.com/ajax/libs/prototype/1.6.0.3/prototype.js\&quot; type=\&quot;text/javascript\&quot;&gt;&lt;/script&gt;\n&quot; +
+        &quot;&lt;script src=\&quot;http://ajax.googleapis.com/ajax/libs/prototype/1.6.1.0/prototype.js\&quot; type=\&quot;text/javascript\&quot;&gt;&lt;/script&gt;\n&quot; +
         &quot;&lt;script src=\&quot;http://ajax.googleapis.com/ajax/libs/scriptaculous/1.8.2/scriptaculous.js\&quot; type=\&quot;text/javascript\&quot;&gt;&lt;/script&gt;\n&quot; +
         &quot;&lt;script src=\&quot;http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js\&quot; type=\&quot;text/javascript\&quot;&gt;&lt;/script&gt;&quot;
       )
@@ -175,8 +175,8 @@ describe &quot;RPH::Google::AjaxLibraries&quot; do
   it &quot;should support uncompressed versions of all applicable when loading multiple libraries at once&quot; do
     @helper.google_javascripts(:prototype, :dojo, :jquery, :uncompressed =&gt; true).
       should eql(
-        &quot;&lt;script src=\&quot;http://ajax.googleapis.com/ajax/libs/prototype/1.6.0.3/prototype.js\&quot; type=\&quot;text/javascript\&quot;&gt;&lt;/script&gt;\n&quot; + 
-        &quot;&lt;script src=\&quot;http://ajax.googleapis.com/ajax/libs/dojo/1.3.1/dojo/dojo.xd.js.uncompressed.js\&quot; type=\&quot;text/javascript\&quot;&gt;&lt;/script&gt;\n&quot; + 
+        &quot;&lt;script src=\&quot;http://ajax.googleapis.com/ajax/libs/prototype/1.6.1.0/prototype.js\&quot; type=\&quot;text/javascript\&quot;&gt;&lt;/script&gt;\n&quot; + 
+        &quot;&lt;script src=\&quot;http://ajax.googleapis.com/ajax/libs/dojo/1.3.2/dojo/dojo.xd.js.uncompressed.js\&quot; type=\&quot;text/javascript\&quot;&gt;&lt;/script&gt;\n&quot; + 
         &quot;&lt;script src=\&quot;http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.js\&quot; type=\&quot;text/javascript\&quot;&gt;&lt;/script&gt;&quot;
       )
   end</diff>
      <filename>spec/google_ajax_libraries_api_spec.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>6617fb594acc0bff63d07720bee3e6316bc9abe9</id>
    </parent>
  </parents>
  <author>
    <name>rpheath</name>
    <email>rpheath@gmail.com</email>
  </author>
  <url>http://github.com/rpheath/google_ajax_libraries_api/commit/a86690782aeba80ef294322e167bf8a28fcb5aa8</url>
  <id>a86690782aeba80ef294322e167bf8a28fcb5aa8</id>
  <committed-date>2009-09-24T06:58:20-07:00</committed-date>
  <authored-date>2009-09-24T06:58:20-07:00</authored-date>
  <message>updated library versions</message>
  <tree>57b623ecad1f4efe7f055a86fc39f735c413ea86</tree>
  <committer>
    <name>rpheath</name>
    <email>rpheath@gmail.com</email>
  </committer>
</commit>
