Sha256: f545c7a5816124f7aaab2c35e45429342a77dec2ad183dd21811d039d75eb51b

Contents?: true

Size: 482 Bytes

Versions: 9

Compression:

Stored size: 482 Bytes

Contents

#!/usr/bin/env rake
# Add your own tasks in files placed in lib/tasks ending in .rake,
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
require 'rake/dsl_definition'
require File.expand_path('../config/application', __FILE__)
Rmails::Application.load_tasks

require "rmails/installer"

namespace :system do
  desc "Prepare server by installing required software"
  task :install do
    setup = Rmails::Installer.new
    setup.run
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
rmails-0.2.3 Rakefile
rmails-0.2.2 Rakefile
rmails-0.2.1 Rakefile
rmails-0.2.0 Rakefile
rmails-0.1.6 Rakefile
rmails-0.1.5 Rakefile
rmails-0.1.4 Rakefile
rmails-0.1.3 Rakefile
rmails-0.1.2 Rakefile