mumukit-inspection 3.1.0 → 3.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/lib/locales/en.yml +1 -0
- data/lib/locales/es.yml +7 -6
- data/lib/locales/pt.yml +159 -0
- data/lib/mumukit/inspection/expectation.rb +1 -1
- data/lib/mumukit/inspection/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 517372a78caac763f7a6c85b4f4e88a66cc2ad53ec7a63133926ddff49d89d68
|
4
|
+
data.tar.gz: ca94b5371df989d22a42dd61c152668a6d22bb2cff97963e68adfc1e8fd68646
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a570fc4769c59cc3d5faa8513f12d2af46b3f102a4617a21c73afe728015673a0991712953b4856dc99d8536c5196fba8d20dd05fcf865f11469ffbe978b1b21
|
7
|
+
data.tar.gz: 1f89916a5fff8620a0401bc2648ae401fd6e20864adfab97319772a7982502cd0cbb2415a6d57c672337fe77faf94ca415cced7c6c8c2d8ea9c668ea2b7b43ca
|
data/lib/locales/en.yml
CHANGED
@@ -76,6 +76,7 @@ en:
|
|
76
76
|
expectation_DoesTypeTest: '%{binding} string type tests'
|
77
77
|
expectation_HasAssignmentReturn: '%{binding} returns the result of an assignment'
|
78
78
|
expectation_HasCodeDuplication: '%{binding} has code duplication'
|
79
|
+
expectation_HasEmptyIfBranches: '%{binding} has empty if branches'
|
79
80
|
expectation_HasMisspelledBindings: '%{binding} is misspelled'
|
80
81
|
expectation_HasRedundantBooleanComparison: '%{binding} makes unnecesary boolean comparisons'
|
81
82
|
expectation_HasRedundantGuards: '%{binding} has unnecessary guards'
|
data/lib/locales/es.yml
CHANGED
@@ -86,10 +86,11 @@ es:
|
|
86
86
|
expectation_DeclaresVariable_named: '%{binding} %{must} declarar una variable %{target}'
|
87
87
|
expectation_DiscardsExceptions: '%{binding} está ignorando exceptiones silenciosamiente.'
|
88
88
|
expectation_DoesConsolePrint: '%{binding} está realizando impresiones por pantalla.'
|
89
|
-
expectation_DoesNullTest: '%{binding} hace comparaciones contra null'
|
89
|
+
expectation_DoesNullTest: '%{binding} hace comparaciones contra <i>null</i>'
|
90
90
|
expectation_DoesTypeTest: '%{binding} hace comparaciones contra strings'
|
91
91
|
expectation_HasAssignmentReturn: '%{binding} devuelve el resultado de una asignación'
|
92
92
|
expectation_HasCodeDuplication: '%{binding} tiene código repetido'
|
93
|
+
expectation_HasEmptyIfBranches: '%{binding} tiene ramas de <i>if</i> vacías'
|
93
94
|
expectation_HasMisspelledBindings: '%{binding} está mal escrito. Revisá la ortografía y procurá no usar abreviaturas'
|
94
95
|
expectation_HasMisspelledIdentifiers: '%{binding} está mal escrito. Revisá la ortografía y procurá no usar abreviaturas'
|
95
96
|
expectation_HasRedundantBooleanComparison: '%{binding} hace comparaciones booleanas innecesarias'
|
@@ -140,18 +141,18 @@ es:
|
|
140
141
|
expectation_UsesExceptionHandling: '%{binding} %{must} realizar manejo de exceptiones'
|
141
142
|
expectation_UsesExceptions: '%{binding} %{must} usar exceptiones'
|
142
143
|
expectation_UsesFail: '%{binding} usa <i>fail</li>, lo cual es una mala práctica'
|
143
|
-
expectation_UsesFindall: '%{binding} %{must} utilizar findall'
|
144
|
-
expectation_UsesForall: '%{binding} %{must} utilizar forall'
|
144
|
+
expectation_UsesFindall: '%{binding} %{must} utilizar <i>findall</i>'
|
145
|
+
expectation_UsesForall: '%{binding} %{must} utilizar <i>forall</i>'
|
145
146
|
expectation_UsesForeach: '%{binding} %{must} usar <i>foreach</i>'
|
146
147
|
expectation_UsesGuards: '%{binding} %{must} usar guardas'
|
147
|
-
expectation_UsesIf: '%{binding} %{must} usar if'
|
148
|
+
expectation_UsesIf: '%{binding} %{must} usar <i>if</i>'
|
148
149
|
expectation_UsesInheritance: '%{binding} %{must} usar herencia'
|
149
150
|
expectation_UsesLambda: '%{binding} %{must} emplear expresiones lambda'
|
150
151
|
expectation_UsesMixins: '%{binding} %{must} usar mixins'
|
151
|
-
expectation_UsesNot: '%{binding} %{must} utilizar not'
|
152
|
+
expectation_UsesNot: '%{binding} %{must} utilizar <i>not</i>'
|
152
153
|
expectation_UsesPatternMatching: '%{binding} %{must} utilizar pattern matching'
|
153
154
|
expectation_UsesRepeat: '%{binding} %{must} usar <i>repeat</i>'
|
154
155
|
expectation_UsesRepeatOf: '%{binding} %{must} usar un <i>repeat</i> de %{target}'
|
155
|
-
expectation_UsesSwitch: '%{binding} %{must} utilizar un switch'
|
156
|
+
expectation_UsesSwitch: '%{binding} %{must} utilizar un <i>switch</i>'
|
156
157
|
expectation_UsesUnificationOperator: '%{binding} usa el operador de unificación (=)'
|
157
158
|
expectation_UsesWhile: '%{binding} %{must} utilizar un <i>while</i>'
|
data/lib/locales/pt.yml
ADDED
@@ -0,0 +1,159 @@
|
|
1
|
+
---
|
2
|
+
pt:
|
3
|
+
expectation_Assigns: '%{binding} %{must} fazer atribuições'
|
4
|
+
expectation_Assigns_except: '%{binding} %{must} atribuir algo diferente a %{target}'
|
5
|
+
expectation_Assigns_like: '%{binding} %{must} atribuir algo semelhante ao %{target}'
|
6
|
+
expectation_Assigns_named: '%{binding} %{must} atribuir %{target}'
|
7
|
+
expectation_Calls: '%{binding} %{must} delegate'
|
8
|
+
expectation_Calls_except: '%{binding} %{must} delegar algo diferente para %{target}'
|
9
|
+
expectation_Calls_like: '%{binding} %{must} delegar algo semelhante ao %{target}'
|
10
|
+
expectation_Calls_named: '%{binding} %{must} usar %{target}'
|
11
|
+
expectation_Declares: '%{binding} %{must} contém declarações'
|
12
|
+
expectation_Declares_except: '%{binding} %{must} contém instruções diferentes de %{target}'
|
13
|
+
expectation_Declares_like: '%{binding} %{must} declarar um identificador semelhante a %{target}'
|
14
|
+
expectation_Declares_named: '%{binding} %{must} declarar %{target}'
|
15
|
+
expectation_DeclaresAttribute: '%{binding} %{must} declarar atributos'
|
16
|
+
expectation_DeclaresAttribute_except: '%{binding} %{must} declarar atributos diferentes de %{target}'
|
17
|
+
expectation_DeclaresAttribute_like: '%{binding} %{must} declarar um atributo semelhante a %{target}'
|
18
|
+
expectation_DeclaresAttribute_named: '%{binding} %{must} declarar um atributo %{target}'
|
19
|
+
expectation_DeclaresClass: '%{binding} %{must} declarar classes'
|
20
|
+
expectation_DeclaresClass_except: '%{binding} %{must} declarar classes diferentes para %{target}'
|
21
|
+
expectation_DeclaresClass_like: '%{binding} %{must} declarar uma classe semelhante a %{target}'
|
22
|
+
expectation_DeclaresClass_named: '%{binding} %{must} declarar uma classe %{target}'
|
23
|
+
expectation_DeclaresComputation: '%{binding} %{must} declarar cálculos'
|
24
|
+
expectation_DeclaresComputation_except: '%{binding} %{must} declarar cálculos diferentes de %{target}'
|
25
|
+
expectation_DeclaresComputation_like: '%{binding} %{must} declarar uma computação semelhante a %{target}'
|
26
|
+
expectation_DeclaresComputation_named: '%{binding} %{must} declarar uma computação %{target}'
|
27
|
+
expectation_HasEmptyIfBranches: '%{binding} tem vazio <i>if</i> ramos'
|
28
|
+
expectation_DeclaresComputationWithArity0_named: '%{target} %{must} declarar parâmetros zero'
|
29
|
+
expectation_DeclaresComputationWithArity1_named: '%{target} %{must} tem um parâmetro'
|
30
|
+
expectation_DeclaresComputationWithArity2_named: '%{target} %{must} tem dois parâmetros'
|
31
|
+
expectation_DeclaresComputationWithArity3_named: '%{target} %{must} tem três parâmetros'
|
32
|
+
expectation_DeclaresComputationWithArity4_named: '%{target} %{must} tem quatro parâmetros'
|
33
|
+
expectation_DeclaresComputationWithArity5_named: '%{target} %{must} tem cinco parâmetros'
|
34
|
+
expectation_DeclaresEntryPoint: '%{binding} %{must} declarar um ponto de entrada'
|
35
|
+
expectation_DeclaresEnumeration: '%{binding} %{must} declarar enumerações'
|
36
|
+
expectation_DeclaresEnumeration_except: '%{binding} %{must} declarar enumerações que não são chamadas %{target}'
|
37
|
+
expectation_DeclaresEnumeration_like: '%{binding} %{must} declarar uma enumeração de nome semelhante a %{target}'
|
38
|
+
expectation_DeclaresEnumeration_named: '%{binding} %{must} declarar uma enumeração %{target}'
|
39
|
+
expectation_DeclaresFact: '%{binding} %{must} declarar fatos'
|
40
|
+
expectation_DeclaresFact_except: '%{binding} %{must} declarar fatos diferentes de %{target}'
|
41
|
+
expectation_DeclaresFact_like: '%{binding} %{must} declarar um fato semelhante a %{target}'
|
42
|
+
expectation_DeclaresFact_named: '%{binding} %{must} declarar um fato %{target}'
|
43
|
+
expectation_DeclaresFunction: '%{binding} %{must} deve declarar funções'
|
44
|
+
expectation_DeclaresFunction_except: '%{binding} %{must} declarar funções diferentes de %{target}'
|
45
|
+
expectation_DeclaresFunction_like: '%{binding} %{must} declarar uma função semelhante a %{target}'
|
46
|
+
expectation_DeclaresFunction_named: '%{binding} %{must} declarar uma função %{target}'
|
47
|
+
expectation_DeclaresInterface: '%{binding} %{must} declarar interfaces'
|
48
|
+
expectation_DeclaresInterface_except: '%{binding} %{must} declarar interfaces que não são chamadas %{target}'
|
49
|
+
expectation_DeclaresInterface_like: '%{binding} %{must} declarar uma interface de nome semelhante a %{target}'
|
50
|
+
expectation_DeclaresInterface_named: '%{binding} %{must} declarar uma interface %{target}'
|
51
|
+
expectation_DeclaresMethod: '%{binding} %{must} declarar métodos'
|
52
|
+
expectation_DeclaresMethod_except: '%{binding} %{must} declarar métodos diferentes de %{target}'
|
53
|
+
expectation_DeclaresMethod_like: '%{binding} %{must} declarar um método semelhante a %{target}'
|
54
|
+
expectation_DeclaresMethod_named: '%{binding} %{must} declarar um método %{target}'
|
55
|
+
expectation_DeclaresObject: '%{binding} %{must} declarar objetos'
|
56
|
+
expectation_DeclaresObject_except: '%{binding} %{must} declarar objetos diferentes de %{target}'
|
57
|
+
expectation_DeclaresObject_like: '%{binding} %{must} declarar um objeto semelhante a %{target}'
|
58
|
+
expectation_DeclaresObject_named: '%{binding} %{must} declarar um objeto %{target}'
|
59
|
+
expectation_DeclaresPredicate: '%{binding} %{must} declarar predicados'
|
60
|
+
expectation_DeclaresPredicate_except: '%{binding} %{must} declarar predicados diferentes para %{target}'
|
61
|
+
expectation_DeclaresPredicate_like: '%{binding} %{must} declarar um predicado semelhante ao %{target}'
|
62
|
+
expectation_DeclaresPredicate_named: '%{binding} %{must} declarar um predicado %{target}'
|
63
|
+
expectation_DeclaresProcedure: '%{binding} %{must} declarar procedimentos'
|
64
|
+
expectation_DeclaresProcedure_except: '%{binding} %{must} declarar procedimentos diferentes de %{target}'
|
65
|
+
expectation_DeclaresProcedure_like: '%{binding} %{must} declarar um procedimento semelhante a %{target}'
|
66
|
+
expectation_DeclaresProcedure_named: '%{binding} %{must} declarar um procedimento %{target}'
|
67
|
+
expectation_DeclaresRecursively_named: '%{target} %{must} deve ser declarado recursivamente'
|
68
|
+
expectation_DeclaresRule: '%{binding} %{must} deve declarar regras'
|
69
|
+
expectation_DeclaresRule_except: '%{binding} %{must} declarar regras diferentes de %{target}'
|
70
|
+
expectation_DeclaresRule_like: '%{binding} %{must} declarar uma regra semelhante a %{target}'
|
71
|
+
expectation_DeclaresRule_named: '%{binding} %{must} declarar uma regra %{target}'
|
72
|
+
expectation_DeclaresSuperclass: '%{binding} %{must} declarar uma superclasse'
|
73
|
+
expectation_DeclaresSuperclass_except: '%{binding} %{must} declarar uma superclasse diferente de %{target}'
|
74
|
+
expectation_DeclaresSuperclass_like: '%{binding} %{must} declarar uma superclasse semelhante a %{target}'
|
75
|
+
expectation_DeclaresSuperclass_named: '%{binding} %{must} declarar uma superclasse %{target}'
|
76
|
+
expectation_DeclaresTypeAlias: '%{binding} %{must} declarar o tipo de sinônimos'
|
77
|
+
expectation_DeclaresTypeAlias_except: '%{binding} %{must} declarar sinônimos de tipo diferente de %{target}'
|
78
|
+
expectation_DeclaresTypeAlias_like: '%{binding} %{must} declarar um sinônimo de tipo similar a %{target}'
|
79
|
+
expectation_DeclaresTypeAlias_named: '%{binding} %{must} declarar um sinônimo do tipo %{target}'
|
80
|
+
expectation_DeclaresTypeSignature: '%{binding} %{must} excluir assinaturas de tipo'
|
81
|
+
expectation_DeclaresTypeSignature_except: '%{binding} %{must} declarar assinaturas de tipos diferentes de %{target}'
|
82
|
+
expectation_DeclaresTypeSignature_like: '%{binding} %{must} declarar uma assinatura para algo semelhante %{target}'
|
83
|
+
expectation_DeclaresTypeSignature_named: '%{binding} %{must} declarar uma assinatura %{target}'
|
84
|
+
expectation_DeclaresVariable: '%{binding} %{must} deve declarar variáveis'
|
85
|
+
expectation_DeclaresVariable_except: '%{binding} %{must} declarar variáveis diferentes de %{target}'
|
86
|
+
expectation_DeclaresVariable_like: '%{binding} %{must} declarar uma variável semelhante a %{target}'
|
87
|
+
expectation_DeclaresVariable_named: '%{binding} %{must} declarar uma variável %{target}'
|
88
|
+
expectation_DiscardsExceptions: '%{binding} está silenciosamente ignorando exceções.'
|
89
|
+
expectation_DoesConsolePrint: '%{binding} está fazendo impressões na tela.'
|
90
|
+
expectation_DoesNullTest: '%{binding} faz comparações contra <i>null</i>'
|
91
|
+
expectation_DoesTypeTest: '%{binding} faz comparações contra strings'
|
92
|
+
expectation_HasAssignmentReturn: '%{binding} retorna o resultado de uma tarefa'
|
93
|
+
expectation_HasCodeDuplication: '%{binding} tem código repetido'
|
94
|
+
expectation_HasMisspelledBindings: '%{binding} está incorreto. Verifique a ortografia e tente não usar abreviaturas'
|
95
|
+
expectation_HasMisspelledIdentifiers: '%{binding} está incorreto. Verifique a ortografia e tente não usar abreviaturas'
|
96
|
+
expectation_HasRedundantBooleanComparison: '%{binding} faz comparações booleanas desnecessárias'
|
97
|
+
expectation_HasRedundantGuards: '%{binding} possui protetores desnecessários'
|
98
|
+
expectation_HasRedundantIf: '%{binding} tem desnecessário ifs'
|
99
|
+
expectation_HasRedundantLambda: '%{binding} possui lambdas desnecessários'
|
100
|
+
expectation_HasRedundantLocalVariableReturn: '%{binding} usa variáveis locais desnecessárias; você pode retornar a expressão diretamente'
|
101
|
+
expectation_HasRedundantParameter: '%{binding} possui parâmetros desnecessários (pode ser removido por ponto-livre)'
|
102
|
+
expectation_HasRedundantReduction: '%{binding} usa <i>is</i>, mas não executa cálculos.'
|
103
|
+
expectation_HasTooShortBindings: '%{binding} é um identificador muito curto'
|
104
|
+
expectation_HasTooShortIdentifiers: '%{binding} é um identificador muito curto'
|
105
|
+
expectation_HasWrongCaseBindings: '%{binding} não respeita a convenção de nomenclatura'
|
106
|
+
expectation_HasWrongCaseIdentifiers: '%{binding} não respeita a convenção de nomenclatura'
|
107
|
+
expectation_Implements: '%{binding} %{must} implementar interfaces'
|
108
|
+
expectation_Implements_except: '%{binding} %{must} implementar interfaces diferentes de %{target}'
|
109
|
+
expectation_Implements_like: '%{binding} %{must} implementar interfaces semelhantes a %{target}'
|
110
|
+
expectation_Implements_named: '%{binding} %{must} implementar %{target}'
|
111
|
+
expectation_Inherits: '%{binding} %{must} declarar uma superclasse'
|
112
|
+
expectation_Inherits_except: '%{binding} %{must} declarar uma superclasse diferente de %{target}'
|
113
|
+
expectation_Inherits_like: '%{binding} %{must} declarar uma superclasse semelhante a %{target}'
|
114
|
+
expectation_Inherits_named: '%{binding} %{must} declarar uma superclasse %{target}'
|
115
|
+
expectation_Instantiates: '%{binding} %{must} instanciar objetos'
|
116
|
+
expectation_Instantiates_except: '%{binding} %{must} instanciar classes diferentes de %{target}'
|
117
|
+
expectation_Instantiates_like: '%{binding} %{must} instanciar classes semelhantes a %{target}'
|
118
|
+
expectation_Instantiates_named: '%{binding} %{must} instantiate %{target}'
|
119
|
+
expectation_IsLongCode: '%{binding} é muito longo. Tente delegar mais'
|
120
|
+
expectation_must: 'deve'
|
121
|
+
expectation_must_not: 'não deve'
|
122
|
+
expectation_Raises: '%{binding} %{must} lançar exceções'
|
123
|
+
expectation_Raises_except: '%{binding} %{must} lançar exceções diferentes de %{target}'
|
124
|
+
expectation_Raises_like: '%{binding} %{must} lançar exceções semelhantes a %{target}'
|
125
|
+
expectation_Raises_named: '%{binding} %{must} launch %{target}'
|
126
|
+
expectation_Rescues: '%{binding} %{must} capturar exceções'
|
127
|
+
expectation_Rescues_except: '%{binding} %{must} capturar exceções que não sejam %{target}'
|
128
|
+
expectation_Rescues_like: '%{binding} %{must} capturar exceções semelhantes a %{target}'
|
129
|
+
expectation_Rescues_named: '%{binding} %{must} capture %{target}'
|
130
|
+
expectation_ReturnsNull: '%{binding} retorna nulo, o que é uma prática ruim'
|
131
|
+
expectation_solution: 'a solução'
|
132
|
+
expectation_Uses: '%{binding} %{must} delegate'
|
133
|
+
expectation_Uses_except: '%{binding} %{must} delegar algo diferente para %{target}'
|
134
|
+
expectation_Uses_like: '%{binding} %{must} delegar algo semelhante ao %{target}'
|
135
|
+
expectation_Uses_named: '%{binding} %{must} usar %{target}'
|
136
|
+
expectation_UsesAnonymousVariable: '%{binding} %{must} usar uma variável anônima'
|
137
|
+
expectation_UsesComposition: '%{binding} %{must} usar a composição'
|
138
|
+
expectation_UsesComprehension: '%{binding} %{must} usar listas pelo entendimento'
|
139
|
+
expectation_UsesConditional: '%{binding} %{must} usar conditional'
|
140
|
+
expectation_UsesCut: '%{binding} usa o operador !, que é uma má prática'
|
141
|
+
expectation_UsesExceptionHandling: '%{binding} %{must} executar o tratamento de exceção'
|
142
|
+
expectation_UsesExceptions: '%{binding} %{must} usar exceções'
|
143
|
+
expectation_UsesFail: '%{binding} usa <i>fail</li>, o que é uma prática ruim'
|
144
|
+
expectation_UsesFindall: '%{binding} %{must} usar <i>findall</i>'
|
145
|
+
expectation_UsesForall: '%{binding} %{must} usar <i>forall</i>'
|
146
|
+
expectation_UsesForeach: '%{binding} %{must} usar <i>foreach</i>'
|
147
|
+
expectation_UsesGuards: '%{binding} %{must} usar guardas'
|
148
|
+
expectation_UsesIf: '%{binding} %{must} usar <i>if</i>'
|
149
|
+
expectation_UsesInheritance: '%{binding} %{must} usar herança'
|
150
|
+
expectation_UsesLambda: '%{binding} %{must} usar expressões lambda'
|
151
|
+
expectation_UsesMixins: '%{binding} %{must} usar mixins'
|
152
|
+
expectation_UsesNot: '%{binding} %{must} usar <i>not</i>'
|
153
|
+
expectation_UsesPatternMatching: '%{binding} %{must} usar o padrão de correspondência'
|
154
|
+
expectation_UsesRepeat: '%{binding} %{must} usar <i>repeat</i>'
|
155
|
+
expectation_UsesRepeatOf: '%{binding} %{must} usar uma <i>repeat</i> de %{target}'
|
156
|
+
expectation_UsesSwitch: '%{binding} %{must} usar um switch'
|
157
|
+
expectation_UsesUnificationOperator: '%{binding} usa o operador de unificação (=)'
|
158
|
+
expectation_UsesWhile: '%{binding} %{must} usar um <i>while</i>'
|
159
|
+
|
@@ -1,6 +1,6 @@
|
|
1
1
|
class Mumukit::Inspection::Expectation
|
2
2
|
|
3
|
-
SMELLS = %w(HasAssignmentReturn HasCodeDuplication HasMisspelledIdentifiers
|
3
|
+
SMELLS = %w(HasAssignmentReturn HasCodeDuplication HasEmptyIfBranches HasMisspelledIdentifiers
|
4
4
|
HasRedundantBooleanComparison HasRedundantGuards HasRedundantIf
|
5
5
|
HasRedundantLambda HasRedundantLocalVariableReturn HasRedundantParameter
|
6
6
|
HasRedundantReduction HasTooShortIdentifiers HasWrongCaseIdentifiers)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mumukit-inspection
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.
|
4
|
+
version: 3.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Franco Leonardo Bulgarelli
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2018-03-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: mumukit-core
|
@@ -95,6 +95,7 @@ extra_rdoc_files: []
|
|
95
95
|
files:
|
96
96
|
- lib/locales/en.yml
|
97
97
|
- lib/locales/es.yml
|
98
|
+
- lib/locales/pt.yml
|
98
99
|
- lib/mumukit/inspection.rb
|
99
100
|
- lib/mumukit/inspection/expectation.rb
|
100
101
|
- lib/mumukit/inspection/i18n.rb
|
@@ -120,7 +121,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
120
121
|
version: '0'
|
121
122
|
requirements: []
|
122
123
|
rubyforge_project:
|
123
|
-
rubygems_version: 2.6
|
124
|
+
rubygems_version: 2.7.6
|
124
125
|
signing_key:
|
125
126
|
specification_version: 4
|
126
127
|
summary: Minimal library for parsing Mumuki inspection language
|