This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
| name | age | message | |
|---|---|---|---|
| |
.gitignore | Thu Apr 16 01:53:29 -0700 2009 | |
| |
MIT-LICENSE | Thu Apr 16 01:53:29 -0700 2009 | |
| |
README | Thu Apr 16 13:36:40 -0700 2009 | |
| |
Rakefile | Thu Apr 16 01:53:29 -0700 2009 | |
| |
app/ | Thu May 14 04:29:17 -0700 2009 | |
| |
config/ | Thu Apr 16 01:53:29 -0700 2009 | |
| |
db/ | Thu Apr 16 01:53:29 -0700 2009 | |
| |
init.rb | Thu May 14 04:29:17 -0700 2009 | |
| |
locale/ | Thu May 14 04:29:17 -0700 2009 | |
| |
test/ | Thu Apr 16 01:53:29 -0700 2009 |
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







