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/bin/console
CHANGED
@@ -1,6 +1,6 @@
|
|
1
|
-
require "bundler/setup"
|
2
|
-
require "pry"
|
3
|
-
|
4
|
-
require File.expand_path('../lib/telegram/bot', __dir__)
|
5
|
-
|
6
|
-
Pry.start
|
1
|
+
require "bundler/setup"
|
2
|
+
require "pry"
|
3
|
+
|
4
|
+
require File.expand_path('../lib/telegram/bot', __dir__)
|
5
|
+
|
6
|
+
Pry.start
|
data/bin/setup
CHANGED
@@ -1,5 +1,5 @@
|
|
1
|
-
#!/bin/bash
|
2
|
-
set -euo pipefail
|
3
|
-
IFS=$'\n\t'
|
4
|
-
|
5
|
-
bundle install
|
1
|
+
#!/bin/bash
|
2
|
+
set -euo pipefail
|
3
|
+
IFS=$'\n\t'
|
4
|
+
|
5
|
+
bundle install
|
data/docker-compose.yml
CHANGED
@@ -1,45 +1,45 @@
|
|
1
|
-
# =============================================================================
|
2
|
-
# BASE CONFIGURATION
|
3
|
-
# =============================================================================
|
4
|
-
|
5
|
-
version: "3.7"
|
6
|
-
|
7
|
-
# =============================================================================
|
8
|
-
# SERVICES
|
9
|
-
# =============================================================================
|
10
|
-
|
11
|
-
services:
|
12
|
-
|
13
|
-
# =============================================================================
|
14
|
-
# GITLAB CI LINT
|
15
|
-
# =============================================================================
|
16
|
-
|
17
|
-
gitlab-ci-lint:
|
18
|
-
container_name: ${CONTAINER_NAME}
|
19
|
-
env_file: ./.env
|
20
|
-
build:
|
21
|
-
context: ./${PATH_DOCKERFILE}
|
22
|
-
dockerfile: Dockerfile
|
23
|
-
entrypoint: >
|
24
|
-
/bin/sh -c "
|
25
|
-
set -e
|
26
|
-
ruby ./bin/gitlab_ci_lint
|
27
|
-
/bin/bash || exit 0
|
28
|
-
"
|
29
|
-
restart: unless-stopped
|
30
|
-
stdin_open: true
|
31
|
-
tty: true
|
32
|
-
logging:
|
33
|
-
driver: "json-file"
|
34
|
-
options:
|
35
|
-
max-size: "500k"
|
36
|
-
max-file: "20"
|
37
|
-
networks:
|
38
|
-
- gitlab-ci-lint
|
39
|
-
|
40
|
-
# =============================================================================
|
41
|
-
# NETWORKS
|
42
|
-
# =============================================================================
|
43
|
-
|
44
|
-
networks:
|
45
|
-
gitlab-ci-lint:
|
1
|
+
# =============================================================================
|
2
|
+
# BASE CONFIGURATION
|
3
|
+
# =============================================================================
|
4
|
+
|
5
|
+
version: "3.7"
|
6
|
+
|
7
|
+
# =============================================================================
|
8
|
+
# SERVICES
|
9
|
+
# =============================================================================
|
10
|
+
|
11
|
+
services:
|
12
|
+
|
13
|
+
# =============================================================================
|
14
|
+
# GITLAB CI LINT
|
15
|
+
# =============================================================================
|
16
|
+
|
17
|
+
gitlab-ci-lint:
|
18
|
+
container_name: ${CONTAINER_NAME}
|
19
|
+
env_file: ./.env
|
20
|
+
build:
|
21
|
+
context: ./${PATH_DOCKERFILE}
|
22
|
+
dockerfile: Dockerfile
|
23
|
+
entrypoint: >
|
24
|
+
/bin/sh -c "
|
25
|
+
set -e
|
26
|
+
ruby ./bin/gitlab_ci_lint
|
27
|
+
/bin/bash || exit 0
|
28
|
+
"
|
29
|
+
restart: unless-stopped
|
30
|
+
stdin_open: true
|
31
|
+
tty: true
|
32
|
+
logging:
|
33
|
+
driver: "json-file"
|
34
|
+
options:
|
35
|
+
max-size: "500k"
|
36
|
+
max-file: "20"
|
37
|
+
networks:
|
38
|
+
- gitlab-ci-lint
|
39
|
+
|
40
|
+
# =============================================================================
|
41
|
+
# NETWORKS
|
42
|
+
# =============================================================================
|
43
|
+
|
44
|
+
networks:
|
45
|
+
gitlab-ci-lint:
|
data/docs/annotations/replace.md
CHANGED
@@ -1,128 +1,128 @@
|
|
1
|
-
# Ruby Sub and Gsub - Replace String
|
2
|
-
|
3
|
-
Em Ruby, quando estamos falando da classe String, no geral, podemos fazer o replace do conteúdo de uma string de duas formas:
|
4
|
-
|
5
|
-
* Utilizando o método sub().
|
6
|
-
* Utilizando o método gsub().
|
7
|
-
|
8
|
-
Expressões Regulares também são utilizadas, porém para casos um pouco mais complexos.
|
9
|
-
|
10
|
-
## Description
|
11
|
-
|
12
|
-
Portanto, as substituições de string podem ser feitas com os métodos sub() e gsub(). Eles são métodos de substituição da classe String. A grande diferença entre os dois é que o gsub() aplicará a substituição globalmente.
|
13
|
-
|
14
|
-
Nesses métodos podemos utilizar Expressões Regulares ou Strings como argumentos.
|
15
|
-
|
16
|
-
## Exemples
|
17
|
-
|
18
|
-
Vamos iniciar com um exemplo. Usamos o sub! para substituirmos inline e o sub para substituir retornando uma outra string. Nessa chamadas o primeiro argumento é substituído pelo segundo.
|
19
|
-
|
20
|
-
```ruby
|
21
|
-
animal = "gato"
|
22
|
-
|
23
|
-
# Replace string at with ote.
|
24
|
-
animal.sub!("at", "ote")
|
25
|
-
puts animal
|
26
|
-
|
27
|
-
animal = "passarinho"
|
28
|
-
|
29
|
-
# This version of sub does not change the string in-place.
|
30
|
-
animal = animal.sub("inho", "ado")
|
31
|
-
puts animal
|
32
|
-
```
|
33
|
-
|
34
|
-
## Gsub and Sub
|
35
|
-
|
36
|
-
O método sub() substitui apenas a primeira instância de uma string por outra. Enquanto isso, o gsub, substitui todas as instâncias.
|
37
|
-
|
38
|
-
Assim, o gsub() é mais próximo de um método replace string. Sub é conceitualmente um mpetodo de substituir a primeira string.
|
39
|
-
|
40
|
-
```ruby
|
41
|
-
value = "abc abc"
|
42
|
-
puts value
|
43
|
-
|
44
|
-
# Sub replaces just the first instance.
|
45
|
-
value = value.sub("abc", "---")
|
46
|
-
puts value
|
47
|
-
|
48
|
-
# Gsub replaces all instances.
|
49
|
-
value = value.gsub("abc", "---")
|
50
|
-
puts value
|
51
|
-
```
|
52
|
-
|
53
|
-
## Substring
|
54
|
-
|
55
|
-
Podemos atribuir uma substring dentro de uma string. Essa sintaxe tem o mesmo efeito de chamar o método sub em uma string. Irá ser substituído apenas a primeira ocorrência.
|
56
|
-
|
57
|
-
Dicas: Expressões Regulares, intervalos e índices podem ser usados. A atribuição de substring é versátil e fácil de executar.
|
58
|
-
|
59
|
-
```ruby
|
60
|
-
value = "abc abc"
|
61
|
-
puts value
|
62
|
-
|
63
|
-
# A substring can be changed within a string.
|
64
|
-
# ... Only the first instance is replaced.
|
65
|
-
value["abc"] = "def"
|
66
|
-
puts value
|
67
|
-
```
|
68
|
-
|
69
|
-
## Regex - Sub
|
70
|
-
|
71
|
-
Podemos especificar uma Regex como primeiro argumento para sub() e gsub(). Qualquer metacaractere de expressão regular pode ser utilizado aqui.
|
72
|
-
|
73
|
-
```ruby
|
74
|
-
value = "cat and dog"
|
75
|
-
|
76
|
-
# Replaced at a matching the regexp with another string.
|
77
|
-
value.sub!(/c\w\w/, "bird")
|
78
|
-
puts value
|
79
|
-
```
|
80
|
-
|
81
|
-
Regexp pattern:
|
82
|
-
|
83
|
-
* c The lowercase letter "c".
|
84
|
-
* \w A word character (letter or digit).
|
85
|
-
|
86
|
-
## Regex - Gsub
|
87
|
-
|
88
|
-
O método gsub também pode ser utilizado com expressão regular. Ao contrário do sub, ele irá substituir todas as ocorrências.
|
89
|
-
|
90
|
-
```ruby
|
91
|
-
value = "quickly, slowly or happily"
|
92
|
-
|
93
|
-
# Replace all word sending with "ly" with a string.
|
94
|
-
value.gsub!(/\w+ly/, "REP")
|
95
|
-
puts value
|
96
|
-
```
|
97
|
-
|
98
|
-
Regexp pattern:
|
99
|
-
|
100
|
-
|
101
|
-
Ruby program that uses gsub with regexp
|
102
|
-
|
103
|
-
value = "quickly, slowly or happily"
|
104
|
-
|
105
|
-
# Replace all word sending with "ly" with a string.
|
106
|
-
value.gsub!(/\w+ly/, "REP")
|
107
|
-
puts value
|
108
|
-
|
109
|
-
Output
|
110
|
-
|
111
|
-
REP, REP or REP
|
112
|
-
|
113
|
-
Regexp pattern
|
114
|
-
|
115
|
-
* \w+ One or more word characters.
|
116
|
-
* ly The lowercase substring "ly".
|
117
|
-
|
118
|
-
## Methods Block
|
119
|
-
|
120
|
-
Os métodos sub e gsub podem ser usados com blocos de métodos.
|
121
|
-
|
122
|
-
```ruby
|
123
|
-
value = "bird and fish"
|
124
|
-
|
125
|
-
# Replace all four-letter words with an uppercase version.
|
126
|
-
value.gsub!(/\w{4}/) {|word| "[" + word.upcase() + "]"}
|
127
|
-
puts value
|
128
|
-
```
|
1
|
+
# Ruby Sub and Gsub - Replace String
|
2
|
+
|
3
|
+
Em Ruby, quando estamos falando da classe String, no geral, podemos fazer o replace do conteúdo de uma string de duas formas:
|
4
|
+
|
5
|
+
* Utilizando o método sub().
|
6
|
+
* Utilizando o método gsub().
|
7
|
+
|
8
|
+
Expressões Regulares também são utilizadas, porém para casos um pouco mais complexos.
|
9
|
+
|
10
|
+
## Description
|
11
|
+
|
12
|
+
Portanto, as substituições de string podem ser feitas com os métodos sub() e gsub(). Eles são métodos de substituição da classe String. A grande diferença entre os dois é que o gsub() aplicará a substituição globalmente.
|
13
|
+
|
14
|
+
Nesses métodos podemos utilizar Expressões Regulares ou Strings como argumentos.
|
15
|
+
|
16
|
+
## Exemples
|
17
|
+
|
18
|
+
Vamos iniciar com um exemplo. Usamos o sub! para substituirmos inline e o sub para substituir retornando uma outra string. Nessa chamadas o primeiro argumento é substituído pelo segundo.
|
19
|
+
|
20
|
+
```ruby
|
21
|
+
animal = "gato"
|
22
|
+
|
23
|
+
# Replace string at with ote.
|
24
|
+
animal.sub!("at", "ote")
|
25
|
+
puts animal
|
26
|
+
|
27
|
+
animal = "passarinho"
|
28
|
+
|
29
|
+
# This version of sub does not change the string in-place.
|
30
|
+
animal = animal.sub("inho", "ado")
|
31
|
+
puts animal
|
32
|
+
```
|
33
|
+
|
34
|
+
## Gsub and Sub
|
35
|
+
|
36
|
+
O método sub() substitui apenas a primeira instância de uma string por outra. Enquanto isso, o gsub, substitui todas as instâncias.
|
37
|
+
|
38
|
+
Assim, o gsub() é mais próximo de um método replace string. Sub é conceitualmente um mpetodo de substituir a primeira string.
|
39
|
+
|
40
|
+
```ruby
|
41
|
+
value = "abc abc"
|
42
|
+
puts value
|
43
|
+
|
44
|
+
# Sub replaces just the first instance.
|
45
|
+
value = value.sub("abc", "---")
|
46
|
+
puts value
|
47
|
+
|
48
|
+
# Gsub replaces all instances.
|
49
|
+
value = value.gsub("abc", "---")
|
50
|
+
puts value
|
51
|
+
```
|
52
|
+
|
53
|
+
## Substring
|
54
|
+
|
55
|
+
Podemos atribuir uma substring dentro de uma string. Essa sintaxe tem o mesmo efeito de chamar o método sub em uma string. Irá ser substituído apenas a primeira ocorrência.
|
56
|
+
|
57
|
+
Dicas: Expressões Regulares, intervalos e índices podem ser usados. A atribuição de substring é versátil e fácil de executar.
|
58
|
+
|
59
|
+
```ruby
|
60
|
+
value = "abc abc"
|
61
|
+
puts value
|
62
|
+
|
63
|
+
# A substring can be changed within a string.
|
64
|
+
# ... Only the first instance is replaced.
|
65
|
+
value["abc"] = "def"
|
66
|
+
puts value
|
67
|
+
```
|
68
|
+
|
69
|
+
## Regex - Sub
|
70
|
+
|
71
|
+
Podemos especificar uma Regex como primeiro argumento para sub() e gsub(). Qualquer metacaractere de expressão regular pode ser utilizado aqui.
|
72
|
+
|
73
|
+
```ruby
|
74
|
+
value = "cat and dog"
|
75
|
+
|
76
|
+
# Replaced at a matching the regexp with another string.
|
77
|
+
value.sub!(/c\w\w/, "bird")
|
78
|
+
puts value
|
79
|
+
```
|
80
|
+
|
81
|
+
Regexp pattern:
|
82
|
+
|
83
|
+
* c The lowercase letter "c".
|
84
|
+
* \w A word character (letter or digit).
|
85
|
+
|
86
|
+
## Regex - Gsub
|
87
|
+
|
88
|
+
O método gsub também pode ser utilizado com expressão regular. Ao contrário do sub, ele irá substituir todas as ocorrências.
|
89
|
+
|
90
|
+
```ruby
|
91
|
+
value = "quickly, slowly or happily"
|
92
|
+
|
93
|
+
# Replace all word sending with "ly" with a string.
|
94
|
+
value.gsub!(/\w+ly/, "REP")
|
95
|
+
puts value
|
96
|
+
```
|
97
|
+
|
98
|
+
Regexp pattern:
|
99
|
+
|
100
|
+
|
101
|
+
Ruby program that uses gsub with regexp
|
102
|
+
|
103
|
+
value = "quickly, slowly or happily"
|
104
|
+
|
105
|
+
# Replace all word sending with "ly" with a string.
|
106
|
+
value.gsub!(/\w+ly/, "REP")
|
107
|
+
puts value
|
108
|
+
|
109
|
+
Output
|
110
|
+
|
111
|
+
REP, REP or REP
|
112
|
+
|
113
|
+
Regexp pattern
|
114
|
+
|
115
|
+
* \w+ One or more word characters.
|
116
|
+
* ly The lowercase substring "ly".
|
117
|
+
|
118
|
+
## Methods Block
|
119
|
+
|
120
|
+
Os métodos sub e gsub podem ser usados com blocos de métodos.
|
121
|
+
|
122
|
+
```ruby
|
123
|
+
value = "bird and fish"
|
124
|
+
|
125
|
+
# Replace all four-letter words with an uppercase version.
|
126
|
+
value.gsub!(/\w{4}/) {|word| "[" + word.upcase() + "]"}
|
127
|
+
puts value
|
128
|
+
```
|
data/exemple/lint.rb
CHANGED
@@ -1,14 +1,14 @@
|
|
1
|
-
require "gitlab/ci/lint"
|
2
|
-
require "gitlab/ci/lint/arguments"
|
3
|
-
require "gitlab/ci/lint/configuration"
|
4
|
-
|
5
|
-
arguments = GitLab::CI::Lint::Arguments.new
|
6
|
-
options = arguments.command_line_parser()
|
7
|
-
|
8
|
-
configuration = GitLab::CI::Lint::Configuration.new
|
9
|
-
|
10
|
-
values = options["values"] ?
|
11
|
-
options["values"] : (configuration.values ?
|
12
|
-
configuration.values : "values.yml")
|
13
|
-
|
14
|
-
Gitlab::Ci::Lint.validate(values, configuration, options)
|
1
|
+
require "gitlab/ci/lint"
|
2
|
+
require "gitlab/ci/lint/arguments"
|
3
|
+
require "gitlab/ci/lint/configuration"
|
4
|
+
|
5
|
+
arguments = GitLab::CI::Lint::Arguments.new
|
6
|
+
options = arguments.command_line_parser()
|
7
|
+
|
8
|
+
configuration = GitLab::CI::Lint::Configuration.new
|
9
|
+
|
10
|
+
values = options["values"] ?
|
11
|
+
options["values"] : (configuration.values ?
|
12
|
+
configuration.values : "values.yml")
|
13
|
+
|
14
|
+
Gitlab::Ci::Lint.validate(values, configuration, options)
|
data/gitlab.gemspec
CHANGED
@@ -1,34 +1,34 @@
|
|
1
|
-
# -*- encoding: utf-8 -*-
|
2
|
-
lib = File.expand_path("../lib", __FILE__)
|
3
|
-
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
-
require "gitlab/ci/lint/version"
|
5
|
-
|
6
|
-
Gem::Specification.new do |spec|
|
7
|
-
spec.name = "gitlab-ci-lint"
|
8
|
-
spec.version = Gitlab::Ci::Lint::VERSION
|
9
|
-
spec.platform = Gem::Platform::RUBY
|
10
|
-
spec.authors = ["Lucca Pessoa da Silva Matos"]
|
11
|
-
spec.email = "luccapsm@gmail.com"
|
12
|
-
spec.summary = %q{Validate your gitlab-ci.yml file}
|
13
|
-
spec.description = "Gitlab CI Lint"
|
14
|
-
spec.homepage = "https://github.com/lpmatos/gitlab-ci-lint"
|
15
|
-
spec.metadata["homepage_uri"] = spec.homepage
|
16
|
-
spec.metadata["source_code_uri"] = spec.homepage
|
17
|
-
# Specify which files should be added to the gem when it is released.
|
18
|
-
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
19
|
-
all_files = `git ls-files`.split("\n")
|
20
|
-
test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
21
|
-
spec.files = all_files - test_files
|
22
|
-
spec.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
|
23
|
-
spec.bindir = "bin"
|
24
|
-
spec.require_paths = ["lib"]
|
25
|
-
spec.license = "MIT"
|
26
|
-
|
27
|
-
spec.add_dependency "httparty", "~> 0.18.0"
|
28
|
-
spec.add_dependency "OptionParser", "~> 0.5.1"
|
29
|
-
spec.add_dependency "yaml", "~> 0.1.0"
|
30
|
-
spec.add_dependency "colorize", "~> 0.8.1"
|
31
|
-
|
32
|
-
spec.add_development_dependency "pry"
|
33
|
-
spec.add_development_dependency "rspec", "~> 3.4"
|
34
|
-
end
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
lib = File.expand_path("../lib", __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require "gitlab/ci/lint/version"
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "gitlab-ci-lint"
|
8
|
+
spec.version = Gitlab::Ci::Lint::VERSION
|
9
|
+
spec.platform = Gem::Platform::RUBY
|
10
|
+
spec.authors = ["Lucca Pessoa da Silva Matos"]
|
11
|
+
spec.email = "luccapsm@gmail.com"
|
12
|
+
spec.summary = %q{Validate your gitlab-ci.yml file}
|
13
|
+
spec.description = "Gitlab CI Lint"
|
14
|
+
spec.homepage = "https://github.com/lpmatos/gitlab-ci-lint"
|
15
|
+
spec.metadata["homepage_uri"] = spec.homepage
|
16
|
+
spec.metadata["source_code_uri"] = spec.homepage
|
17
|
+
# Specify which files should be added to the gem when it is released.
|
18
|
+
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
19
|
+
all_files = `git ls-files`.split("\n")
|
20
|
+
test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
21
|
+
spec.files = all_files - test_files
|
22
|
+
spec.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
|
23
|
+
spec.bindir = "bin"
|
24
|
+
spec.require_paths = ["lib"]
|
25
|
+
spec.license = "MIT"
|
26
|
+
|
27
|
+
spec.add_dependency "httparty", "~> 0.18.0"
|
28
|
+
spec.add_dependency "OptionParser", "~> 0.5.1"
|
29
|
+
spec.add_dependency "yaml", "~> 0.1.0"
|
30
|
+
spec.add_dependency "colorize", "~> 0.8.1"
|
31
|
+
|
32
|
+
spec.add_development_dependency "pry"
|
33
|
+
spec.add_development_dependency "rspec", "~> 3.4"
|
34
|
+
end
|