mail_tester 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +18 -0
- data/.rspec +2 -0
- data/Gemfile +3 -0
- data/Gemfile.lock +65 -0
- data/Guardfile +11 -0
- data/LICENSE.txt +22 -0
- data/README.md +43 -0
- data/Rakefile +1 -0
- data/config.yml-sample +10 -0
- data/lib/mail_tester/version.rb +5 -0
- data/lib/mail_tester.rb +99 -0
- data/mail_tester.gemspec +27 -0
- data/spec/mail_tester_spec.rb +79 -0
- data/spec/spec_helper.rb +30 -0
- metadata +174 -0
data/.gitignore
ADDED
data/.rspec
ADDED
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
@@ -0,0 +1,65 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
mail_tester (0.0.1)
|
5
|
+
|
6
|
+
GEM
|
7
|
+
remote: https://rubygems.org/
|
8
|
+
specs:
|
9
|
+
childprocess (0.3.6)
|
10
|
+
ffi (~> 1.0, >= 1.0.6)
|
11
|
+
coderay (1.0.8)
|
12
|
+
diff-lcs (1.1.3)
|
13
|
+
ffi (1.1.5)
|
14
|
+
guard (1.5.4)
|
15
|
+
listen (>= 0.4.2)
|
16
|
+
lumberjack (>= 1.0.2)
|
17
|
+
pry (>= 0.9.10)
|
18
|
+
thor (>= 0.14.6)
|
19
|
+
guard-rspec (2.1.1)
|
20
|
+
guard (>= 1.1)
|
21
|
+
rspec (~> 2.11)
|
22
|
+
guard-spork (1.2.2)
|
23
|
+
childprocess (>= 0.2.3)
|
24
|
+
guard (>= 1.1)
|
25
|
+
spork (>= 0.8.4)
|
26
|
+
sys-proctable
|
27
|
+
listen (0.5.3)
|
28
|
+
lumberjack (1.0.2)
|
29
|
+
method_source (0.8.1)
|
30
|
+
multi_json (1.3.7)
|
31
|
+
pry (0.9.10)
|
32
|
+
coderay (~> 1.0.5)
|
33
|
+
method_source (~> 0.8)
|
34
|
+
slop (~> 3.3.1)
|
35
|
+
rb-fsevent (0.9.2)
|
36
|
+
rspec (2.11.0)
|
37
|
+
rspec-core (~> 2.11.0)
|
38
|
+
rspec-expectations (~> 2.11.0)
|
39
|
+
rspec-mocks (~> 2.11.0)
|
40
|
+
rspec-core (2.11.1)
|
41
|
+
rspec-expectations (2.11.3)
|
42
|
+
diff-lcs (~> 1.1.3)
|
43
|
+
rspec-mocks (2.11.3)
|
44
|
+
ruby_gntp (0.3.4)
|
45
|
+
simplecov (0.6.4)
|
46
|
+
multi_json (~> 1.0)
|
47
|
+
simplecov-html (~> 0.5.3)
|
48
|
+
simplecov-html (0.5.3)
|
49
|
+
slop (3.3.3)
|
50
|
+
spork (0.9.2)
|
51
|
+
sys-proctable (0.9.2)
|
52
|
+
thor (0.16.0)
|
53
|
+
|
54
|
+
PLATFORMS
|
55
|
+
ruby
|
56
|
+
|
57
|
+
DEPENDENCIES
|
58
|
+
guard
|
59
|
+
guard-rspec
|
60
|
+
guard-spork
|
61
|
+
mail_tester!
|
62
|
+
rb-fsevent (~> 0.9.1)
|
63
|
+
rspec
|
64
|
+
ruby_gntp
|
65
|
+
simplecov
|
data/Guardfile
ADDED
@@ -0,0 +1,11 @@
|
|
1
|
+
guard 'rspec' do
|
2
|
+
watch(%r{^spec/.+_spec\.rb$})
|
3
|
+
watch(%r{^lib/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" }
|
4
|
+
watch('spec/spec_helper.rb') { "spec" }
|
5
|
+
end
|
6
|
+
|
7
|
+
guard 'spork' do
|
8
|
+
watch('Gemfile')
|
9
|
+
watch('Gemfile.lock')
|
10
|
+
watch('spec/spec_helper.rb') { :rspec }
|
11
|
+
end
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2012 Nicolas Ledez
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,43 @@
|
|
1
|
+
# Mail::Tester
|
2
|
+
|
3
|
+
A simple gem to test mail server config
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
gem 'mail_tester'
|
10
|
+
|
11
|
+
And then execute:
|
12
|
+
|
13
|
+
$ bundle
|
14
|
+
|
15
|
+
Or install it yourself as:
|
16
|
+
|
17
|
+
$ gem install mail_tester
|
18
|
+
|
19
|
+
## Usage
|
20
|
+
|
21
|
+
@test = Mail::Tester::MailTester.new(@config['email_adress'], @config['password'])
|
22
|
+
(message, nb) = @test.check_mail
|
23
|
+
# message give you text return by server
|
24
|
+
# nb give you number of message store on server
|
25
|
+
(result, id) = @test.check_smtp
|
26
|
+
# result give you message return by smtp server
|
27
|
+
# id is the message id send by smtp server
|
28
|
+
|
29
|
+
## Testing
|
30
|
+
|
31
|
+
1. Clone it
|
32
|
+
2. Copy config.yml-sample to config.yml
|
33
|
+
3. Replace with your values in config.yml (dum_mail is a account with no mail)
|
34
|
+
4. "bundle exec rspec" launch Specs
|
35
|
+
5. "bundle exec guard" launch Guard with reload when modify files
|
36
|
+
|
37
|
+
## Contributing
|
38
|
+
|
39
|
+
1. Fork it
|
40
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
41
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
42
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
43
|
+
5. Create new Pull Request
|
data/Rakefile
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require "bundler/gem_tasks"
|
data/config.yml-sample
ADDED
data/lib/mail_tester.rb
ADDED
@@ -0,0 +1,99 @@
|
|
1
|
+
require "mail_tester/version"
|
2
|
+
require 'net/pop'
|
3
|
+
require 'net/smtp'
|
4
|
+
require 'date'
|
5
|
+
|
6
|
+
module Mail
|
7
|
+
module Tester
|
8
|
+
class MailTester
|
9
|
+
attr_reader :email, :password, :user, :domain, :pop3_hostname, :smtp_hostname, :pop3_server, :smtp_server
|
10
|
+
|
11
|
+
def initialize(email, password, realname="")
|
12
|
+
@email = email
|
13
|
+
@password = password
|
14
|
+
@realname = realname
|
15
|
+
|
16
|
+
@user, @domain = @email.split('@')
|
17
|
+
@pop3_hostname = 'pop.' + @domain
|
18
|
+
@smtp_hostname = 'smtp.' + @domain
|
19
|
+
|
20
|
+
@pop3_server = Net::POP3.new(@pop3_hostname)
|
21
|
+
@smtp_server = Net::SMTP.start(@smtp_hostname, 587)
|
22
|
+
end
|
23
|
+
|
24
|
+
def check_mail
|
25
|
+
result = ''
|
26
|
+
@pop3_server.start(@email, @password)
|
27
|
+
if @pop3_server.mails.empty?
|
28
|
+
result += 'No mail.'
|
29
|
+
else
|
30
|
+
i = 0
|
31
|
+
@pop3_server.each_mail do |m|
|
32
|
+
i += 1
|
33
|
+
end
|
34
|
+
result += "#{@pop3_server.mails.size} mails popped."
|
35
|
+
end
|
36
|
+
@pop3_server.finish()
|
37
|
+
|
38
|
+
return [result, i]
|
39
|
+
end
|
40
|
+
|
41
|
+
def search_mail(search)
|
42
|
+
result = 0
|
43
|
+
@pop3_server.start(@email, @password)
|
44
|
+
if @pop3_server.mails.empty?
|
45
|
+
result = 0
|
46
|
+
else
|
47
|
+
pattern = Regexp.new(search.gsub(/[:+]/, '.'))
|
48
|
+
@pop3_server.each_mail do |m|
|
49
|
+
result += 1
|
50
|
+
if m.header() =~ pattern
|
51
|
+
@pop3_server.finish()
|
52
|
+
return result
|
53
|
+
end
|
54
|
+
end
|
55
|
+
end
|
56
|
+
@pop3_server.finish()
|
57
|
+
|
58
|
+
return -1
|
59
|
+
end
|
60
|
+
|
61
|
+
def delete_mail(search)
|
62
|
+
result = 0
|
63
|
+
@pop3_server.start(@email, @password)
|
64
|
+
if @pop3_server.mails.empty?
|
65
|
+
result = 0
|
66
|
+
else
|
67
|
+
pattern = Regexp.new(search.gsub(/[:+]/, '.'))
|
68
|
+
@pop3_server.each_mail do |m|
|
69
|
+
result += 1
|
70
|
+
if m.header() =~ pattern
|
71
|
+
m.delete
|
72
|
+
@pop3_server.finish()
|
73
|
+
return 1
|
74
|
+
end
|
75
|
+
end
|
76
|
+
end
|
77
|
+
@pop3_server.finish()
|
78
|
+
|
79
|
+
return -1
|
80
|
+
end
|
81
|
+
|
82
|
+
def check_smtp
|
83
|
+
message_id = 'Message-Id: <' + DateTime::now.to_s + '@' + @email + '>'
|
84
|
+
|
85
|
+
msgstr = ''
|
86
|
+
msgstr += "From: #{@realname} <#{@email}>\n"
|
87
|
+
msgstr += "To: #{@realname} <#{@email}>\n"
|
88
|
+
msgstr += "Subject: test message\n"
|
89
|
+
msgstr += "Date: Sat, 23 Jun 2001 16:26:43 +0900\n"
|
90
|
+
msgstr += "#{message_id}\n"
|
91
|
+
msgstr += "\n"
|
92
|
+
msgstr += "This is a test message."
|
93
|
+
|
94
|
+
@smtp_server.send_message msgstr, @email, @email
|
95
|
+
return ['Mail sent', message_id]
|
96
|
+
end
|
97
|
+
end
|
98
|
+
end
|
99
|
+
end
|
data/mail_tester.gemspec
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'mail_tester/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |gem|
|
7
|
+
gem.name = "mail_tester"
|
8
|
+
gem.version = Mail::Tester::VERSION
|
9
|
+
gem.authors = ["Nicolas Ledez"]
|
10
|
+
gem.email = ["github@ledez.net"]
|
11
|
+
gem.description = %q{A simple gem to test mail server config}
|
12
|
+
gem.summary = %q{Provide user & server config. Gem test server for you}
|
13
|
+
gem.homepage = ""
|
14
|
+
|
15
|
+
gem.add_development_dependency('rspec')
|
16
|
+
gem.add_development_dependency('guard')
|
17
|
+
gem.add_development_dependency('guard-spork')
|
18
|
+
gem.add_development_dependency('guard-rspec')
|
19
|
+
gem.add_development_dependency('rb-fsevent', '~> 0.9.1')
|
20
|
+
gem.add_development_dependency('ruby_gntp')
|
21
|
+
gem.add_development_dependency('simplecov')
|
22
|
+
|
23
|
+
gem.files = `git ls-files`.split($/)
|
24
|
+
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
25
|
+
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
26
|
+
gem.require_paths = ["lib"]
|
27
|
+
end
|
@@ -0,0 +1,79 @@
|
|
1
|
+
require File.expand_path(File.dirname(__FILE__) + '/spec_helper')
|
2
|
+
|
3
|
+
require 'mail_tester'
|
4
|
+
|
5
|
+
describe Mail::Tester::MailTester do
|
6
|
+
before(:all) do
|
7
|
+
config_file = "config.yml"
|
8
|
+
|
9
|
+
unless File.exist? config_file
|
10
|
+
puts "#{config_file} is missing!"
|
11
|
+
exit
|
12
|
+
end
|
13
|
+
|
14
|
+
@config = YAML::load(File.open(config_file))
|
15
|
+
end
|
16
|
+
|
17
|
+
before(:each) do
|
18
|
+
@test = Mail::Tester::MailTester.new(@config['email_adress'], @config['password'])
|
19
|
+
end
|
20
|
+
|
21
|
+
it "Can define parameters" do
|
22
|
+
@test.email.should == @config['email_adress']
|
23
|
+
@test.password.should == @config['password']
|
24
|
+
end
|
25
|
+
|
26
|
+
it "Can split mail" do
|
27
|
+
@test.user.should == @config['user']
|
28
|
+
@test.domain.should == @config['domain']
|
29
|
+
end
|
30
|
+
|
31
|
+
it "Can define correct servers" do
|
32
|
+
@test.pop3_hostname.should == @config['server_pop']
|
33
|
+
@test.smtp_hostname.should == @config['server_smtp']
|
34
|
+
end
|
35
|
+
|
36
|
+
it "Can check mail" do
|
37
|
+
(message, nb) = @test.check_mail
|
38
|
+
|
39
|
+
message.should =~ /^([0-9]+ mails popped.|No mail.)$/
|
40
|
+
nb.should be_an_instance_of(Fixnum)
|
41
|
+
nb.to_s.should =~ /^[0-9]+$/
|
42
|
+
end
|
43
|
+
|
44
|
+
it "Can test server" do
|
45
|
+
(message, nbefore) = @test.check_mail
|
46
|
+
(result, id) = @test.check_smtp
|
47
|
+
nbs = @test.search_mail(id)
|
48
|
+
nbd = @test.delete_mail(id)
|
49
|
+
(message, nafter) = @test.check_mail
|
50
|
+
|
51
|
+
result.should == 'Mail sent'
|
52
|
+
id.should =~ /^Message-Id: /
|
53
|
+
|
54
|
+
nbs.should be_an_instance_of(Fixnum)
|
55
|
+
nbd.should be_an_instance_of(Fixnum)
|
56
|
+
|
57
|
+
nbefore.should >= nafter
|
58
|
+
end
|
59
|
+
|
60
|
+
it "Can't make bad search" do
|
61
|
+
id = "Message-Id: <2010-02-14T23:44:52+01:00@bob@example.com>"
|
62
|
+
nbs = @test.search_mail(id)
|
63
|
+
nbd = @test.delete_mail(id)
|
64
|
+
|
65
|
+
nbs.should == -1
|
66
|
+
nbd.should == -1
|
67
|
+
end
|
68
|
+
|
69
|
+
it "Can use a empty account" do
|
70
|
+
@test = Mail::Tester::MailTester.new(@config['dum_mail'], @config['dum_pass'])
|
71
|
+
(message, nb) = @test.check_mail
|
72
|
+
|
73
|
+
message.should =~ /^No mail.$/
|
74
|
+
nb.should be_nil
|
75
|
+
id = "Message-Id: <2010-02-14T23:44:52+01:00@bob@example.com>"
|
76
|
+
nbs = @test.search_mail(id)
|
77
|
+
nbd = @test.delete_mail(id)
|
78
|
+
end
|
79
|
+
end
|
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,30 @@
|
|
1
|
+
require 'rubygems'
|
2
|
+
require 'spork'
|
3
|
+
require 'rspec/autorun'
|
4
|
+
#uncomment the following line to use spork with the debugger
|
5
|
+
#require 'spork/ext/ruby-debug'
|
6
|
+
|
7
|
+
require 'simplecov'
|
8
|
+
SimpleCov.start
|
9
|
+
|
10
|
+
Spork.prefork do
|
11
|
+
require 'rspec'
|
12
|
+
RSpec.configure do |config|
|
13
|
+
config.treat_symbols_as_metadata_keys_with_true_values = true
|
14
|
+
config.run_all_when_everything_filtered = true
|
15
|
+
config.filter_run :focus
|
16
|
+
|
17
|
+
config.order = 'random'
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
Spork.each_run do
|
22
|
+
end
|
23
|
+
|
24
|
+
RSpec.configure do |config|
|
25
|
+
config.treat_symbols_as_metadata_keys_with_true_values = true
|
26
|
+
config.run_all_when_everything_filtered = true
|
27
|
+
config.filter_run :focus
|
28
|
+
|
29
|
+
config.order = 'random'
|
30
|
+
end
|
metadata
ADDED
@@ -0,0 +1,174 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: mail_tester
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Nicolas Ledez
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2012-11-18 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: rspec
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ! '>='
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '0'
|
22
|
+
type: :development
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ! '>='
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '0'
|
30
|
+
- !ruby/object:Gem::Dependency
|
31
|
+
name: guard
|
32
|
+
requirement: !ruby/object:Gem::Requirement
|
33
|
+
none: false
|
34
|
+
requirements:
|
35
|
+
- - ! '>='
|
36
|
+
- !ruby/object:Gem::Version
|
37
|
+
version: '0'
|
38
|
+
type: :development
|
39
|
+
prerelease: false
|
40
|
+
version_requirements: !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
42
|
+
requirements:
|
43
|
+
- - ! '>='
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
version: '0'
|
46
|
+
- !ruby/object:Gem::Dependency
|
47
|
+
name: guard-spork
|
48
|
+
requirement: !ruby/object:Gem::Requirement
|
49
|
+
none: false
|
50
|
+
requirements:
|
51
|
+
- - ! '>='
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: '0'
|
54
|
+
type: :development
|
55
|
+
prerelease: false
|
56
|
+
version_requirements: !ruby/object:Gem::Requirement
|
57
|
+
none: false
|
58
|
+
requirements:
|
59
|
+
- - ! '>='
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
- !ruby/object:Gem::Dependency
|
63
|
+
name: guard-rspec
|
64
|
+
requirement: !ruby/object:Gem::Requirement
|
65
|
+
none: false
|
66
|
+
requirements:
|
67
|
+
- - ! '>='
|
68
|
+
- !ruby/object:Gem::Version
|
69
|
+
version: '0'
|
70
|
+
type: :development
|
71
|
+
prerelease: false
|
72
|
+
version_requirements: !ruby/object:Gem::Requirement
|
73
|
+
none: false
|
74
|
+
requirements:
|
75
|
+
- - ! '>='
|
76
|
+
- !ruby/object:Gem::Version
|
77
|
+
version: '0'
|
78
|
+
- !ruby/object:Gem::Dependency
|
79
|
+
name: rb-fsevent
|
80
|
+
requirement: !ruby/object:Gem::Requirement
|
81
|
+
none: false
|
82
|
+
requirements:
|
83
|
+
- - ~>
|
84
|
+
- !ruby/object:Gem::Version
|
85
|
+
version: 0.9.1
|
86
|
+
type: :development
|
87
|
+
prerelease: false
|
88
|
+
version_requirements: !ruby/object:Gem::Requirement
|
89
|
+
none: false
|
90
|
+
requirements:
|
91
|
+
- - ~>
|
92
|
+
- !ruby/object:Gem::Version
|
93
|
+
version: 0.9.1
|
94
|
+
- !ruby/object:Gem::Dependency
|
95
|
+
name: ruby_gntp
|
96
|
+
requirement: !ruby/object:Gem::Requirement
|
97
|
+
none: false
|
98
|
+
requirements:
|
99
|
+
- - ! '>='
|
100
|
+
- !ruby/object:Gem::Version
|
101
|
+
version: '0'
|
102
|
+
type: :development
|
103
|
+
prerelease: false
|
104
|
+
version_requirements: !ruby/object:Gem::Requirement
|
105
|
+
none: false
|
106
|
+
requirements:
|
107
|
+
- - ! '>='
|
108
|
+
- !ruby/object:Gem::Version
|
109
|
+
version: '0'
|
110
|
+
- !ruby/object:Gem::Dependency
|
111
|
+
name: simplecov
|
112
|
+
requirement: !ruby/object:Gem::Requirement
|
113
|
+
none: false
|
114
|
+
requirements:
|
115
|
+
- - ! '>='
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: '0'
|
118
|
+
type: :development
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
none: false
|
122
|
+
requirements:
|
123
|
+
- - ! '>='
|
124
|
+
- !ruby/object:Gem::Version
|
125
|
+
version: '0'
|
126
|
+
description: A simple gem to test mail server config
|
127
|
+
email:
|
128
|
+
- github@ledez.net
|
129
|
+
executables: []
|
130
|
+
extensions: []
|
131
|
+
extra_rdoc_files: []
|
132
|
+
files:
|
133
|
+
- .gitignore
|
134
|
+
- .rspec
|
135
|
+
- Gemfile
|
136
|
+
- Gemfile.lock
|
137
|
+
- Guardfile
|
138
|
+
- LICENSE.txt
|
139
|
+
- README.md
|
140
|
+
- Rakefile
|
141
|
+
- config.yml-sample
|
142
|
+
- lib/mail_tester.rb
|
143
|
+
- lib/mail_tester/version.rb
|
144
|
+
- mail_tester.gemspec
|
145
|
+
- spec/mail_tester_spec.rb
|
146
|
+
- spec/spec_helper.rb
|
147
|
+
homepage: ''
|
148
|
+
licenses: []
|
149
|
+
post_install_message:
|
150
|
+
rdoc_options: []
|
151
|
+
require_paths:
|
152
|
+
- lib
|
153
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
154
|
+
none: false
|
155
|
+
requirements:
|
156
|
+
- - ! '>='
|
157
|
+
- !ruby/object:Gem::Version
|
158
|
+
version: '0'
|
159
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
160
|
+
none: false
|
161
|
+
requirements:
|
162
|
+
- - ! '>='
|
163
|
+
- !ruby/object:Gem::Version
|
164
|
+
version: '0'
|
165
|
+
requirements: []
|
166
|
+
rubyforge_project:
|
167
|
+
rubygems_version: 1.8.23
|
168
|
+
signing_key:
|
169
|
+
specification_version: 3
|
170
|
+
summary: Provide user & server config. Gem test server for you
|
171
|
+
test_files:
|
172
|
+
- spec/mail_tester_spec.rb
|
173
|
+
- spec/spec_helper.rb
|
174
|
+
has_rdoc:
|