mayaml 1.0.0 → 1.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/README.md +2 -2
- data/lib/mayaml/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a694f15e96c99e3ac0752207bace818f7c0ac3ae
|
|
4
|
+
data.tar.gz: e7e48c5e7be28c09cafb79cf1b239123673ff269
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c20aa14f08b43eb78edd03a558ff845d5ad1b6210504711e45d91cabb8461b3e6a794fdbf84d79b4876a3dfb0b58325d55001bee88f1b620601c5c16ca26b26e
|
|
7
|
+
data.tar.gz: 4c2a57c69511ab014d5b0e57668bed0c557d380740c2b227044d76ec0a06279888c48adf2c76fa3bad2ec0df441a22eefda02529899bbc2599b64a5e903a042f
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[](http://badge.fury.io/rb/mayaml)
|
|
4
4
|
|
|
5
|
-
This is a base package for mail accounts configuration generators. The
|
|
5
|
+
This is a base package for mail accounts configuration generators. The idea is to store mail accounts configuration in one Yaml file and then generates dedicated configs for specific programs (like getmail, mutt, etc...).
|
|
6
6
|
|
|
7
7
|
## Installation
|
|
8
8
|
|
|
@@ -38,7 +38,7 @@ Mayaml.accounts_from_file(yaml_path).each { |account| ... }
|
|
|
38
38
|
port: 998
|
|
39
39
|
user: user@mailserver.com
|
|
40
40
|
pass: sercet_password
|
|
41
|
-
mailboxes
|
|
41
|
+
mailboxes:
|
|
42
42
|
- INBOX
|
|
43
43
|
```
|
|
44
44
|
|
data/lib/mayaml/version.rb
CHANGED