public
Description: The open source social networking platform in Ruby on Rails from the author of RailsSpace
Homepage: http://insoshi.com
Clone URL: git://github.com/insoshi/insoshi.git
Search Repo:
insoshi / lib / tasks / install.rake
100644 8 lines (7 sloc) 0.177 kb
1
2
3
4
5
6
7
8
require 'active_record'
require 'active_record/fixtures'
 
desc "Install Insoshi"
task :install => :environment do |t|
  Rake::Task["db:migrate"].invoke
  Preference.create!
end