Sha256: 0f086b154ff25dd8f05ce70784bf5526a1cd6308bda535879ea41cc0eaf91e88

Contents?: true

Size: 1.54 KB

Versions: 1

Compression:

Stored size: 1.54 KB

Contents

# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)


Gem::Specification.new do |s|
  s.name        = "gomig_mail_delivery"
  s.version     = '0.0.1'
  s.authors     = ["Timo van Prooijen, eWaza"]
  s.email       = ["timo@ewaza.nl"]
  s.homepage    = "https://github.com/ewaza/gomig-mail-delivery"
  s.summary     = %q{
    Extension for the Mail gem that provides 'migrating' to a google Apps account
  }
  s.description = %q{
    Google Apps migration API mail delivery method is an extension for the Mail gem. It provides a delivery method based on the the Google Apps migration API. This API is only available for organization who uses Google Apps for Business, Education or ISPs. (unfortunately not for Gmail or the free edition)

    Whenever your application needs to automatically generate complex emails, which have to be manually approved before they can get sent out; You can make life easy with this gem in combination with google apps. Instead of delivering the email the email will be stored in a, preconfigured users DRAFTS folder. 

    You could also integrate this gem with a CRM system in order to load templates for further manual completion.
  }
  
  s.files         = `git ls-files`.split("\n")
  s.test_files    = `git ls-files -- {test,spec,features}/*`.split("\n")
  s.executables   = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
  s.require_paths = ["lib"]

  # specify any dependencies here; for example:
  s.add_development_dependency "rspec"
  s.add_runtime_dependency "mail"
  s.add_runtime_dependency "gdata"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
gomig_mail_delivery-0.0.1 gomig_mail_delivery.gemspec