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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8328a23e2517d2e33bf69df48c35636113dfbdec
4
- data.tar.gz: 73dd49fe4f9f74432cf7ac4f4f9f060aeaa55873
3
+ metadata.gz: a694f15e96c99e3ac0752207bace818f7c0ac3ae
4
+ data.tar.gz: e7e48c5e7be28c09cafb79cf1b239123673ff269
5
5
  SHA512:
6
- metadata.gz: 3c203462f7b507b40b5935005d66143c6561c6584242d0adc8e3bb0fdcf9ba324e7b2a224f0a38556dee2929758b1a2be982909a8641dfe62954ef1b5c0ef54f
7
- data.tar.gz: 2cce95cc9a8a250275db194cd86322fe2a84b0f82b29469d296daf11ec2fba607bc9f36c0d55e2c398beb2ded87f8f7e0a0b52cc724b887788fca5c72fa28392
6
+ metadata.gz: c20aa14f08b43eb78edd03a558ff845d5ad1b6210504711e45d91cabb8461b3e6a794fdbf84d79b4876a3dfb0b58325d55001bee88f1b620601c5c16ca26b26e
7
+ data.tar.gz: 4c2a57c69511ab014d5b0e57668bed0c557d380740c2b227044d76ec0a06279888c48adf2c76fa3bad2ec0df441a22eefda02529899bbc2599b64a5e903a042f
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ === 1.0.1 (2016.06.24)
2
+
3
+ * fix typos in docs
4
+
1
5
  === 1.0.0 (2016.06.24)
2
6
 
3
7
  * publication of the code
data/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  [![Gem Version](https://badge.fury.io/rb/mayaml.svg)](http://badge.fury.io/rb/mayaml)
4
4
 
5
- This is a base package for mail accounts configuration generators. The ideas is to store mail accounts configuration in one Yaml file and then generates dedicated configs for specific programs (like getmail, mutt, etc...).
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
 
@@ -18,5 +18,5 @@
18
18
  # along with this program. If not, see <http://www.gnu.org/licenses/>.
19
19
 
20
20
  module Mayaml
21
- VERSION = "1.0.0".freeze
21
+ VERSION = "1.0.1".freeze
22
22
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mayaml
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Szymon Kopciewski