Sha256: b2100c09d5dba3a4e891f3a0c98c703847055b9ba99b58ba01f852e515969d44

Contents?: true

Size: 898 Bytes

Versions: 3

Compression:

Stored size: 898 Bytes

Contents

# vim:fileencoding=utf-8

lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'fakesmtpd'

Gem::Specification.new do |spec|
  spec.name          = 'fakesmtpd'
  spec.version       = FakeSMTPd::VERSION
  spec.authors       = ['Dan Buch']
  spec.email         = ['d.buch@modcloth.com']
  spec.description   = %q{A fake SMTP server with a minimal HTTP API}
  spec.summary       = %q{A fake SMTP server with a minimal HTTP API}
  spec.homepage      = 'https://github.com/modcloth-labs/fakesmtpd'
  spec.license       = 'MIT'

  spec.files         = `git ls-files`.split($/)
  spec.executables   = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
  spec.test_files    = spec.files.grep(%r{^(test|spec|features)/})
  spec.require_paths = %w(lib)

  spec.add_development_dependency 'bundler', '~> 1.3'
  spec.add_development_dependency 'rake'
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
fakesmtpd-0.3.1 fakesmtpd.gemspec
fakesmtpd-0.3.0 fakesmtpd.gemspec
fakesmtpd-0.2.0 fakesmtpd.gemspec