public
Description: Capistrano recipe for Panda and MySql
Homepage: http://redwriteshere.com
Clone URL: git://github.com/reddavis/panda_cap.git
panda_cap / rvideo.rb
100644 10 lines (8 sloc) 0.305 kb
1
2
3
4
5
6
7
8
9
10
namespace :panda do
  
  desc "Install RVideo"
  task :rvideo do
     ["rm -rf rvideo",
       "git clone git://github.com/jaikoo/rvideo.git",
       "cd rvideo && rake install_gem && cp lib/rvideo/tools/*.rb /usr/lib/ruby/gems/1.8/gems/rvideo-0.9.4/lib/rvideo/tools/"].each {|cmd| sudo cmd}
  end
  
end