puppet-lint-space_after_comma-check 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 08039ecb51993de755ce679ce931b0bbefb7326f
4
+ data.tar.gz: 748ae92211b3ea4797d3f1e6479b62b2368e58fe
5
+ SHA512:
6
+ metadata.gz: c3e7d1434d42b2191f577c8928c7caf9ca01044f822cbd509ab56e8b4aa5e522d52f6c10c9b46dde97b857c4203131a99ce4129e91be4971f1d00f899a10bfed
7
+ data.tar.gz: 0521909d8b0310105b73eb454c128f4915316dfde46e0f8510e0809c02187bd5c21a0fd249fabe6099e1bc0fea344b10a94714f7f5bd718d4887a77bad2aa4f1
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2014 Tim Sharpe
4
+
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:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
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 THE
21
+ SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,24 @@
1
+ # puppet-lint plugin to check for lack of space after a comma in manifets
2
+
3
+ **Note, this is code is a simple proof-of-concept code based on the puppet-lint plugin development tutorial.**
4
+
5
+ ## Installation
6
+
7
+ To use this plugin, add the following like to the Gemfile in your Puppet code
8
+ base and run `bundle install`.
9
+
10
+ ```ruby
11
+ gem 'puppet-lint-space_after_comma-check'
12
+ ```
13
+
14
+ ## Usage
15
+
16
+ This plugin provides a new check to `puppet-lint`.
17
+
18
+ ### space_after_comma
19
+
20
+ This check will raise a warning for any files that don't have space after comma.
21
+
22
+ ```
23
+ WARNING: expected space after comma on line 56
24
+ ```
@@ -0,0 +1,16 @@
1
+ PuppetLint.new_check(:space_after_comma) do
2
+ def check
3
+ tokens.select { |r|
4
+ Set[:COMMA].include? r.type
5
+ }.each do |token|
6
+ if token.next_token.type != :WHITESPACE and token.next_token.type != :NEWLINE
7
+ notify :warning, {
8
+ :message => 'expected space after comma',
9
+ :line => token.line,
10
+ :column => token.column,
11
+ :token => token,
12
+ }
13
+ end
14
+ end
15
+ end
16
+ end
@@ -0,0 +1,15 @@
1
+ require 'spec_helper'
2
+
3
+ describe 'space_after_comma' do
4
+ let(:msg) { 'expected space after comma' }
5
+
6
+ context 'with fix disabled' do
7
+ context 'code have space after comma' do
8
+ let(:code) { "'test'\n" }
9
+
10
+ it 'should not detect any problems' do
11
+ expect(problems).to have(0).problems
12
+ end
13
+ end
14
+ end
15
+ end
@@ -0,0 +1,3 @@
1
+ require 'puppet-lint'
2
+
3
+ PuppetLint::Plugins.load_spec_helper
metadata ADDED
@@ -0,0 +1,121 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: puppet-lint-space_after_comma-check
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Mihail Mihaylov
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2017-03-10 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: puppet-lint
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rspec
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '3.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '3.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rspec-its
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '1.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '1.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rspec-collection_matchers
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '1.0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '1.0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: rake
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ description: " A puppet-lint plugin to check that code in manifests have spaces
84
+ after each comma except in end of line.\n"
85
+ email: mihail.georgiev.mihaylov@gmail.com
86
+ executables: []
87
+ extensions: []
88
+ extra_rdoc_files: []
89
+ files:
90
+ - LICENSE
91
+ - README.md
92
+ - lib/puppet-lint/plugins/check_space_after_comma.rb
93
+ - spec/puppet-lint/plugins/check_space_after_comma_spec.rb
94
+ - spec/spec_helper.rb
95
+ homepage: https://github.com/mihailgmihaylov/puppet-lint-space_after_comma-check
96
+ licenses:
97
+ - MIT
98
+ metadata: {}
99
+ post_install_message:
100
+ rdoc_options: []
101
+ require_paths:
102
+ - lib
103
+ required_ruby_version: !ruby/object:Gem::Requirement
104
+ requirements:
105
+ - - ">="
106
+ - !ruby/object:Gem::Version
107
+ version: '0'
108
+ required_rubygems_version: !ruby/object:Gem::Requirement
109
+ requirements:
110
+ - - ">="
111
+ - !ruby/object:Gem::Version
112
+ version: '0'
113
+ requirements: []
114
+ rubyforge_project:
115
+ rubygems_version: 2.5.1
116
+ signing_key:
117
+ specification_version: 4
118
+ summary: A puppet-lint plugin to check for lack of whitespace after comma in code.
119
+ test_files:
120
+ - spec/spec_helper.rb
121
+ - spec/puppet-lint/plugins/check_space_after_comma_spec.rb