postfix_admin 0.0.2 → 0.1.0

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.
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.2
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-08-30 00:00:00.000000000 Z
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
- - Rakefile
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
- homepage: ''
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
@@ -1,2 +0,0 @@
1
- #!/usr/bin/env rake
2
- require "bundler/gem_tasks"