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.
@@ -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
@@ -1,7 +1,7 @@
1
1
  module Gitlab
2
2
  module Ci
3
3
  module Lint
4
- VERSION = "0.1.3".freeze
4
+ VERSION = "0.1.4".freeze
5
5
  end
6
6
  end
7
7
  end
@@ -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
@@ -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"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gitlab-ci-lint
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lucca Pessoa da Silva Matos