mayaml-getmail 4.0.2 → 4.0.3

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
- SHA1:
3
- metadata.gz: 2b88b7178380a5a3c23a86a47beef0edba3a6692
4
- data.tar.gz: 964ccd968bfbd1f3d1d7c44f00066471833ab61d
2
+ SHA256:
3
+ metadata.gz: 2df36a9e3adac436f3f8a6461a05d0df44fced5c6e767cdf8bee92160e509bf6
4
+ data.tar.gz: 183be17f3e8e1953bf5a6246a60dbff9ac8f074c86e49e41012387ebacc6920b
5
5
  SHA512:
6
- metadata.gz: 23e9c19473c4b8511157ef803d89e1d9ab54cd92d02ae35ebdce942135eec4c7804bcff1d61f7d73aa34cd5c9ba06ad988c32ce2cd47bbc16288c1b5913199aa
7
- data.tar.gz: a94a344622b8178b2191c9754101e4bc4ce86ff19ff1f55947964213250ab9e6f3a686095f16309a5736ada1664b30657f1b06540c0bf7c19ea5c640e4a3c791
6
+ metadata.gz: 04ec553a019c38b2ca3c450525e9267052262c3802632d36d2a83f536651015497c27e9638a7e759de0a250ff412bbfa206b657fbe8dc218b0b94d9a48a427a9
7
+ data.tar.gz: 69845ed09176d4c618d97e772a81e7de7b07135a86fcd892511991e33d52e3807c76b2520ecb0a26278cad8e5ef4521e9e9c2176180d2c83ec90c05376e7bb36
@@ -1,3 +1,8 @@
1
+ ### 4.0.3 (2018.07.07)
2
+
3
+ * fix warnings, travis, docs
4
+ * update license
5
+
1
6
  ### 4.0.2 (2017.04.06)
2
7
 
3
8
  * add missing data dir to gemspec
data/Gemfile CHANGED
@@ -1,4 +1,5 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  source "https://rubygems.org"
3
4
 
4
5
  # Specify your gem's dependencies in mayaml.gemspec
data/README.md CHANGED
@@ -2,7 +2,6 @@
2
2
 
3
3
  [![Gem Version](https://badge.fury.io/rb/mayaml-getmail.svg)](http://badge.fury.io/rb/mayaml-getmail)
4
4
  [![Code Climate](https://codeclimate.com/github/skopciewski/mayaml-getmail/badges/gpa.svg)](https://codeclimate.com/github/skopciewski/mayaml-getmail)
5
- [![Dependency Status](https://gemnasium.com/badges/github.com/skopciewski/mayaml-getmail.svg)](https://gemnasium.com/github.com/skopciewski/mayaml-getmail)
6
5
 
7
6
  This is the getmail configs generator which gets the accounts settigns from yaml file. See [Mayaml][mayaml_url]
8
7
 
@@ -22,7 +21,7 @@ Or install it yourself as:
22
21
 
23
22
  ## Usage
24
23
 
25
- If ruby bin dir is in your PATH, just call `mayaml-getmail <path_to_the_yaml_file> [<dir_for_storing_configs>]`
24
+ If ruby bin dir is in your PATH, just call `mayaml-getmail <path_to_the_yaml_file> [<dir_for_storing_configs>]`
26
25
  to list generated configs or store them in `<dir_for_storing_configs>`.
27
26
 
28
27
  The result may looks like:
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env ruby
2
2
  # frozen_string_literal: true
3
3
 
4
- # Copyright (C) 2016, 2017 Szymon Kopciewski
4
+ # Copyright (C) 2016, 2017, 2018 Szymon Kopciewski
5
5
  #
6
6
  # This file is part of MayamlGetmail.
7
7
  #
@@ -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 MayamlGetmail.
6
6
  #
@@ -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 MayamlGetmail.
6
6
  #
@@ -39,7 +39,7 @@ module MayamlGetmail
39
39
  private
40
40
 
41
41
  def template_file_path
42
- File.join(Gem.datadir("mayaml-getmail"), "account_config.mustache")
42
+ File.join(Gem.latest_spec_for("mayaml-getmail").datadir, "account_config.mustache")
43
43
  end
44
44
 
45
45
  def type(mail_account)
@@ -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 MayamlGetmail.
6
6
  #
@@ -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 MayamlGetmail.
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 MayamlGetmail
21
- VERSION = "4.0.2"
21
+ VERSION = "4.0.3"
22
22
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mayaml-getmail
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.0.2
4
+ version: 4.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Szymon Kopciewski
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-04-06 00:00:00.000000000 Z
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: rake
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: pry
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: minitest-reporters
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: simplecov
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: codeclimate-test-reporter
112
+ name: simplecov
113
113
  requirement: !ruby/object:Gem::Requirement
114
114
  requirements:
115
115
  - - ">="
@@ -160,7 +160,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
160
160
  version: '0'
161
161
  requirements: []
162
162
  rubyforge_project:
163
- rubygems_version: 2.4.8
163
+ rubygems_version: 2.7.7
164
164
  signing_key:
165
165
  specification_version: 4
166
166
  summary: Generates getmail configuration from mayaml parser