Skip to content

Commit 11a010d

Browse files
committed
0.0.3
1 parent aab89d5 commit 11a010d

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

lib/mocksmtpd.rb

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
require 'smtpserver'
99

1010
class Mocksmtpd
11-
VERSION = '0.0.2'
11+
VERSION = '0.0.3'
1212
TEMPLATE_DIR = Pathname.new(File.dirname(__FILE__)) + "../templates"
1313

1414
include ERB::Util
@@ -170,6 +170,8 @@ def init_permission
170170
Process.egid = gid
171171
Process.euid = uid
172172
rescue NotImplementedError => e
173+
rescue Errno::EPERM => e
174+
@logger.warn("could not change euid/egid. #{e}")
173175
end
174176
end
175177

mocksmtpd.gemspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
Gem::Specification.new do |s|
22
s.name = %q{mocksmtpd}
3-
s.version = "0.0.2"
3+
s.version = "0.0.3"
44

55
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
66
s.authors = ["KOSEKI Kengo"]
7-
s.date = %q{2008-11-04}
7+
s.date = %q{2008-11-08}
88
s.default_executable = %q{mocksmtpd}
99
s.description = %q{Mock SMTP server for development/testing.}
1010
s.email = %q{[email protected]}
1111
s.executables = ["mocksmtpd"]
1212
s.extra_rdoc_files = ["README", "ChangeLog"]
13-
s.files = ["README", "ChangeLog", "Rakefile", "bin/mocksmtpd", "test/mocksmtpd_test.rb", "test/test_helper.rb", "lib/mocksmtpd-old.rb", "lib/mocksmtpd-old.rb~", "lib/mocksmtpd.rb", "lib/mocksmtpd.rb~", "lib/smtpserver.rb", "templates/html", "templates/html/index.erb", "templates/html/index.erb~", "templates/html/index_entry.erb", "templates/html/index_entry.erb~", "templates/html/mail.erb", "templates/html/mail.html.erb~", "templates/mocksmtpd.conf.erb"]
13+
s.files = ["README", "ChangeLog", "Rakefile", "bin/mocksmtpd", "test/mocksmtpd_test.rb", "test/test_helper.rb", "lib/mocksmtpd.rb", "lib/mocksmtpd.rb~", "lib/smtpserver.rb", "templates/html", "templates/html/index.erb", "templates/html/index.erb~", "templates/html/index_entry.erb", "templates/html/index_entry.erb~", "templates/html/mail.erb", "templates/html/mail.html.erb~", "templates/mocksmtpd.conf.erb"]
1414
s.has_rdoc = true
1515
s.homepage = %q{http://github.com/koseki/mocksmtpd/}
1616
s.rdoc_options = ["--title", "mocksmtpd documentation", "--charset", "utf-8", "--opname", "index.html", "--line-numbers", "--main", "README", "--inline-source", "--exclude", "^(examples|extras)/"]

0 commit comments

Comments
 (0)