mayaml 3.0.0 → 3.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0fc2e662cee19930ae8a3802e1d42874f3ce5925
4
- data.tar.gz: b7b2c54f4d44cc32270749c0d758ad47fba6fa45
3
+ metadata.gz: e9874c9e37bfc49de675f95dfc81d13b97e54f4d
4
+ data.tar.gz: a476d041cbf9d53b1d839a02a88a57bb67a561ec
5
5
  SHA512:
6
- metadata.gz: 79419e0e20c57900f1e9f62bd66de0af817d9d541ee15f40de0dafe4db1cdab090cb6821a2b18c98527ba3329f068b9985a7399a4fa85949bcc14c8f0d848126
7
- data.tar.gz: d6fd36d5ac090d1f691cecc077cf1eee437a25d9e1277f06af12f36cf91341ac47a9d2b0dc16730edfb1df88fe1b16c4ea1862ae3c8e04d2007b9ef7bafa8ed4
6
+ metadata.gz: 55e738f33f89bde34d756cfeb4f77a8771e29ab6d59c6eab69c58ac19de0078994862f39f8e6c83c5bd20b8c05de4b4d946669e2a6ccf07b98ebdbed8a28d2cd
7
+ data.tar.gz: 608733f46b565b35b775e97b31d340d56317f3f349b3bdc2cc87a83ccbe5ee8573bcf3f0c990f1c37586fc14d5a702a4ff74a4cca3f8af231f3f12f89d0bb031
data/CHANGELOG.md CHANGED
@@ -1,30 +1,35 @@
1
- === 3.0.0 (2016.09.07)
1
+ ### 3.0.1 (2017.04.06)
2
+
3
+ * fix travis integration
4
+ * cleanup
5
+
6
+ ### 3.0.0 (2016.09.07)
2
7
 
3
8
  * add new required arrtibutes: `smtp_protocol`, `smtp_port` and `smtp_authenticator`
4
9
  * 4 valid account types: `imap`, `pop3`, `imapssl`, `pop3ssl`
5
10
 
6
- === 2.0.1 (2016.08.31)
11
+ ### 2.0.1 (2016.08.31)
7
12
 
8
13
  * update tests
9
14
 
10
- === 2.0.0 (2016.08.31)
15
+ ### 2.0.0 (2016.08.31)
11
16
 
12
17
  * add new attributes to the mail_account format: `default` and `realname`
13
18
  * now only `mailboxes` and `default` attributes are optional
14
19
  * add travis integration
15
20
 
16
- === 1.0.3 (2016.06.24)
21
+ ### 1.0.3 (2016.06.24)
17
22
 
18
23
  * fix bin script
19
24
 
20
- === 1.0.2 (2016.06.24)
25
+ ### 1.0.2 (2016.06.24)
21
26
 
22
27
  * fix bin path in gemspec
23
28
 
24
- === 1.0.1 (2016.06.24)
29
+ ### 1.0.1 (2016.06.24)
25
30
 
26
31
  * fix typos in docs
27
32
 
28
- === 1.0.0 (2016.06.24)
33
+ ### 1.0.0 (2016.06.24)
29
34
 
30
35
  * publication of the code
data/Gemfile CHANGED
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  source "https://rubygems.org"
2
3
 
3
4
  # Specify your gem's dependencies in mayaml.gemspec
data/README.md CHANGED
@@ -2,6 +2,7 @@
2
2
 
