git-conform 1.0.0 → 1.1.0

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
2
  SHA1:
3
- metadata.gz: b9f593b0c6ecde9c8f245306ff088350004f5aa6
4
- data.tar.gz: 7a6893166c8e2080ba2a3d74ce18525d69c58370
3
+ metadata.gz: f6159b94653caec925a330faaa8bf46ff335c09d
4
+ data.tar.gz: 219f1266f1c7b3e0bfdc51a4bedfc82a3dd60b53
5
5
  SHA512:
6
- metadata.gz: 515d9e675f88570a9be032c90989cfd80aae0f5d8e7066ce055cf5065ada096426ce484de4057cdc86e29a363f472da40c6cde43f684a3f8511a8df4753865c2
7
- data.tar.gz: b7be897c09a27e24e565c168f56927bdd3e3fb19a2db2c03dc7b8958153c847867ad589580bd48cd679bc35ebd40c235ee8e98b80343f0217b668ab2ca22b208
6
+ metadata.gz: a90cc649cd41b90b23d15c9a8f6947b0fd787758a12261a2b6734d165bd03797d45a9e8c421a89afe87316a22736d84245e15ed90451c0d0776ac8c1c96fa9ff
7
+ data.tar.gz: 38cd83d2bbd0a16e6a0657ca46fcd0ef08911dfd603c4689ce445ae55b3299c61ed236c81c2266d147bed87accffbd68c1d5d1b9b68cf21528c492dfd0f9cefb
data/.gitignore CHANGED
@@ -1,21 +1,9 @@
1
- *.gem
2
- *.rbc
3
- .bundle
4
- .config
5
- .yardoc
6
- Gemfile.lock
7
- InstalledFiles
8
- _yardoc
9
- coverage
10
- doc/
11
- lib/bundler/man
12
- vendor/bundle
13
- pkg
14
- rdoc
15
- spec/reports
16
- test/tmp
17
- test/version_tmp
18
- tmp
19
- *.sublime-*
20
- vcr_debug.log
21
- rerun.txt
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
data/LICENSE.txt CHANGED
@@ -1,22 +1,21 @@
1
- Copyright (c) 2012 Peter Vandenberk
1
+ The MIT License (MIT)
2
2
 
3
- MIT License
3
+ Copyright (c) 2012-2018 Peter Vandenberk
4
4
 
5
- Permission is hereby granted, free of charge, to any person obtaining
6
- a copy of this software and associated documentation files (the
7
- "Software"), to deal in the Software without restriction, including
8
- without limitation the rights to use, copy, modify, merge, publish,
9
- distribute, sublicense, and/or sell copies of the Software, and to
10
- permit persons to whom the Software is furnished to do so, subject to
11
- the following conditions:
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
12
11
 
13
- The above copyright notice and this permission notice shall be
14
- included in all copies or substantial portions of the Software.
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
15
14
 
16
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
- LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
- OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
- WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/git-conform.gemspec CHANGED
@@ -8,16 +8,16 @@ Gem::Specification.new do |spec|
8
8
  spec.authors = ['Peter Vandenberk']
9
9
  spec.email = ['pvandenberk@mac.com']
10
10
 
11
- spec.description = 'Conformity checking for git repositories'
12
11
  spec.summary = 'Conformity checking for git repositories'
12
+ spec.description = 'Conformity checking for git repositories'
13
13
  spec.homepage = 'https://github.com/pvdb/git-conform'
14
14
  spec.license = 'MIT'
15
15
 
16
- spec.files = begin
17
- `git ls-files -z`
18
- .split("\x0")
19
- .reject { |f| f.match(%r{^(test|spec|features)/}) }
20
- end
16
+ spec.files = Dir.chdir(File.expand_path(__dir__)) do
17
+ `git ls-files -z`
18
+ .split("\x0")
19
+ .reject { |f| f.match(%r{^(test|spec|features)/}) }
20
+ end
21
21
  spec.bindir = 'exe'
22
22
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
23
23
  spec.require_paths = ['lib']
@@ -1,6 +1,6 @@
1
1
  module Git
2
2
  module Conform
3
3
  NAME = 'git-conform'.freeze
4
- VERSION = '1.0.0'.freeze
4
+ VERSION = '1.1.0'.freeze
5
5
  end
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: git-conform
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter Vandenberk
@@ -102,7 +102,6 @@ executables:
102
102
  extensions: []
103
103
  extra_rdoc_files: []
104
104
  files:
105
- - ".gitconform"
106
105
  - ".gitignore"
107
106
  - ".pryrc"
108
107
  - ".rubocop.yml"
data/.gitconform DELETED
@@ -1,9 +0,0 @@
1
- [git "conform"]
2
- checker = CarriageReturnCharacterChecker
3
- checker = FileNotEmptyChecker
4
- checker = LowercaseFilenameChecker
5
- checker = NonAsciiCharacterChecker
6
- checker = NonAsciiFilenameChecker
7
- checker = TabCharacterChecker
8
- checker = TrailingWhitespaceChecker
9
- checker = WhitespaceFilenameChecker