topfunky (owner)

Revisions

gist: 16098 Download_button fork
public
Public Clone URL: git://gist.github.com/16098.git
Embed All Files: show embed
Rakefile #
1
2
3
4
5
6
7
8
9
10
11
12
13
desc "Install merb from the repository"
task :default do
  system "sudo gem install wycats-thor -s http://gems.github.com"
  system "curl -L http://merbivore.com/merb.thor > merb.thor"
  system "sudo thor merb:edge --install"
  system "sudo thor merb:edge:plugins ---install"
  system "sudo thor merb:edge:do mysql --install"
  system "sudo thor merb:edge:dm_core --install"
  system "sudo thor merb:edge:dm_more --install"
end