Sha256: f39c76a558ebe85815802a949ce970b069f8a381b50432391f07c38b5a314906

Contents?: true

Size: 1.01 KB

Versions: 6

Compression:

Stored size: 1.01 KB

Contents

# Copyright (c) 2008-2013 Michael Dvorkin and contributors.
#
# Fat Free CRM is freely distributable under the terms of MIT license.
# See MIT-LICENSE file or http://www.opensource.org/licenses/mit-license.php
#------------------------------------------------------------------------------
namespace :ffcrm do
  namespace :dropbox do
    desc "Run dropbox crawler and process incoming emails"
    task run: :environment do
      require "fat_free_crm/mail_processor/dropbox"
      FatFreeCRM::MailProcessor::Dropbox.new.run(dry_run = false)
    end

    namespace :run do
      desc "[Dry run] - Run dropbox crawler and process incoming emails"
      task dry: :environment do
        require "fat_free_crm/mail_processor/dropbox"
        FatFreeCRM::MailProcessor::Dropbox.new.run(dry_run = true)
      end
    end

    desc "Set up email dropbox based on currently loaded settings"
    task setup: :environment do
      require "fat_free_crm/mail_processor/dropbox"
      FatFreeCRM::MailProcessor::Dropbox.new.setup
    end
  end
end

Version data entries

6 entries across 6 versions & 2 rubygems

Version Path
fat_free_crm-0.14.2 lib/tasks/ffcrm/dropbox.rake
fat_free_crm-0.14.1 lib/tasks/ffcrm/dropbox.rake
fat_free_crm-0.15.0.beta lib/tasks/ffcrm/dropbox.rake
fat_free_crm-0.14.0 lib/tasks/ffcrm/dropbox.rake
reduced_fat_crm-0.15.0.beta lib/tasks/ffcrm/dropbox.rake
reduced_fat_crm-0.14.0 lib/tasks/ffcrm/dropbox.rake