postfix_admin 0.0.2 → 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +21 -11
- data/Thorfile +30 -0
- data/bin/postfix_admin +5 -97
- data/lib/postfix_admin/base.rb +188 -0
- data/lib/postfix_admin/cli.rb +244 -79
- data/lib/postfix_admin/error.rb +4 -0
- data/lib/postfix_admin/models.rb +127 -17
- data/lib/postfix_admin/runner.rb +105 -0
- data/lib/postfix_admin/version.rb +2 -2
- data/lib/postfix_admin.rb +1 -157
- data/postfix_admin.gemspec +2 -1
- data/spec/base_spec.rb +218 -0
- data/spec/cli_spec.rb +165 -0
- data/spec/models_spec.rb +136 -0
- data/spec/postfix_admin.conf +5 -0
- data/spec/postfix_test.sql +250 -0
- data/spec/runner_spec.rb +144 -0
- data/spec/spec_helper.rb +160 -0
- metadata +38 -5
- data/Rakefile +0 -2
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: postfix_admin
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0
|
4
|
+
version: 0.1.0
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-
|
12
|
+
date: 2012-10-07 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: thor
|
@@ -59,6 +59,22 @@ dependencies:
|
|
59
59
|
- - ! '>='
|
60
60
|
- !ruby/object:Gem::Version
|
61
61
|
version: '0'
|
62
|
+
- !ruby/object:Gem::Dependency
|
63
|
+
name: dm-sqlite-adapter
|
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'
|
62
78
|
description: Command Line Tools of PostfixAdmin
|
63
79
|
email:
|
64
80
|
- hitoshi@nextseed.jp
|
@@ -71,14 +87,24 @@ files:
|
|
71
87
|
- Gemfile
|
72
88
|
- LICENSE
|
73
89
|
- README.md
|
74
|
-
-
|
90
|
+
- Thorfile
|
75
91
|
- bin/postfix_admin
|
76
92
|
- lib/postfix_admin.rb
|
93
|
+
- lib/postfix_admin/base.rb
|
77
94
|
- lib/postfix_admin/cli.rb
|
95
|
+
- lib/postfix_admin/error.rb
|
78
96
|
- lib/postfix_admin/models.rb
|
97
|
+
- lib/postfix_admin/runner.rb
|
79
98
|
- lib/postfix_admin/version.rb
|
80
99
|
- postfix_admin.gemspec
|
81
|
-
|
100
|
+
- spec/base_spec.rb
|
101
|
+
- spec/cli_spec.rb
|
102
|
+
- spec/models_spec.rb
|
103
|
+
- spec/postfix_admin.conf
|
104
|
+
- spec/postfix_test.sql
|
105
|
+
- spec/runner_spec.rb
|
106
|
+
- spec/spec_helper.rb
|
107
|
+
homepage: https://github.com/krhitoshi/postfix_admin
|
82
108
|
licenses: []
|
83
109
|
post_install_message:
|
84
110
|
rdoc_options: []
|
@@ -102,4 +128,11 @@ rubygems_version: 1.8.24
|
|
102
128
|
signing_key:
|
103
129
|
specification_version: 3
|
104
130
|
summary: Command Line Tools of PostfixAdmin
|
105
|
-
test_files:
|
131
|
+
test_files:
|
132
|
+
- spec/base_spec.rb
|
133
|
+
- spec/cli_spec.rb
|
134
|
+
- spec/models_spec.rb
|
135
|
+
- spec/postfix_admin.conf
|
136
|
+
- spec/postfix_test.sql
|
137
|
+
- spec/runner_spec.rb
|
138
|
+
- spec/spec_helper.rb
|
data/Rakefile
DELETED