Sha256: d62ee0a52e3bb8905d1d442c4854088371219e8f3609261060eb70fab7b579c2

Contents?: true

Size: 942 Bytes

Versions: 4

Compression:

Stored size: 942 Bytes

Contents

# -*- encoding: utf-8 -*-
require File.expand_path("../lib/tuktuk/version", __FILE__)

Gem::Specification.new do |s|
  s.name        = "tuktuk"
  s.version     = Tuktuk::VERSION
  s.platform    = Gem::Platform::RUBY
  s.authors     = ['Tomás Pollak']
  s.email       = ['tomas@forkhq.com']
  s.homepage    = "https://github.com/tomas/tuktuk"
  s.summary     = "SMTP client for Ruby with DKIM support."
  s.description = "Easy way of sending DKIM-signed emails from Ruby, no dependencies needed."

  s.required_rubygems_version = ">= 1.3.6"
  s.rubyforge_project         = "tuktuk"

  s.add_development_dependency "bundler", ">= 1.0.0"
  s.add_runtime_dependency "net-dns", "= 0.6.1"
  s.add_runtime_dependency "mail", "~> 2.3"
  s.add_runtime_dependency "dkim", "~> 0.0.2"

  s.files        = `git ls-files`.split("\n")
  s.executables  = `git ls-files`.split("\n").map{|f| f =~ /^bin\/(.*)/ ? $1 : nil}.compact
  s.require_path = 'lib'
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
tuktuk-0.3.1 tuktuk.gemspec
tuktuk-0.3.0 tuktuk.gemspec
tuktuk-0.2.3 tuktuk.gemspec
tuktuk-0.2.2 tuktuk.gemspec