-
Notifications
You must be signed in to change notification settings - Fork 2
/
mail_sandbox.gemspec
28 lines (24 loc) · 1.13 KB
/
mail_sandbox.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/mail_sandbox/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Kaize"]
gem.email = ["[email protected]"]
gem.description = %q{Gem has run SMTP server and manipulate letters received. Using the Observer pattern you can subscribe to the event server.}
gem.summary = %q{SMTP server sandbox}
gem.homepage = "https://github.com/kaize/mail_sandbox"
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "mail_sandbox"
gem.require_paths = ["lib"]
gem.version = MailSandbox::VERSION
gem.add_dependency('eventmachine', '~> 1.0.1')
gem.add_dependency('em-http-request', '~> 0.3.0')
gem.add_dependency('OptionParser')
gem.add_dependency('file-utils')
gem.add_dependency('simple_pid')
gem.add_development_dependency('rake')
gem.add_development_dependency('minitest', '4.7.5')
gem.add_development_dependency('turn')
gem.add_development_dependency('mocha', '>= 0.13.1')
end