maintainers 0.1.0 → 0.1.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 +4 -4
- data/.gitignore +0 -1
- data/CHANGELOG +7 -1
- data/MAINTAINERS +11 -0
- data/lib/maintainers/runner.rb +1 -1
- data/lib/maintainers/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 91e6cb7f5a46b4ea3d9d95ea58487c95795a559d
|
|
4
|
+
data.tar.gz: b51d1b2e2dd3755a9e593abb2a2158d54f2af18b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: aa445a435dc2ed67ed14d975b0103239a3da49b8406fe1ccb6b06dcd32a7d5b6a12fb33372e4831031fcb106bddb12e9e4730852aad13c953826529b60dc0670
|
|
7
|
+
data.tar.gz: 6aa5b63d1413325a175810c99b7988c9189ddfe916bc77fe69b622b64c4d5c6856f2402926f37f53a59fce8a682f7f22115e97adb2fa053816c042ee018502af
|
data/.gitignore
CHANGED
data/CHANGELOG
CHANGED
|
@@ -6,8 +6,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [0.1.1] - 2016-09-01
|
|
10
|
+
### Fixed
|
|
11
|
+
- Fixed case of schema file reference so 'maintainers' works as a gem
|
|
12
|
+
- Added a MAINTAINERS file
|
|
13
|
+
|
|
9
14
|
## 0.1.0 - 2016-09-01
|
|
10
15
|
### Added
|
|
11
16
|
- Initial support for a json format for MAINTAINERS
|
|
12
17
|
|
|
13
|
-
[Unreleased]: https://github.com/puppetlabs/maintainers/compare/
|
|
18
|
+
[Unreleased]: https://github.com/puppetlabs/maintainers/compare/0.1.1...HEAD
|
|
19
|
+
[0.1.1]: https://github.com/puppetlabs/maintainers/compare/0.1.0...0.1.1
|
data/MAINTAINERS
ADDED
data/lib/maintainers/runner.rb
CHANGED
|
@@ -28,7 +28,7 @@ module Maintainers
|
|
|
28
28
|
end
|
|
29
29
|
|
|
30
30
|
def validate(maintainers)
|
|
31
|
-
maintainers_schema = JSON.parse(File.read('schema/
|
|
31
|
+
maintainers_schema = JSON.parse(File.read('schema/MAINTAINERS.json'))
|
|
32
32
|
|
|
33
33
|
JSON::Validator.validate(maintainers_schema, maintainers)
|
|
34
34
|
end
|
data/lib/maintainers/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: maintainers
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Puppet, Inc
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-09-
|
|
11
|
+
date: 2016-09-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -94,6 +94,7 @@ files:
|
|
|
94
94
|
- CODE_OF_CONDUCT.md
|
|
95
95
|
- Gemfile
|
|
96
96
|
- LICENSE
|
|
97
|
+
- MAINTAINERS
|
|
97
98
|
- MAINTAINERS-example
|
|
98
99
|
- MAINTAINERS-unmaintained_example
|
|
99
100
|
- README.md
|