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 +4 -4
- data/.rubocop.yml +3 -0
- data/.travis.yml +19 -23
- data/CHANGELOG.md +11 -1
- data/Gemfile +1 -0
- data/VERSION.txt +1 -1
- data/caretaker.gemspec +3 -1
- data/lib/caretaker/version.rb +1 -1
- metadata +6 -12
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8616351a1037043537769ea4bce8fb8c0488e801b978d180ce08664be2abd82d
|
|
4
|
+
data.tar.gz: 28ba5a45a167cb04ed26d7609601e206c7e494f2a0fa4426faea7f2b40cc5675
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 612476cb1b2edf7537681a1951493ad1f44e0c90b278e92735672ee2cd1ef93e2dbd126aa775a4ef8bbd197ab09cc64e357ceb902b48ea0e2c05d20e21528bc5
|
|
7
|
+
data.tar.gz: cd6060a430808aedf702722f4083c6ee502f707d72ab46c0929c774908f967a9ca2a6efa6f2b85991611507d170a837f3edb5fbb794be232acfa72b4e442bdd5
|
data/.rubocop.yml
CHANGED
data/.travis.yml
CHANGED
|
@@ -1,29 +1,24 @@
|
|
|
1
1
|
matrix:
|
|
2
2
|
include:
|
|
3
3
|
- language: ruby
|
|
4
|
-
name: "Bundler (rvm 2.
|
|
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
|
|
7
|
+
- gem install bundler
|
|
18
8
|
- language: ruby
|
|
19
|
-
name: "Bundler (rvm 2.6 & bundler
|
|
9
|
+
name: "Bundler (rvm 2.6 & bundler latest)"
|
|
20
10
|
rvm: 2.6
|
|
21
11
|
before_install:
|
|
22
|
-
- gem install bundler
|
|
12
|
+
- gem install bundler
|
|
23
13
|
- language: ruby
|
|
24
|
-
name: "
|
|
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.
|
|
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.
|
|
29
|
+
name: "Rubocop (rvm 2.6)"
|
|
35
30
|
env: SKIP_INTERPRETER=true
|
|
36
|
-
rvm: 2.
|
|
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.
|
|
39
|
+
name: "Rubocop (rvm 2.7)"
|
|
45
40
|
env: SKIP_INTERPRETER=true
|
|
46
|
-
rvm: 2.
|
|
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.
|
|
55
|
-
rvm: 2.
|
|
49
|
+
name: Link Checking (rvm 2.7)
|
|
50
|
+
rvm: 2.7
|
|
56
51
|
env:
|
|
57
|
-
- WHITELIST="https://github.com/WolfSoftware/caretaker
|
|
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 [`[
|
|
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
data/VERSION.txt
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
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.
|
|
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'
|
data/lib/caretaker/version.rb
CHANGED
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.
|
|
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: '
|
|
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: '
|
|
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: '
|
|
181
|
+
version: '2.5'
|
|
188
182
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
189
183
|
requirements:
|
|
190
184
|
- - ">="
|