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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 00b5563bf03da3f38572a1d7fab70e85428be527
4
- data.tar.gz: ac2790a0e8c9f490f37e93aac6d4d92c86610eb6
3
+ metadata.gz: 91e6cb7f5a46b4ea3d9d95ea58487c95795a559d
4
+ data.tar.gz: b51d1b2e2dd3755a9e593abb2a2158d54f2af18b
5
5
  SHA512:
6
- metadata.gz: 8512cc947830ee68b07dbe1e4e0568dd9d4b03ff1c8fe83076e6b79899c84e8c8811d6cd45bb117ed4db6fcc8d756b14a7212c29c5b063aa9b9f5cc0009884c8
7
- data.tar.gz: 35c1ea16c92a2c34350e8cb1b6204af30f1125993cf576100f9b78f7d090df9edc37777a4b78c835897d3770982e72d634cc658452c3eb9a0dd26c0fd1707d79
6
+ metadata.gz: aa445a435dc2ed67ed14d975b0103239a3da49b8406fe1ccb6b06dcd32a7d5b6a12fb33372e4831031fcb106bddb12e9e4730852aad13c953826529b60dc0670
7
+ data.tar.gz: 6aa5b63d1413325a175810c99b7988c9189ddfe916bc77fe69b622b64c4d5c6856f2402926f37f53a59fce8a682f7f22115e97adb2fa053816c042ee018502af
data/.gitignore CHANGED
@@ -7,5 +7,4 @@
7
7
  /pkg/
8
8
  /spec/reports/
9
9
  /tmp/
10
- /MAINTAINERS
11
10
  /.byebug_history
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/v0.1.0...HEAD
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
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 1,
3
+ "issues": "https://github.com/puppetlabs/maintainers/issues",
4
+ "people": [
5
+ {
6
+ "github": "kylog",
7
+ "email": "kylo@puppet.com",
8
+ "name": "Kylo Ginsberg"
9
+ }
10
+ ]
11
+ }
@@ -28,7 +28,7 @@ module Maintainers
28
28
  end
29
29
 
30
30
  def validate(maintainers)
31
- maintainers_schema = JSON.parse(File.read('schema/maintainers.json'))
31
+ maintainers_schema = JSON.parse(File.read('schema/MAINTAINERS.json'))
32
32
 
33
33
  JSON::Validator.validate(maintainers_schema, maintainers)
34
34
  end
@@ -1,3 +1,3 @@
1
1
  module Maintainers
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
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.0
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-01 00:00:00.000000000 Z
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