italian-ruby 0.1.4 → 0.1.5
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/lib/italian/ruby/core_ext.rb +3 -0
- data/lib/italian/ruby/core_ext/date.rb +12 -0
- data/lib/italian/ruby/core_ext/main.rb +3 -0
- data/lib/italian/ruby/core_ext/string.rb +4 -2
- data/lib/italian/ruby/core_ext/symbol.rb +10 -0
- data/lib/italian/ruby/core_ext/time.rb +14 -0
- data/lib/italian/ruby/version.rb +1 -1
- data/vscode/italianruby.tmGrammar.json +1 -1
- metadata +5 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 17b6c040813891ed1270aa1cfafdce42d174b325aaa6905f1acf8ad39f4f5fea
|
|
4
|
+
data.tar.gz: 82c9646e0118ce5520f8cb2a8a1480fbf6e2cb5b6d8407971d76aa45cb0a892b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 58200c92907a0e9b150752dfede84191af612b87b5c5dc9f9137214f1e55d7afa29a0190d1cfc90896f588da213aa20fa128a995a2b6342544943b21deba02be
|
|
7
|
+
data.tar.gz: b6d56eeadc4a2fe7505ea0f240d1a789ee0c9abb137e216d1ccbf83ca2483419c099ddef5c18d67b2fdfd97c906ad2f289fae2ac0ad0a146adfbdb506dbcd952
|
|
@@ -13,7 +13,10 @@ require_relative "core_ext/object"
|
|
|
13
13
|
require_relative "core_ext/array"
|
|
14
14
|
require_relative "core_ext/hash"
|
|
15
15
|
require_relative "core_ext/string"
|
|
16
|
+
require_relative "core_ext/symbol"
|
|
16
17
|
require_relative "core_ext/integer"
|
|
17
18
|
require_relative "core_ext/enumerator"
|
|
19
|
+
require_relative "core_ext/time"
|
|
20
|
+
require_relative "core_ext/date"
|
|
18
21
|
|
|
19
22
|
$VERBOSE = original_verbosity
|
data/lib/italian/ruby/version.rb
CHANGED
|
@@ -293,7 +293,7 @@
|
|
|
293
293
|
},
|
|
294
294
|
{
|
|
295
295
|
"comment": " everything being a method but having a special function is a..",
|
|
296
|
-
"match": "\\b(inizializzatore|nuovo|nuova|cicla|includi|estendi|preponi|fallisci|alza|accessore|accessore_di_classe|attr_reader|attr_writer|attr_accessor|attr|
|
|
296
|
+
"match": "\\b(inizializzatore|nuovo|nuova|cicla|includi|estendi|preponi|fallisci|alza|accessore|accessore_di_classe|attr_reader|attr_writer|attr_accessor|attr|cattura|lancia|privati|private_class_method|module_function|pubblici|public_class_method|protetti|refine|using)\\b(?![?!])",
|
|
297
297
|
"name": "keyword.other.special-method.ruby"
|
|
298
298
|
},
|
|
299
299
|
{
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: italian-ruby
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Francesco Ballardin
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-03-
|
|
11
|
+
date: 2020-03-31 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: ruby2ruby
|
|
@@ -89,6 +89,7 @@ files:
|
|
|
89
89
|
- lib/italian/ruby/core_ext.rb
|
|
90
90
|
- lib/italian/ruby/core_ext/array.rb
|
|
91
91
|
- lib/italian/ruby/core_ext/class.rb
|
|
92
|
+
- lib/italian/ruby/core_ext/date.rb
|
|
92
93
|
- lib/italian/ruby/core_ext/enumerator.rb
|
|
93
94
|
- lib/italian/ruby/core_ext/file.rb
|
|
94
95
|
- lib/italian/ruby/core_ext/gems/fabrication.rb
|
|
@@ -103,6 +104,8 @@ files:
|
|
|
103
104
|
- lib/italian/ruby/core_ext/nil_class.rb
|
|
104
105
|
- lib/italian/ruby/core_ext/object.rb
|
|
105
106
|
- lib/italian/ruby/core_ext/string.rb
|
|
107
|
+
- lib/italian/ruby/core_ext/symbol.rb
|
|
108
|
+
- lib/italian/ruby/core_ext/time.rb
|
|
106
109
|
- lib/italian/ruby/richiedi_test.ir
|
|
107
110
|
- lib/italian/ruby/ruby_parser_patches.rb
|
|
108
111
|
- lib/italian/ruby/traduttore.rb
|