<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>lib/acts_as_unvlogable.rb</filename>
    </added>
    <added>
      <filename>test/acts_as_unvlogable_test.rb</filename>
    </added>
    <added>
      <filename>unvlogable_sample.yml</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -1,4 +1,36 @@
-Videogrinder
-============
+Acts as unvlogable
+==================
+
+What the hell is this!
+----------------------
+
+This is the plugin that we use in [unvlog.com](http://unvlog.com) to manage the supported video services. Is an easy way to obtain a few basics about a video only through its url.
+
+A quick example:
+
+To include [this video](http://www.youtube.com/watch?v=GPQnbtldFyo) in [this post](http://unvlog.com/blat/2008/3/10/otro-pelotazo) we need to know its title, the correct way to embed it and its thumbnail url. With this plugin we have an easy access to this data:
+
+        @aha = UnvlogIt.new(&quot;http://www.youtube.com/watch?v=GPQnbtldFyo&quot;)
+        @aha.title =&gt; &quot;paradon del portero&quot;
+        @aha.thumbnail =&gt; &quot;http://i4.ytimg.com/vi/GPQnbtldFyo/default.jpg&quot;
+        @aha.embed_url =&gt; &quot;http://www.youtube.com/v/GPQnbtldFyo&quot;
+        @aha.embed_html(width, height) =&gt; &quot;&lt;object [...]&lt;/object&gt;&quot;
+        
+There is also a method to know where to download the flv.
+
+
+Install it!
+-----------
+
+1. That is a plugin, then you need to do:
+
+        script/plugin install git://github.com/mamuso/acts_as_unvlogable.git
+        
+2. Optionally you can create the `config/unvlogable.yml` to store keys for the different services. You have in the plugin a [sample file](http://github.com/mamuso/acts_as_unvlogable/tree/master/unvlogable_sample.yml)
+
+
+And... what else?
+-----------------
+
+To know the supported services and particular uses we will do (in a near future :D) a complete documentation in [the wiki](https://github.com/mamuso/acts_as_unvlogable/wikis)
 
-I swear this project will be documented soon.
\ No newline at end of file</diff>
      <filename>README.markdown</filename>
    </modified>
    <modified>
      <diff>@@ -5,17 +5,17 @@ require 'rake/rdoctask'
 desc 'Default: run unit tests.'
 task :default =&gt; :test
 
-desc 'Test the videogrinder plugin.'
+desc 'Test the acts_as_unvlogable plugin.'
 Rake::TestTask.new(:test) do |t|
   t.libs &lt;&lt; 'lib'
   t.pattern = 'test/**/*_test.rb'
   t.verbose = true
 end
 
-desc 'Generate documentation for the videogrinder plugin.'
+desc 'Generate documentation for the acts_as_unvlogable plugin.'
 Rake::RDocTask.new(:rdoc) do |rdoc|
   rdoc.rdoc_dir = 'rdoc'
-  rdoc.title    = 'Videogrinder'
+  rdoc.title    = 'Acts As Unvlogable'
   rdoc.options &lt;&lt; '--line-numbers' &lt;&lt; '--inline-source'
   rdoc.rdoc_files.include('README')
   rdoc.rdoc_files.include('lib/**/*.rb')</diff>
      <filename>Rakefile</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 # Main class
-require 'videogrinder'
+require 'acts_as_unvlogable'
 
 # Gems &amp; other herbs
 require 'open-uri'</diff>
      <filename>init.rb</filename>
    </modified>
    <modified>
      <diff>@@ -8,7 +8,7 @@ class VgYoutube
   
   def initialize(url=nil, key=nil)
     # general settings
-    settings ||= YAML.load_file(RAILS_ROOT + '/config/videogrinder.yml') rescue {}
+    settings ||= YAML.load_file(RAILS_ROOT + '/config/unvlogable.yml') rescue {}
     object = YouTube::Client.new(key.nil? ? settings['youtube_key'] : key) rescue {}
     
     @url = url</diff>
      <filename>lib/vg_youtube.rb</filename>
    </modified>
  </modified>
  <removed type="array">
    <removed>
      <filename>lib/videogrinder.rb</filename>
    </removed>
    <removed>
      <filename>test/videogrinder_test.rb</filename>
    </removed>
    <removed>
      <filename>videogrinder_sample.yml</filename>
    </removed>
  </removed>
  <parents type="array">
    <parent>
      <id>2bfd4557d01adc1921d7cf08957e930f27a34b1e</id>
    </parent>
  </parents>
  <author>
    <name>manuel mu&#241;oz solera</name>
    <email>mamusino@gmail.com</email>
  </author>
  <url>http://github.com/mamuso/acts_as_unvlogable/commit/0ef1e287db024964ce19c20476857dda7a69418b</url>
  <id>0ef1e287db024964ce19c20476857dda7a69418b</id>
  <committed-date>2009-01-01T13:39:10-08:00</committed-date>
  <authored-date>2009-01-01T13:39:10-08:00</authored-date>
  <message>different tests and corrections</message>
  <tree>d0f9d8cf110d6641aadda71ab1bf71acc48f1e77</tree>
  <committer>
    <name>manuel mu&#241;oz solera</name>
    <email>mamusino@gmail.com</email>
  </committer>
</commit>
