Sha256: da488b384c76d5060e87eae5d89ad0d3248b11e7b99a3a11a0b575a6d5ada534
Contents?: true
Size: 549 Bytes
Versions: 15
Compression:
Stored size: 549 Bytes
Contents
module MailEngine class Install < Rails::Generators::Base desc "Install Mail Engine." source_root File.join(File.dirname(__FILE__)) def create_config say "Create Configure file to project...", :yellow MailEngine::CreateConfig.start end def copy_resources say "Copying Resource Files to project...", :yellow MailEngine::CopyResources.start end def copy_migrations say "Copying Migration Files to project...", :yellow MailEngine::CopyMigrations.start end end end # MailEngine
Version data entries
15 entries across 15 versions & 1 rubygems