<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -1,7 +1,7 @@
 Gem::Specification.new do |s|
   s.name     = &quot;acts_as_video_fu&quot;
-  s.version  = &quot;1.2&quot;
-  s.date     = &quot;2009-03-06&quot;
+  s.version  = &quot;1.3&quot;
+  s.date     = &quot;2009-03-15&quot;
   s.summary  = &quot;Rails plugin that easily allows you to show video streams on your site.&quot;
   s.email    = &quot;matt@matt-darby.com&quot;
   s.homepage = &quot;http://github.com/mdarby/acts_as_video_fu/tree/master&quot;</diff>
      <filename>acts_as_video_fu.gemspec</filename>
    </modified>
    <modified>
      <diff>@@ -2,18 +2,18 @@ module Mdarby
   module Acts #:nodoc:
     module Acts_as_video_fu #:nodoc:
 
-      VIMEO_RE   = /^http:\/\/(www\.vimeo|vimeo)\.com\/[0-9]*$/      
-      YOUTUBE_RE = /^http:\/\/(www\.youtube|youtube)\.com\/watch\?v=[^&amp;]*$/
+      VIMEO_RE   = /^http:\/\/(www\.vimeo|vimeo)\.com\/[0-9]*$/
+      YOUTUBE_RE = /^http:\/\/(www\.youtube|youtube)\.com\/watch\?v=[^&amp;]*(&amp;.*){0,}$/
 
       def self.included(base)
         base.extend ClassMethods
       end
 
-      module ClassMethods        
-        def acts_as_video_fu          
+      module ClassMethods
+        def acts_as_video_fu
           include Mdarby::Acts::Acts_as_video_fu::InstanceMethods
-          extend Mdarby::Acts::Acts_as_video_fu::SingletonMethods          
-          
+          extend Mdarby::Acts::Acts_as_video_fu::SingletonMethods
+
           before_save :validate
         end
       end
@@ -22,33 +22,33 @@ module Mdarby
       end
 
       module InstanceMethods
-          
+
         def type
           return YouTube if youtube?
           return Vimeo if vimeo?
           return false
         end
-        
+
         def youtube?
           YOUTUBE_RE =~ video_url
         end
-        
+
         def vimeo?
           VIMEO_RE =~ video_url
         end
-        
-        
+
+
         private
-        
+
           def validate
             raise &quot;#{self.class.to_s}#video_url doesn't exist!&quot; unless respond_to?(:video_url)
-          
+
             unless video_url.blank?
               errors.add_to_base(&quot;Video URL has whitespace&quot;) if video_url.strip!
               errors.add_to_base(&quot;Video URL is not recognized&quot;) unless type
             end
           end
-        
+
       end
     end
   end</diff>
      <filename>lib/acts_as_video_fu.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>fefc8f4694a2981d32de8654c5c2697ece492474</id>
    </parent>
  </parents>
  <author>
    <name>Matt Darby</name>
    <email>matt@matt-darby.com</email>
  </author>
  <url>http://github.com/mdarby/acts_as_video_fu/commit/e34f6718b0616588ea775deb4ec477a9ca31b47f</url>
  <id>e34f6718b0616588ea775deb4ec477a9ca31b47f</id>
  <committed-date>2009-03-15T08:11:12-07:00</committed-date>
  <authored-date>2009-03-15T08:11:12-07:00</authored-date>
  <message>Updated YouTube RegExp to allow &quot;feature&quot; param</message>
  <tree>968b0b9c923e32030ef5c6d4a1a9104af2ae2193</tree>
  <committer>
    <name>Matt Darby</name>
    <email>matt@matt-darby.com</email>
  </committer>
</commit>
