mayaml-mutt 4.0.1 → 4.0.2
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.
- checksums.yaml +5 -5
- data/CHANGELOG.md +6 -0
- data/Gemfile +1 -0
- data/README.md +2 -3
- data/bin/mayaml-mutt-creds +1 -1
- data/bin/mayaml-mutt-init +1 -1
- data/lib/mayaml-mutt.rb +1 -1
- data/lib/mayaml-mutt/account_creds.rb +2 -2
- data/lib/mayaml-mutt/account_init.rb +2 -2
- data/lib/mayaml-mutt/accounts_alternates.rb +2 -2
- data/lib/mayaml-mutt/configs_generator.rb +1 -1
- data/lib/mayaml-mutt/version.rb +2 -2
- metadata +9 -9
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 42e955b5ec8e6fcbe4e0a9b8e8beab6a4fe126b62a3b4629cad6068c73dbd8da
|
|
4
|
+
data.tar.gz: d0130a932bc32f8250e609d01e0a8c6e5cfeb2c03a59113d59500b1a47bf76fd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4aee9fc4a174d37f392dcf94ceb01eff51fc272d8ed6c12aca3018ac1fb1c2b5e08a36fc129157d82eb83fd4448d575f7d4f8b87a4dbae6021b5a0ee6aca69c7
|
|
7
|
+
data.tar.gz: dfda719492b9f66bedddf2c9e9e94e911a5208de4b14f6f03ceedb36de56e2ab1490493575fa3b115fd6639d87709fd8481613db84cc08bdb15ef18b27fc771e
|
data/CHANGELOG.md
CHANGED
data/Gemfile
CHANGED
data/README.md
CHANGED
|
@@ -2,7 +2,6 @@
|
|
|
2
2
|
|
|
3
3
|
[](http://badge.fury.io/rb/mayaml-mutt)
|
|
4
4
|
[](https://codeclimate.com/github/skopciewski/mayaml-mutt)
|
|
5
|
-
[](https://gemnasium.com/github.com/skopciewski/mayaml-mutt)
|
|
6
5
|
|
|
7
6
|
This is the mutt configs generator which gets the accounts settigns from yaml file. See [Mayaml][mayaml_url]
|
|
8
7
|
The mutt configuration is designed to handle many accounts and one inbox. (example implementation: [DockerMutt][docker_mutt_url])
|
|
@@ -23,9 +22,9 @@ Or install it yourself as:
|
|
|
23
22
|
|
|
24
23
|
## Usage
|
|
25
24
|
|
|
26
|
-
If ruby bin dir is in your PATH, just call `mayaml-mutt-init <path_to_the_yaml_file> [<destination_config_file>]`
|
|
25
|
+
If ruby bin dir is in your PATH, just call `mayaml-mutt-init <path_to_the_yaml_file> [<destination_config_file>]`
|
|
27
26
|
to list generated configs or store them in `destination_config_file`.
|
|
28
|
-
Or `mayaml-mutt-creds <path_to_the_yaml_file> [<dir_for_storing_configs>]`
|
|
27
|
+
Or `mayaml-mutt-creds <path_to_the_yaml_file> [<dir_for_storing_configs>]`
|
|
29
28
|
to list generated configs or store them in `dir_for_storing_configs`.
|
|
30
29
|
|
|
31
30
|
## Versioning
|
data/bin/mayaml-mutt-creds
CHANGED
data/bin/mayaml-mutt-init
CHANGED
data/lib/mayaml-mutt.rb
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
-
# Copyright (C) 2016, 2017 Szymon Kopciewski
|
|
3
|
+
# Copyright (C) 2016, 2017, 2018 Szymon Kopciewski
|
|
4
4
|
#
|
|
5
5
|
# This file is part of MayamlMutt.
|
|
6
6
|
#
|
|
@@ -39,7 +39,7 @@ module MayamlMutt
|
|
|
39
39
|
private
|
|
40
40
|
|
|
41
41
|
def template_file_path
|
|
42
|
-
File.join(Gem.
|
|
42
|
+
File.join(Gem.latest_spec_for("mayaml-mutt").datadir, "account_creds.mustache")
|
|
43
43
|
end
|
|
44
44
|
end
|
|
45
45
|
end
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
-
# Copyright (C) 2016, 2017 Szymon Kopciewski
|
|
3
|
+
# Copyright (C) 2016, 2017, 2018 Szymon Kopciewski
|
|
4
4
|
#
|
|
5
5
|
# This file is part of MayamlMutt.
|
|
6
6
|
#
|
|
@@ -33,7 +33,7 @@ module MayamlMutt
|
|
|
33
33
|
private
|
|
34
34
|
|
|
35
35
|
def template_file_path
|
|
36
|
-
File.join(Gem.
|
|
36
|
+
File.join(Gem.latest_spec_for("mayaml-mutt").datadir, "account_init.mustache")
|
|
37
37
|
end
|
|
38
38
|
|
|
39
39
|
def clean_name(string)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
-
# Copyright (C) 2016, 2017 Szymon Kopciewski
|
|
3
|
+
# Copyright (C) 2016, 2017, 2018 Szymon Kopciewski
|
|
4
4
|
#
|
|
5
5
|
# This file is part of MayamlMutt.
|
|
6
6
|
#
|
|
@@ -32,7 +32,7 @@ module MayamlMutt
|
|
|
32
32
|
private
|
|
33
33
|
|
|
34
34
|
def template_file_path
|
|
35
|
-
File.join(Gem.
|
|
35
|
+
File.join(Gem.latest_spec_for("mayaml-mutt").datadir, "accounts_alternates.mustache")
|
|
36
36
|
end
|
|
37
37
|
end
|
|
38
38
|
end
|
data/lib/mayaml-mutt/version.rb
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
-
# Copyright (C) 2016, 2017 Szymon Kopciewski
|
|
3
|
+
# Copyright (C) 2016, 2017, 2018 Szymon Kopciewski
|
|
4
4
|
#
|
|
5
5
|
# This file is part of MayamlMutt.
|
|
6
6
|
#
|
|
@@ -18,5 +18,5 @@
|
|
|
18
18
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
19
19
|
|
|
20
20
|
module MayamlMutt
|
|
21
|
-
VERSION = "4.0.
|
|
21
|
+
VERSION = "4.0.2"
|
|
22
22
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: mayaml-mutt
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 4.0.
|
|
4
|
+
version: 4.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Szymon Kopciewski
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2018-07-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: mayaml
|
|
@@ -39,7 +39,7 @@ dependencies:
|
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
40
|
version: '1.0'
|
|
41
41
|
- !ruby/object:Gem::Dependency
|
|
42
|
-
name:
|
|
42
|
+
name: codeclimate-test-reporter
|
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
|
44
44
|
requirements:
|
|
45
45
|
- - ">="
|
|
@@ -53,7 +53,7 @@ dependencies:
|
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
54
|
version: '0'
|
|
55
55
|
- !ruby/object:Gem::Dependency
|
|
56
|
-
name:
|
|
56
|
+
name: minitest
|
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
|
58
58
|
requirements:
|
|
59
59
|
- - ">="
|
|
@@ -67,7 +67,7 @@ dependencies:
|
|
|
67
67
|
- !ruby/object:Gem::Version
|
|
68
68
|
version: '0'
|
|
69
69
|
- !ruby/object:Gem::Dependency
|
|
70
|
-
name: minitest
|
|
70
|
+
name: minitest-reporters
|
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|
|
72
72
|
requirements:
|
|
73
73
|
- - ">="
|
|
@@ -81,7 +81,7 @@ dependencies:
|
|
|
81
81
|
- !ruby/object:Gem::Version
|
|
82
82
|
version: '0'
|
|
83
83
|
- !ruby/object:Gem::Dependency
|
|
84
|
-
name:
|
|
84
|
+
name: pry
|
|
85
85
|
requirement: !ruby/object:Gem::Requirement
|
|
86
86
|
requirements:
|
|
87
87
|
- - ">="
|
|
@@ -95,7 +95,7 @@ dependencies:
|
|
|
95
95
|
- !ruby/object:Gem::Version
|
|
96
96
|
version: '0'
|
|
97
97
|
- !ruby/object:Gem::Dependency
|
|
98
|
-
name:
|
|
98
|
+
name: rake
|
|
99
99
|
requirement: !ruby/object:Gem::Requirement
|
|
100
100
|
requirements:
|
|
101
101
|
- - ">="
|
|
@@ -109,7 +109,7 @@ dependencies:
|
|
|
109
109
|
- !ruby/object:Gem::Version
|
|
110
110
|
version: '0'
|
|
111
111
|
- !ruby/object:Gem::Dependency
|
|
112
|
-
name:
|
|
112
|
+
name: simplecov
|
|
113
113
|
requirement: !ruby/object:Gem::Requirement
|
|
114
114
|
requirements:
|
|
115
115
|
- - ">="
|
|
@@ -166,7 +166,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
166
166
|
version: '0'
|
|
167
167
|
requirements: []
|
|
168
168
|
rubyforge_project:
|
|
169
|
-
rubygems_version: 2.
|
|
169
|
+
rubygems_version: 2.7.7
|
|
170
170
|
signing_key:
|
|
171
171
|
specification_version: 4
|
|
172
172
|
summary: Generates mutt configuration from mayaml parser
|