caretaker 0.7.0 → 0.8.0

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
  SHA256:
3
- metadata.gz: 7e7b910dc66d4f3480551c91c0991bdbe9ea754122ce454e8bf7cc4bf53af4ef
4
- data.tar.gz: bdef9ee1f753e659af31512871f98828378a8706d1c9a7f797cbea06b335dc50
3
+ metadata.gz: 8616351a1037043537769ea4bce8fb8c0488e801b978d180ce08664be2abd82d
4
+ data.tar.gz: 28ba5a45a167cb04ed26d7609601e206c7e494f2a0fa4426faea7f2b40cc5675
5
5
  SHA512:
6
- metadata.gz: c329f60cde3330cdef0b9320b375ca383b3776c0a9df94212a60f4add196016184d55bae52332d13c6544fabd313784b3c4b61a7fc03cb108cbb8a4e8a7a767f
7
- data.tar.gz: c574f96da28bd0e1565d1cfc1575dfe2e110cdca2df4da597b557297793c548e4cbe610e56cd3cb208cefff05c1f246cbcbf57b438f8a734596129a87ec03791
6
+ metadata.gz: 612476cb1b2edf7537681a1951493ad1f44e0c90b278e92735672ee2cd1ef93e2dbd126aa775a4ef8bbd197ab09cc64e357ceb902b48ea0e2c05d20e21528bc5
7
+ data.tar.gz: cd6060a430808aedf702722f4083c6ee502f707d72ab46c0929c774908f967a9ca2a6efa6f2b85991611507d170a837f3edb5fbb794be232acfa72b4e442bdd5
data/.rubocop.yml CHANGED
@@ -1,3 +1,6 @@
1
+ AllCops:
2
+ TargetRubyVersion: 2.5
3
+
1
4
  Layout/CaseIndentation:
2
5
  Enabled: false
3
6
 
data/.travis.yml CHANGED
@@ -1,29 +1,24 @@
1
1
  matrix:
2
2
  include:
3
3
  - language: ruby
4
- name: "Bundler (rvm 2.4 & bundler 1.17.3)"
5
- rvm: 2.4
6
- before_install:
7
- - gem install bundler -v 1.17.3
8
- - language: ruby
9
- name: "Bundler (rvm 2.4 & bundler 2.0.1)"
10
- rvm: 2.4
11
- before_install:
12
- - gem install bundler -v 2.0.1
13
- - language: ruby
14
- name: "Bundler (rvm 2.5 & bundler 2.0.1)"
4
+ name: "Bundler (rvm 2.5 & bundler latest)"
15
5
  rvm: 2.5
16
6
  before_install:
17
- - gem install bundler -v 2.0.1
7
+ - gem install bundler
18
8
  - language: ruby
19
- name: "Bundler (rvm 2.6 & bundler 2.0.1)"
9
+ name: "Bundler (rvm 2.6 & bundler latest)"
20
10
  rvm: 2.6
21
11
  before_install:
22
- - gem install bundler -v 2.0.1
12
+ - gem install bundler
23
13
  - language: ruby
24
- name: "Rubocop (rvm 2.4)"
14
+ name: "Bundler (rvm 2.7 & bundler latest)"
15
+ rvm: 2.7
16
+ before_install:
17
+ - gem install bundler
18
+ - language: ruby
19
+ name: "Rubocop (rvm 2.5)"
25
20
  env: SKIP_INTERPRETER=true
26
- rvm: 2.4
21
+ rvm: 2.5
27
22
  before_install:
28
23
  - git clone https://github.com/TravisToolbox/rubocop-travis.git
29
24
  install:
@@ -31,9 +26,9 @@ matrix:
31
26
  script:
32
27
  - ./rubocop-travis/scan.sh
33
28
  - language: ruby
34
- name: "Rubocop (rvm 2.5)"
29
+ name: "Rubocop (rvm 2.6)"
35
30
  env: SKIP_INTERPRETER=true
36
- rvm: 2.5
31
+ rvm: 2.6
37
32
  before_install:
38
33
  - git clone https://github.com/TravisToolbox/rubocop-travis.git
39
34
  install:
@@ -41,9 +36,9 @@ matrix:
41
36
  script:
42
37
  - ./rubocop-travis/scan.sh
43
38
  - language: ruby
44
- name: "Rubocop (rvm 2.6)"
39
+ name: "Rubocop (rvm 2.7)"
45
40
  env: SKIP_INTERPRETER=true
46
- rvm: 2.6
41
+ rvm: 2.7
47
42
  before_install:
48
43
  - git clone https://github.com/TravisToolbox/rubocop-travis.git
49
44
  install:
@@ -51,10 +46,11 @@ matrix:
51
46
  script:
52
47
  - ./rubocop-travis/scan.sh
53
48
  - language: ruby
54
- name: Link Checking (rvm 2.6)
55
- rvm: 2.6
49
+ name: Link Checking (rvm 2.7)
50
+ rvm: 2.7
56
51
  env:
