gitlab-ci-lint 0.1.3 → 0.1.4
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/.dockerignore +12 -12
- data/.editorconfig +17 -17
- data/.gitignore +215 -215
- data/.gitlab-ci.yml +72 -72
- data/CHANGELOG.md +39 -39
- data/Dockerfile +35 -35
- data/Gemfile +16 -16
- data/Makefile +50 -50
- data/README.md +213 -213
- data/bin/console +6 -6
- data/bin/setup +5 -5
- data/docker-compose.yml +45 -45
- data/docs/annotations/replace.md +128 -128
- data/exemple/lint.rb +14 -14
- data/gitlab.gemspec +34 -34
- data/lib/gitlab/ci/lint.rb +43 -43
- data/lib/gitlab/ci/lint/actions.rb +20 -20
- data/lib/gitlab/ci/lint/arguments.rb +10 -6
- data/lib/gitlab/ci/lint/client.rb +1 -1
- data/lib/gitlab/ci/lint/colors.rb +26 -26
- data/lib/gitlab/ci/lint/configuration.rb +28 -28
- data/lib/gitlab/ci/lint/log.rb +54 -54
- data/lib/gitlab/ci/lint/multio.rb +20 -20
- data/lib/gitlab/ci/lint/serializer.rb +55 -55
- data/lib/gitlab/ci/lint/system.rb +22 -22
- data/lib/gitlab/ci/lint/version.rb +1 -1
- data/lib/gitlab/ci/lint/yml.rb +47 -47
- data/spec/gitlab/ci/lint/spec.rb +5 -5
- data/values.yml +10 -10
- metadata +1 -1
@@ -1,22 +1,22 @@
|
|
1
|
-
module GitLab
|
2
|
-
module CI
|
3
|
-
module Lint
|
4
|
-
class System
|
5
|
-
def file_exist? file, message
|
6
|
-
unless file
|
7
|
-
$stderr.puts("#{message}")
|
8
|
-
return 1
|
9
|
-
end
|
10
|
-
end
|
11
|
-
|
12
|
-
def file_is_readable? file, message
|
13
|
-
unless File.readable?(file)
|
14
|
-
$stderr.puts("#{message}")
|
15
|
-
return 1
|
16
|
-
end
|
17
|
-
end
|
18
|
-
|
19
|
-
end
|
20
|
-
end
|
21
|
-
end
|
22
|
-
end
|
1
|
+
module GitLab
|
2
|
+
module CI
|
3
|
+
module Lint
|
4
|
+
class System
|
5
|
+
def file_exist? file, message
|
6
|
+
unless file
|
7
|
+
$stderr.puts("#{message}")
|
8
|
+
return 1
|
9
|
+
end
|
10
|
+
end
|
11
|
+
|
12
|
+
def file_is_readable? file, message
|
13
|
+
unless File.readable?(file)
|
14
|
+
$stderr.puts("#{message}")
|
15
|
+
return 1
|
16
|
+
end
|
17
|
+
end
|
18
|
+
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
data/lib/gitlab/ci/lint/yml.rb
CHANGED
@@ -1,47 +1,47 @@
|
|
1
|
-
require "yaml"
|
2
|
-
require "json"
|
3
|
-
|
4
|
-
module GitLab
|
5
|
-
module CI
|
6
|
-
module Lint
|
7
|
-
class YMLReader
|
8
|
-
attr_reader :file
|
9
|
-
def initialize file
|
10
|
-
@file = file
|
11
|
-
validate!
|
12
|
-
end
|
13
|
-
|
14
|
-
def validate!
|
15
|
-
unless @file.chars.last(4).join == ".yml" or @file.chars.last(5).join == ".yaml"
|
16
|
-
raise ArgumentError.new("We need a YML File...")
|
17
|
-
end
|
18
|
-
end
|
19
|
-
|
20
|
-
def get_content
|
21
|
-
begin
|
22
|
-
return YAML.load(File.read(@file))
|
23
|
-
rescue ArgumentError => error
|
24
|
-
puts "Could not parse the YAML File: #{error.message}"
|
25
|
-
end
|
26
|
-
end
|
27
|
-
|
28
|
-
def get_json_content
|
29
|
-
content = JSON.pretty_generate(get_content())
|
30
|
-
return valid_json?(content) ? content : nil
|
31
|
-
end
|
32
|
-
|
33
|
-
private
|
34
|
-
|
35
|
-
def valid_json? json
|
36
|
-
begin
|
37
|
-
JSON.parse(json)
|
38
|
-
return true
|
39
|
-
rescue
|
40
|
-
return false
|
41
|
-
end
|
42
|
-
end
|
43
|
-
|
44
|
-
end
|
45
|
-
end
|
46
|
-
end
|
47
|
-
end
|
1
|
+
require "yaml"
|
2
|
+
require "json"
|
3
|
+
|
4
|
+
module GitLab
|
5
|
+
module CI
|
6
|
+
module Lint
|
7
|
+
class YMLReader
|
8
|
+
attr_reader :file
|
9
|
+
def initialize file
|
10
|
+
@file = file
|
11
|
+
validate!
|
12
|
+
end
|
13
|
+
|
14
|
+
def validate!
|
15
|
+
unless @file.chars.last(4).join == ".yml" or @file.chars.last(5).join == ".yaml"
|
16
|
+
raise ArgumentError.new("We need a YML File...")
|
17
|
+
end
|
18
|
+
end
|
19
|
+
|
20
|
+
def get_content
|
21
|
+
begin
|
22
|
+
return YAML.load(File.read(@file))
|
23
|
+
rescue ArgumentError => error
|
24
|
+
puts "Could not parse the YAML File: #{error.message}"
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
28
|
+
def get_json_content
|
29
|
+
content = JSON.pretty_generate(get_content())
|
30
|
+
return valid_json?(content) ? content : nil
|
31
|
+
end
|
32
|
+
|
33
|
+
private
|
34
|
+
|
35
|
+
def valid_json? json
|
36
|
+
begin
|
37
|
+
JSON.parse(json)
|
38
|
+
return true
|
39
|
+
rescue
|
40
|
+
return false
|
41
|
+
end
|
42
|
+
end
|
43
|
+
|
44
|
+
end
|
45
|
+
end
|
46
|
+
end
|
47
|
+
end
|
data/spec/gitlab/ci/lint/spec.rb
CHANGED
@@ -1,5 +1,5 @@
|
|
1
|
-
RSpec.describe Gitlab::Ci::Lint do
|
2
|
-
it "Has a version number" do
|
3
|
-
expect(Gitlab::Ci::Lint::VERSION).not_to be nil
|
4
|
-
end
|
5
|
-
end
|
1
|
+
RSpec.describe Gitlab::Ci::Lint do
|
2
|
+
it "Has a version number" do
|
3
|
+
expect(Gitlab::Ci::Lint::VERSION).not_to be nil
|
4
|
+
end
|
5
|
+
end
|
data/values.yml
CHANGED
@@ -1,10 +1,10 @@
|
|
1
|
-
# =============================================================================
|
2
|
-
# VALUES DEFINITION
|
3
|
-
# =============================================================================
|
4
|
-
|
5
|
-
---
|
6
|
-
gitlab:
|
7
|
-
endpoint: "https://gitlab.com/api/v4/ci/lint"
|
8
|
-
file: ".gitlab-ci.yml"
|
9
|
-
log:
|
10
|
-
file: "file.log"
|
1
|
+
# =============================================================================
|
2
|
+
# VALUES DEFINITION
|
3
|
+
# =============================================================================
|
4
|
+
|
5
|
+
---
|
6
|
+
gitlab:
|
7
|
+
endpoint: "https://gitlab.com/api/v4/ci/lint"
|
8
|
+
file: ".gitlab-ci.yml"
|
9
|
+
log:
|
10
|
+
file: "file.log"
|