public
Description: Tog plugin for managing videos
Homepage: http://www.toghq.com
Clone URL: git://github.com/molpe/tog_videos.git
name age message
file .gitignore Thu Apr 16 01:53:29 -0700 2009 tog_videos, first try [molpe]
file MIT-LICENSE Thu Apr 16 01:53:29 -0700 2009 tog_videos, first try [molpe]
file README Thu Apr 16 13:36:40 -0700 2009 added basic readme [molpe]
file Rakefile Thu Apr 16 01:53:29 -0700 2009 tog_videos, first try [molpe]
directory app/ Thu May 14 04:29:17 -0700 2009 models searchable and some translations [molpe]
directory config/ Thu Apr 16 01:53:29 -0700 2009 tog_videos, first try [molpe]
directory db/ Thu Apr 16 01:53:29 -0700 2009 tog_videos, first try [molpe]
file init.rb Thu May 14 04:29:17 -0700 2009 models searchable and some translations [molpe]
directory locale/ Thu May 14 04:29:17 -0700 2009 models searchable and some translations [molpe]
directory test/ Thu Apr 16 01:53:29 -0700 2009 tog_videos, first try [molpe]
README
TogVideos
=========

A simple plugin for sharing videos

== Included functionality

* Add videos from many online services (thanks to acts_as_unvlogable)
* Videos: taggables, rateables, commentables
* Public and private videos

Resources
=========

Plugin requirements
-------------------

* seo_urls
* tog_user
*acts_as_unvlogable
    

Install
-------

* Install plugin form source:

<pre>
ruby script/plugin install git://github.com/molpe/tog_videos.git
</pre>

* Generate installation migration:

<pre>
ruby script/generate migration install_tog_videos
</pre>

    with the following content:

<pre>
class InstallTogVideos < ActiveRecord::Migration
  def self.up
    migrate_plugin "tog_videos", 2
  end

  def self.down
    migrate_plugin "tog_videos", 0
  end
end
</pre>

* Add tog_videos's routes to your application's config/routes.rb

<pre>
map.routes_from_plugin 'tog_videos'
</pre> 

* And finally you can migrate the db to add the tog_videos specific tables:

<pre> 
rake db:migrate
</pre> 


More
-------

[http://github.com/tog/tog\_vault](http://github.com/molpe/tog_videos)

[http://github.com/tog/tog\_vault/wikis](http://github.com/molpe/tog_videos/wikis)


Copyright (c) 2009 Keras Software Development, released under the MIT license