3
3
  [![Gem Version](https://badge.fury.io/rb/mayaml.svg)](http://badge.fury.io/rb/mayaml)
4
4
  [![Code Climate](https://codeclimate.com/github/skopciewski/mayaml/badges/gpa.svg)](https://codeclimate.com/github/skopciewski/mayaml)
5
+ [![Dependency Status](https://gemnasium.com/badges/github.com/skopciewski/mayaml.svg)](https://gemnasium.com/github.com/skopciewski/mayaml)
5
6
 
6
7
  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...).
7
8
 
data/bin/mayaml-check CHANGED
@@ -1,4 +1,5 @@
1
1
  #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
2
3
 
3
4
  # Copyright (C) 2016 Szymon Kopciewski
4
5
  #
data/lib/mayaml.rb CHANGED
@@ -1,4 +1,5 @@
1
1
  # encoding: utf-8
2
+ # frozen_string_literal: true
2
3
 
3
4
  # Copyright (C) 2016 Szymon Kopciewski
4
5
  #
data/lib/mayaml/error.rb CHANGED
@@ -1,4 +1,5 @@
1
1
  # encoding: utf-8
2
+ # frozen_string_literal: true
2
3
 
3
4
  # Copyright (C) 2016 Szymon Kopciewski
4
5
  #
@@ -1,4 +1,5 @@
1
1
  # encoding: utf-8
2
+ # frozen_string_literal: true
2
3
 
3
4
  # Copyright (C) 2016 Szymon Kopciewski
4
5
  #
@@ -1,4 +1,5 @@
1
1
  # encoding: utf-8
2
+ # frozen_string_literal: true
2
3
 
3
4
  # Copyright (C) 2016 Szymon Kopciewski
4
5
  #
@@ -1,4 +1,5 @@
1
1
  # encoding: utf-8
2
+ # frozen_string_literal: true
2
3
 
3
4
  # Copyright (C) 2016 Szymon Kopciewski
4
5
  #
@@ -1,4 +1,5 @@
1
1
  # encoding: utf-8
2
+ # frozen_string_literal: true
2
3
 
3
4
  # Copyright (C) 2016 Szymon Kopciewski
4
5
  #
@@ -1,4 +1,5 @@
1
1
  # encoding: utf-8
2
+ # frozen_string_literal: true
2
3
 
3
4
  # Copyright (C) 2016 Szymon Kopciewski
4
5
  #
@@ -1,4 +1,5 @@
1
1
  # encoding: utf-8
2
+ # frozen_string_literal: true
2
3
 
3
4
  # Copyright (C) 2016 Szymon Kopciewski
4
5
  #
@@ -1,4 +1,5 @@
1
1
  # encoding: utf-8
2
+ # frozen_string_literal: true
2
3
 
3
4
  # Copyright (C) 2016 Szymon Kopciewski
4
5
  #
@@ -1,4 +1,5 @@
1
1
  # encoding: utf-8
2
+ # frozen_string_literal: true
2
3
 
3
4
  # Copyright (C) 2016 Szymon Kopciewski
4
5
  #
@@ -1,4 +1,5 @@
1
1
  # encoding: utf-8
2
+ # frozen_string_literal: true
2
3
 
3
4
  # Copyright (C) 2016 Szymon Kopciewski
4
5
  #
data/lib/mayaml/parser.rb CHANGED
@@ -1,4 +1,5 @@
1
1
  # encoding: utf-8
2
+ # frozen_string_literal: true
2
3
 
3
4
  # Copyright (C) 2016 Szymon Kopciewski
4
5
  #
@@ -1,4 +1,5 @@
1
1
  # encoding: utf-8
2
+ # frozen_string_literal: true
2
3
 
3
4
  # Copyright (C) 2016 Szymon Kopciewski
4
5
  #
@@ -18,5 +19,5 @@
18
19
  # along with this program. If not, see <http://www.gnu.org/licenses/>.
19
20
 
20
21
  module Mayaml
21
- VERSION = "3.0.0".freeze
22
+ VERSION = "3.0.1"
22
23
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mayaml
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.0
4
+ version: 3.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Szymon Kopciewski
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-09-07 00:00:00.000000000 Z
11
+ date: 2017-04-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake
@@ -66,6 +66,20 @@ dependencies:
66
66
  - - ">="
67
67
  - !ruby/object:Gem::Version
68
68
  version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: simplecov
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
69
83
  - !ruby/object:Gem::Dependency
70
84
  name: codeclimate-test-reporter
71
85
  requirement: !ruby/object:Gem::Requirement