# load all application code and gems load ::File.expand_path(File.join("..", "initialize.rb"), __FILE__) # set Plezi to rake mode and load it's tasks (if relevant). require "plezi/rake" # create a default task desc "The default task will simply remind you to call 'rake -T'." task :default do puts "I don't know what to do. Please choose a task..." puts "You can print a list of all avaiulable tasks using: rake -T" end