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
data/lib/gitlab/ci/lint.rb
CHANGED
@@ -1,43 +1,43 @@
|
|
1
|
-
require "gitlab/ci/lint/yml"
|
2
|
-
require "gitlab/ci/lint/log"
|
3
|
-
require "gitlab/ci/lint/system"
|
4
|
-
require "gitlab/ci/lint/actions"
|
5
|
-
|
6
|
-
module Gitlab
|
7
|
-
module Ci
|
8
|
-
module Lint
|
9
|
-
def self.validate values, configuration, options
|
10
|
-
system = GitLab::CI::Lint::System.new
|
11
|
-
actions = GitLab::CI::Lint::Actions.new
|
12
|
-
|
13
|
-
system.file_exist?(values, "Error: You must specify the values.yml file")
|
14
|
-
|
15
|
-
values = File.absolute_path(values)
|
16
|
-
|
17
|
-
system.file_is_readable?(values, "Error: Could not find file at '#{values}'")
|
18
|
-
|
19
|
-
yml_reader = GitLab::CI::Lint::YMLReader.new(values)
|
20
|
-
content = yml_reader.get_content
|
21
|
-
|
22
|
-
gitlab = content["gitlab"]
|
23
|
-
|
24
|
-
logger = GitLab::CI::Lint::Log.instance
|
25
|
-
|
26
|
-
gitlab_endpoint = options["endpoint"] ?
|
27
|
-
options["endpoint"] : ((!gitlab["endpoint"].to_s.empty? && !gitlab["endpoint"].nil?) ?
|
28
|
-
gitlab["endpoint"] : configuration.gitlab_endpoint)
|
29
|
-
|
30
|
-
gitlab_ci_file = options["file"] ?
|
31
|
-
options["file"] : ((!gitlab["file"].to_s.empty? && !gitlab["file"].nil?) ?
|
32
|
-
gitlab["file"] : configuration.gitlab_ci_file)
|
33
|
-
|
34
|
-
logger.info("Starting GitLab CI YML Validation...")
|
35
|
-
|
36
|
-
actions.validate_gitlab_ci_yml(gitlab_endpoint, gitlab_ci_file)
|
37
|
-
|
38
|
-
return 0
|
39
|
-
end
|
40
|
-
|
41
|
-
end
|
42
|
-
end
|
43
|
-
end
|
1
|
+
require "gitlab/ci/lint/yml"
|
2
|
+
require "gitlab/ci/lint/log"
|
3
|
+
require "gitlab/ci/lint/system"
|
4
|
+
require "gitlab/ci/lint/actions"
|
5
|
+
|
6
|
+
module Gitlab
|
7
|
+
module Ci
|
8
|
+
module Lint
|
9
|
+
def self.validate values, configuration, options
|
10
|
+
system = GitLab::CI::Lint::System.new
|
11
|
+
actions = GitLab::CI::Lint::Actions.new
|
12
|
+
|
13
|
+
system.file_exist?(values, "Error: You must specify the values.yml file")
|
14
|
+
|
15
|
+
values = File.absolute_path(values)
|
16
|
+
|
17
|
+
system.file_is_readable?(values, "Error: Could not find file at '#{values}'")
|
18
|
+
|
19
|
+
yml_reader = GitLab::CI::Lint::YMLReader.new(values)
|
20
|
+
content = yml_reader.get_content
|
21
|
+
|
22
|
+
gitlab = content["gitlab"]
|
23
|
+
|
24
|
+
logger = GitLab::CI::Lint::Log.instance
|
25
|
+
|
26
|
+
gitlab_endpoint = options["endpoint"] ?
|
27
|
+
options["endpoint"] : ((!gitlab["endpoint"].to_s.empty? && !gitlab["endpoint"].nil?) ?
|
28
|
+
gitlab["endpoint"] : configuration.gitlab_endpoint)
|
29
|
+
|
30
|
+
gitlab_ci_file = options["file"] ?
|
31
|
+
options["file"] : ((!gitlab["file"].to_s.empty? && !gitlab["file"].nil?) ?
|
32
|
+
gitlab["file"] : configuration.gitlab_ci_file)
|
33
|
+
|
34
|
+
logger.info("Starting GitLab CI YML Validation...")
|
35
|
+
|
36
|
+
actions.validate_gitlab_ci_yml(gitlab_endpoint, gitlab_ci_file)
|
37
|
+
|
38
|
+
return 0
|
39
|
+
end
|
40
|
+
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
@@ -1,20 +1,20 @@
|
|
1
|
-
require "gitlab/ci/lint/client"
|
2
|
-
require "gitlab/ci/lint/serializer"
|
3
|
-
|
4
|
-
module GitLab
|
5
|
-
module CI
|
6
|
-
module Lint
|
7
|
-
class Actions < GitLab::CI::Lint::Client
|
8
|
-
def validate_gitlab_ci_yml url, content
|
9
|
-
result = post(url, content)
|
10
|
-
message = GitLab::CI::Lint::Serializer.new(result)
|
11
|
-
if result["status"] == "valid"
|
12
|
-
message.success()
|
13
|
-
else
|
14
|
-
message.failure()
|
15
|
-
end
|
16
|
-
end
|
17
|
-
end
|
18
|
-
end
|
19
|
-
end
|
20
|
-
end
|
1
|
+
require "gitlab/ci/lint/client"
|
2
|
+
require "gitlab/ci/lint/serializer"
|
3
|
+
|
4
|
+
module GitLab
|
5
|
+
module CI
|
6
|
+
module Lint
|
7
|
+
class Actions < GitLab::CI::Lint::Client
|
8
|
+
def validate_gitlab_ci_yml url, content
|
9
|
+
result = post(url, content)
|
10
|
+
message = GitLab::CI::Lint::Serializer.new(result)
|
11
|
+
if result["status"] == "valid"
|
12
|
+
message.success()
|
13
|
+
else
|
14
|
+
message.failure()
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
@@ -20,11 +20,14 @@ module GitLab
|
|
20
20
|
OptionParser.new do |opts|
|
21
21
|
opts.banner = "Usage: example.rb [options]"
|
22
22
|
opts.on("-h", "--helper", "Show helper documentation") { |value| @options[:help] = helper() }
|
23
|
-
opts.on("-e", "--endpoint
|
24
|
-
opts.on("-t", "--token
|
25
|
-
opts.on("-f", "--file
|
26
|
-
opts.on("-
|
27
|
-
opts.on("-
|
23
|
+
opts.on("-e", "--endpoint", "GitLab Endpoint") { |value| @options[:endpoint] = value }
|
24
|
+
opts.on("-t", "--token", "GitLab Token") { |value| @options[:token] = value }
|
25
|
+
opts.on("-f", "--file", "GitLab CI File") { |value| @options[:file] = value }
|
26
|
+
opts.on("-d", "--directory", "GitLab CI Directory") { |value| @options[:file] = value }
|
27
|
+
opts.on("-T", "--timeout", "Request Timeout") { |value| @options[:file] = value }
|
28
|
+
opts.on("-n", "--no-color", "Color Usage") { |value| @options[:file] = value }
|
29
|
+
opts.on("-v", "--values", "Values File") { |value| @options[:values] = value }
|
30
|
+
opts.on("-l", "--log", "Log File") { |value| @options[:log] = value }
|
28
31
|
opts.on("--verbose", "If set, print verbose output") { |value| @options[:verbose] = true }
|
29
32
|
opts.on("--version", "Show GitLab CI Lint Version") { |value| @options[:help] = version() }
|
30
33
|
end.parse!
|
@@ -42,9 +45,10 @@ module GitLab
|
|
42
45
|
Global options:
|
43
46
|
-h | --helper show GitLab CI help.
|
44
47
|
-e | --endpoint root URL of the GitLab instance to use API (default: 'https://gitlab.com')
|
48
|
+
-t | --token GitLab Token value used to private hosts.
|
45
49
|
-f | --file FILE is the relative or absolute path to the gitlab-ci file
|
46
50
|
-d | --directory DIR is the directory from where to search for gitlab-ci file and git repository (default: '.')
|
47
|
-
-
|
51
|
+
-T | --timeout timeout in second after which http request to GitLab API will timeout (and the program will fails) (default: 5)
|
48
52
|
-n | --no-color don't color output. By defaults the output is colorized if a compatible terminal is detected.
|
49
53
|
-v | --values Values file with information.
|
50
54
|
-l | --log LOG is the log file path.
|
@@ -1,26 +1,26 @@
|
|
1
|
-
module GitLab
|
2
|
-
module CI
|
3
|
-
module Lint
|
4
|
-
class Colors
|
5
|
-
COLORS = {"default" => "38", "black" => "30", "red" => "31",
|
6
|
-
"green" => "32", "brown" => "33", "blue" => "34", "purple" => "35",
|
7
|
-
"cyan" => "36", "gray" => "37", "dark gray" => "1;30",
|
8
|
-
"light red" => "1;31", "light green" => "1;32", "yellow" => "1;33",
|
9
|
-
"light blue" => "1;34", "light purple" => "1;35", "light cyan" => "1;36",
|
10
|
-
"white" => "1;37"}
|
11
|
-
|
12
|
-
BACKGROUD_COLORS = {"default" => "0", "black" => "40", "red" => "41",
|
13
|
-
"green" => "42", "brown" => "43", "blue" => "44",
|
14
|
-
"purple" => "45", "cyan" => "46", "gray" => "47",
|
15
|
-
"dark gray" => "100", "light red" => "101", "light green" => "102",
|
16
|
-
"yellow" => "103", "light blue" => "104", "light purple" => "105",
|
17
|
-
"light cyan" => "106", "white" => "107"}
|
18
|
-
|
19
|
-
def self.colorize(message, color="default", backgroud_color="default")
|
20
|
-
return "\033[#{BACKGROUD_COLORS[backgroud_color]};#{COLORS[color]}m#{message}\033[0m"
|
21
|
-
end
|
22
|
-
|
23
|
-
end
|
24
|
-
end
|
25
|
-
end
|
26
|
-
end
|
1
|
+
module GitLab
|
2
|
+
module CI
|
3
|
+
module Lint
|
4
|
+
class Colors
|
5
|
+
COLORS = {"default" => "38", "black" => "30", "red" => "31",
|
6
|
+
"green" => "32", "brown" => "33", "blue" => "34", "purple" => "35",
|
7
|
+
"cyan" => "36", "gray" => "37", "dark gray" => "1;30",
|
8
|
+
"light red" => "1;31", "light green" => "1;32", "yellow" => "1;33",
|
9
|
+
"light blue" => "1;34", "light purple" => "1;35", "light cyan" => "1;36",
|
10
|
+
"white" => "1;37"}
|
11
|
+
|
12
|
+
BACKGROUD_COLORS = {"default" => "0", "black" => "40", "red" => "41",
|
13
|
+
"green" => "42", "brown" => "43", "blue" => "44",
|
14
|
+
"purple" => "45", "cyan" => "46", "gray" => "47",
|
15
|
+
"dark gray" => "100", "light red" => "101", "light green" => "102",
|
16
|
+
"yellow" => "103", "light blue" => "104", "light purple" => "105",
|
17
|
+
"light cyan" => "106", "white" => "107"}
|
18
|
+
|
19
|
+
def self.colorize(message, color="default", backgroud_color="default")
|
20
|
+
return "\033[#{BACKGROUD_COLORS[backgroud_color]};#{COLORS[color]}m#{message}\033[0m"
|
21
|
+
end
|
22
|
+
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
@@ -1,28 +1,28 @@
|
|
1
|
-
module GitLab
|
2
|
-
module CI
|
3
|
-
module Lint
|
4
|
-
class Configuration
|
5
|
-
attr_reader :gitlab_endpoint, :gitlab_token, :gitlab_ci_file,
|
6
|
-
:values, :log_file
|
7
|
-
def initialize
|
8
|
-
@gitlab_endpoint = ENV["GITLAB_ENDPOINT"]
|
9
|
-
@gitlab_token = ENV["GITLAB_TOKEN"]
|
10
|
-
@gitlab_ci_file = ENV["GITLAB_CI_FILE"]
|
11
|
-
@values = ENV["VALUES"]
|
12
|
-
@log_file = ENV["LOG_FILE"]
|
13
|
-
end
|
14
|
-
|
15
|
-
def variables
|
16
|
-
return {
|
17
|
-
"gitlab_endpoint" => @gitlab_endpoint,
|
18
|
-
"gitlab_token" => @gitlab_token,
|
19
|
-
"gitlab_ci_file" => @gitlab_ci_file,
|
20
|
-
"values" => @values,
|
21
|
-
"log_file" => @log_file
|
22
|
-
}
|
23
|
-
end
|
24
|
-
|
25
|
-
end
|
26
|
-
end
|
27
|
-
end
|
28
|
-
end
|
1
|
+
module GitLab
|
2
|
+
module CI
|
3
|
+
module Lint
|
4
|
+
class Configuration
|
5
|
+
attr_reader :gitlab_endpoint, :gitlab_token, :gitlab_ci_file,
|
6
|
+
:values, :log_file
|
7
|
+
def initialize
|
8
|
+
@gitlab_endpoint = ENV["GITLAB_ENDPOINT"]
|
9
|
+
@gitlab_token = ENV["GITLAB_TOKEN"]
|
10
|
+
@gitlab_ci_file = ENV["GITLAB_CI_FILE"]
|
11
|
+
@values = ENV["VALUES"]
|
12
|
+
@log_file = ENV["LOG_FILE"]
|
13
|
+
end
|
14
|
+
|
15
|
+
def variables
|
16
|
+
return {
|
17
|
+
"gitlab_endpoint" => @gitlab_endpoint,
|
18
|
+
"gitlab_token" => @gitlab_token,
|
19
|
+
"gitlab_ci_file" => @gitlab_ci_file,
|
20
|
+
"values" => @values,
|
21
|
+
"log_file" => @log_file
|
22
|
+
}
|
23
|
+
end
|
24
|
+
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
data/lib/gitlab/ci/lint/log.rb
CHANGED
@@ -1,54 +1,54 @@
|
|
1
|
-
require "logger"
|
2
|
-
require "singleton"
|
3
|
-
require "gitlab/ci/lint/multio.rb"
|
4
|
-
require "gitlab/ci/lint/colors.rb"
|
5
|
-
|
6
|
-
module GitLab
|
7
|
-
module CI
|
8
|
-
module Lint
|
9
|
-
class Log < GitLab::CI::Lint::Colors
|
10
|
-
include Singleton
|
11
|
-
attr_accessor :logger
|
12
|
-
def initialize log_file="./file.log"
|
13
|
-
@logger = Logger.new GitLab::CI::Lint::MultiIO.new(STDOUT,
|
14
|
-
File.open(File.exist?(log_file) ? log_file : "./file.log", "a"))
|
15
|
-
|
16
|
-
@logger.level = Logger::INFO
|
17
|
-
|
18
|
-
@logger.formatter = proc do |severity, datetime, progname, msg|
|
19
|
-
datetime = "[#{datetime.strftime('%Y-%m-%d %H:%M:%S')}]"
|
20
|
-
case severity
|
21
|
-
when "INFO"
|
22
|
-
colorized_severity = self.class.colorize("#{severity}", "black", "green")
|
23
|
-
self.class.colorize("#{colorized_severity} - #{datetime} - #{msg}\n", "black", "green")
|
24
|
-
when "ERROR"
|
25
|
-
colorized_severity = self.class.colorize("#{severity}", "black", "red")
|
26
|
-
"#{colorized_severity} - #{datetime} - #{msg}\n"
|
27
|
-
end
|
28
|
-
end
|
29
|
-
end
|
30
|
-
|
31
|
-
def set_level level
|
32
|
-
@logger.level = level
|
33
|
-
end
|
34
|
-
|
35
|
-
def info message, color=:green
|
36
|
-
@logger.info(message)
|
37
|
-
end
|
38
|
-
|
39
|
-
def debug message, color=:green
|
40
|
-
@logger.debug(message)
|
41
|
-
end
|
42
|
-
|
43
|
-
def error message, color=:green
|
44
|
-
@logger.error(message)
|
45
|
-
end
|
46
|
-
|
47
|
-
def warn message
|
48
|
-
@logger.warn(message)
|
49
|
-
end
|
50
|
-
|
51
|
-
end
|
52
|
-
end
|
53
|
-
end
|
54
|
-
end
|
1
|
+
require "logger"
|
2
|
+
require "singleton"
|
3
|
+
require "gitlab/ci/lint/multio.rb"
|
4
|
+
require "gitlab/ci/lint/colors.rb"
|
5
|
+
|
6
|
+
module GitLab
|
7
|
+
module CI
|
8
|
+
module Lint
|
9
|
+
class Log < GitLab::CI::Lint::Colors
|
10
|
+
include Singleton
|
11
|
+
attr_accessor :logger
|
12
|
+
def initialize log_file="./file.log"
|
13
|
+
@logger = Logger.new GitLab::CI::Lint::MultiIO.new(STDOUT,
|
14
|
+
File.open(File.exist?(log_file) ? log_file : "./file.log", "a"))
|
15
|
+
|
16
|
+
@logger.level = Logger::INFO
|
17
|
+
|
18
|
+
@logger.formatter = proc do |severity, datetime, progname, msg|
|
19
|
+
datetime = "[#{datetime.strftime('%Y-%m-%d %H:%M:%S')}]"
|
20
|
+
case severity
|
21
|
+
when "INFO"
|
22
|
+
colorized_severity = self.class.colorize("#{severity}", "black", "green")
|
23
|
+
self.class.colorize("#{colorized_severity} - #{datetime} - #{msg}\n", "black", "green")
|
24
|
+
when "ERROR"
|
25
|
+
colorized_severity = self.class.colorize("#{severity}", "black", "red")
|
26
|
+
"#{colorized_severity} - #{datetime} - #{msg}\n"
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
|
31
|
+
def set_level level
|
32
|
+
@logger.level = level
|
33
|
+
end
|
34
|
+
|
35
|
+
def info message, color=:green
|
36
|
+
@logger.info(message)
|
37
|
+
end
|
38
|
+
|
39
|
+
def debug message, color=:green
|
40
|
+
@logger.debug(message)
|
41
|
+
end
|
42
|
+
|
43
|
+
def error message, color=:green
|
44
|
+
@logger.error(message)
|
45
|
+
end
|
46
|
+
|
47
|
+
def warn message
|
48
|
+
@logger.warn(message)
|
49
|
+
end
|
50
|
+
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|
54
|
+
end
|
@@ -1,20 +1,20 @@
|
|
1
|
-
module GitLab
|
2
|
-
module CI
|
3
|
-
module Lint
|
4
|
-
class MultiIO
|
5
|
-
def initialize(*targets)
|
6
|
-
@targets = targets
|
7
|
-
end
|
8
|
-
|
9
|
-
def write(*args)
|
10
|
-
@targets.each {|target| target.write(*args)}
|
11
|
-
end
|
12
|
-
|
13
|
-
def close
|
14
|
-
@targets.each(&:close)
|
15
|
-
end
|
16
|
-
|
17
|
-
end
|
18
|
-
end
|
19
|
-
end
|
20
|
-
end
|
1
|
+
module GitLab
|
2
|
+
module CI
|
3
|
+
module Lint
|
4
|
+
class MultiIO
|
5
|
+
def initialize(*targets)
|
6
|
+
@targets = targets
|
7
|
+
end
|
8
|
+
|
9
|
+
def write(*args)
|
10
|
+
@targets.each {|target| target.write(*args)}
|
11
|
+
end
|
12
|
+
|
13
|
+
def close
|
14
|
+
@targets.each(&:close)
|
15
|
+
end
|
16
|
+
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
@@ -1,55 +1,55 @@
|
|
1
|
-
module GitLab
|
2
|
-
module CI
|
3
|
-
module Lint
|
4
|
-
class Serializer
|
5
|
-
attr_reader :content
|
6
|
-
|
7
|
-
def initialize content
|
8
|
-
@content = content
|
9
|
-
@sucess_message = "Your GitLab CI File is Okay.".colorize(:green)
|
10
|
-
@failure_message = "Your GitLab CI File is Invalid.".colorize(:red)
|
11
|
-
@serialize = serialize
|
12
|
-
end
|
13
|
-
|
14
|
-
def success
|
15
|
-
puts """
|
16
|
-
Result: #{@sucess_message}
|
17
|
-
|
18
|
-
Information:
|
19
|
-
|
20
|
-
* Status: #{@serialize[:status]}
|
21
|
-
* Erros: #{@serialize[:errors]}
|
22
|
-
|
23
|
-
Yeaaaah!!!! Congrats!!!!
|
24
|
-
"""
|
25
|
-
end
|
26
|
-
|
27
|
-
def failure
|
28
|
-
puts """
|
29
|
-
Result: #{@failure_message}
|
30
|
-
|
31
|
-
#{"Information".colorize(:yellow)}
|
32
|
-
|
33
|
-
* Status: #{@serialize[:status].colorize(:red)}
|
34
|
-
* Erros: #{@serialize[:errors].to_s.colorize(:red)}
|
35
|
-
|
36
|
-
Baaaaaad GitLab CI! Fuck man, you're a idiot...
|
37
|
-
"""
|
38
|
-
puts "Error Details:\n".colorize(:yellow)
|
39
|
-
@content["errors"].each_with_index do |value, index|
|
40
|
-
puts "Error #{index} - #{value}"
|
41
|
-
end
|
42
|
-
puts
|
43
|
-
end
|
44
|
-
|
45
|
-
def serialize
|
46
|
-
{
|
47
|
-
:status => @content["status"],
|
48
|
-
:error => @content["errors"]
|
49
|
-
}
|
50
|
-
end
|
51
|
-
|
52
|
-
end
|
53
|
-
end
|
54
|
-
end
|
55
|
-
end
|
1
|
+
module GitLab
|
2
|
+
module CI
|
3
|
+
module Lint
|
4
|
+
class Serializer
|
5
|
+
attr_reader :content
|
6
|
+
|
7
|
+
def initialize content
|
8
|
+
@content = content
|
9
|
+
@sucess_message = "Your GitLab CI File is Okay.".colorize(:green)
|
10
|
+
@failure_message = "Your GitLab CI File is Invalid.".colorize(:red)
|
11
|
+
@serialize = serialize
|
12
|
+
end
|
13
|
+
|
14
|
+
def success
|
15
|
+
puts """
|
16
|
+
Result: #{@sucess_message}
|
17
|
+
|
18
|
+
Information:
|
19
|
+
|
20
|
+
* Status: #{@serialize[:status]}
|
21
|
+
* Erros: #{@serialize[:errors]}
|
22
|
+
|
23
|
+
Yeaaaah!!!! Congrats!!!!
|
24
|
+
"""
|
25
|
+
end
|
26
|
+
|
27
|
+
def failure
|
28
|
+
puts """
|
29
|
+
Result: #{@failure_message}
|
30
|
+
|
31
|
+
#{"Information".colorize(:yellow)}
|
32
|
+
|
33
|
+
* Status: #{@serialize[:status].colorize(:red)}
|
34
|
+
* Erros: #{@serialize[:errors].to_s.colorize(:red)}
|
35
|
+
|
36
|
+
Baaaaaad GitLab CI! Fuck man, you're a idiot...
|
37
|
+
"""
|
38
|
+
puts "Error Details:\n".colorize(:yellow)
|
39
|
+
@content["errors"].each_with_index do |value, index|
|
40
|
+
puts "Error #{index} - #{value}"
|
41
|
+
end
|
42
|
+
puts
|
43
|
+
end
|
44
|
+
|
45
|
+
def serialize
|
46
|
+
{
|
47
|
+
:status => @content["status"],
|
48
|
+
:error => @content["errors"]
|
49
|
+
}
|
50
|
+
end
|
51
|
+
|
52
|
+
end
|
53
|
+
end
|
54
|
+
end
|
55
|
+
end
|