57
- - WHITELIST="https://github.com/WolfSoftware/caretaker,https://img.shields.io"
52
+ - WHITELIST="https://img.shields.io,https://github.com/WolfSoftware/caretaker/compare/,https://github.com/WolfSoftware/caretaker/commit/,https://github.com/WolfSoftware/caretaker/issues/"
53
+ - EXCLUDE_FILES="CHANGELOG.md"
58
54
  before_install:
59
55
  - mkdir travis
60
56
  - git clone https://github.com/TravisToolbox/awesomebot-travis.git travis/awesomebot
data/CHANGELOG.md CHANGED
@@ -5,11 +5,21 @@ All notable changes to this project will be documented in this file.
5
5
 
6
6
  This changelog was automatically generated using [Caretaker](https://github.com/WolfSoftware/caretaker) by [Wolf Software](https://github.com/WolfSoftware)
7
7
 
8
+ ### [v0.8.0](https://github.com/WolfSoftware/caretaker/compare/v0.7.0...v0.8.0)
9
+
10
+ > Released on March, 9th 2020
11
+
12
+ - Fix link checking whitelist [`[75d98d2]`](https://github.com/WolfSoftware/caretaker/commit/75d98d2413692ccabd88749b09707db8d7c79cb5) [`[TGWolf]`](https://github.com/TGWolf)
13
+
14
+ - Remove ruby 2.4 support and add 2.7 [`[6bd8c16]`](https://github.com/WolfSoftware/caretaker/commit/6bd8c1635d4953ed2ac472e8fc9ba6efcdd90f9f) [`[TGWolf]`](https://github.com/TGWolf)
15
+
16
+ - Fix rubocop issues around pinned ruby version [`[43e3155]`](https://github.com/WolfSoftware/caretaker/commit/43e3155c16d4db4a20803f449153bf726b911baa) [`[TGWolf]`](https://github.com/TGWolf)
17
+
8
18
  ### [v0.7.0](https://github.com/WolfSoftware/caretaker/compare/v0.5.0...v0.7.0)
9
19
 
10
20
  > Released on March, 9th 2020
11
21
 
12
- - Fix a security issue with the new git@ code - yanked insecure version [`[4fcea78]`](https://github.com/WolfSoftware/caretaker/commit/4fcea788333b1ee9404c258e51c12f53f2c0a585) [`[TGWolf]`](https://github.com/TGWolf)
22
+ - Fix a security issue with the new git@ code - yanked insecure version [`[48cc7b3]`](https://github.com/WolfSoftware/caretaker/commit/48cc7b3423a67c449074f7413fbbca18ccf1ccae) [`[TGWolf]`](https://github.com/TGWolf)
13
23
 
14
24
  - Fixed a security warning in rake version and make caretaker work with git@ urls as well as https [`[48e7584]`](https://github.com/WolfSoftware/caretaker/commit/48e7584cb9e4f33922a278fb0d688202a5f08f35) [`[TGWolf]`](https://github.com/TGWolf)
15
25
 
data/Gemfile CHANGED
@@ -1,4 +1,5 @@
1
1
  source 'https://rubygems.org'
2
+ ruby '>= 2.5.0'
2
3
 
3
4
  git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
4
5
 
data/VERSION.txt CHANGED
@@ -1 +1 @@
1
- 0.7.0
1
+ 0.8.0
data/caretaker.gemspec CHANGED
@@ -19,7 +19,9 @@ Gem::Specification.new do |spec|
19
19
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
20
20
  spec.require_paths = ['lib']
21
21
 
22
- spec.add_development_dependency 'bundler', '>= 1.17', '< 3.0'
22
+ spec.required_ruby_version = '>= 2.5'
23
+
24
+ spec.add_development_dependency 'bundler', '~> 2'
23
25
  spec.add_development_dependency 'date', '~> 2.0.0'
24
26
  spec.add_development_dependency 'rake', '~> 12.3.3'
25
27
  spec.add_development_dependency 'rspec', '~> 3.0'
@@ -1,3 +1,3 @@
1
1
  class Caretaker
2
- VERSION = '0.7.0'.freeze
2
+ VERSION = '0.8.0'.freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: caretaker
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 0.8.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tim Gurney aka Wolf
@@ -14,22 +14,16 @@ dependencies:
14
14
  name: bundler
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - ">="
18
- - !ruby/object:Gem::Version
19
- version: '1.17'
20
- - - "<"
17
+ - - "~>"
21
18
  - !ruby/object:Gem::Version
22
- version: '3.0'
19
+ version: '2'
23
20
  type: :development
24
21
  prerelease: false
25
22
  version_requirements: !ruby/object:Gem::Requirement
26
23
  requirements:
27
- - - ">="
28
- - !ruby/object:Gem::Version
29
- version: '1.17'
30
- - - "<"
24
+ - - "~>"
31
25
  - !ruby/object:Gem::Version
32
- version: '3.0'
26
+ version: '2'
33
27
  - !ruby/object:Gem::Dependency
34
28
  name: date
35
29
  requirement: !ruby/object:Gem::Requirement
@@ -184,7 +178,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
184
178
  requirements:
185
179
  - - ">="
186
180
  - !ruby/object:Gem::Version
187
- version: '0'
181
+ version: '2.5'
188
182
  required_rubygems_version: !ruby/object:Gem::Requirement
189
183
  requirements:
190
184
  - - ">="