italian-ruby 1.4.3 → 1.4.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6066643e03846e38fabf4b05c338fb6877791fe2313482922733449f48de677f
4
- data.tar.gz: 23e1c6328c30a0290ea5e29c5d96551d15293665d69351841e1fd9815710524c
3
+ metadata.gz: 8201761ef830eb2f830fdcef288880b52347dfacd229bccf22ed54bbcdb38b2d
4
+ data.tar.gz: 8b53619d9859ffc5a55dcf227fdb9da6dbe160c804e1707e69392f419636fdef
5
5
  SHA512:
6
- metadata.gz: 65dc0ca01fa0c5f9b0b09bfeb87273e41cf6cc5d520ab8271f921649ede9d1efc0f468a799e43c0121263aa7bfb190f78d8482a4e8373e29d3fb9655ce521c2c
7
- data.tar.gz: a85212fca93c032705af1e0cb822a2a3883c260310bf367f78aa0bc7a0c1e17ab3fd4c970ffb68e3f3ce6d56bea1653b38c5684a83bd40f5d7234a93bbf7b085
6
+ metadata.gz: c5eed30b380d9d3b42b2a88761fad7218bb49f6f0019c8aa0f380165ecd68c186f29e8a9f614a77b6d772b27903a1a47bec67287aad7d3e41aff712a211c3c74
7
+ data.tar.gz: 8031a60c7ce2b47124ef98ed45ededd6626aa6705e97bdb7e888ae582d2b52b1409e69d9377d55f1213cd8295e120a2cb424f8bfc7b21a590882f8d5a8885fcd
@@ -3,6 +3,7 @@
3
3
  module Kernel
4
4
 
5
5
  alias :classe :class
6
+ alias :contesto :binding
6
7
  alias :traccia_chiamante :caller_locations
7
8
  alias :variabili_istanza :instance_variables
8
9
  alias :ottieni_variabile_istanza :instance_variable_get
@@ -0,0 +1,14 @@
1
+ # frozen_string_literal: true
2
+
3
+ class Thread
4
+
5
+ class Backtrace
6
+
7
+ class Location
8
+
9
+ alias :percorso :absolute_path
10
+ alias :riga :lineno
11
+
12
+ end
13
+ end
14
+ end
@@ -29,4 +29,5 @@ require_relative "alias/set"
29
29
  require_relative "alias/symbol"
30
30
  require_relative "alias/string"
31
31
  require_relative "alias/time"
32
+ require_relative "alias/thread"
32
33
  require_relative "alias/true_class"
@@ -1,5 +1,5 @@
1
1
  module Italian
2
2
  module Ruby
3
- VERSIONE = "1.4.3"
3
+ VERSIONE = "1.4.4"
4
4
  end
5
5
  end
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: 1.4.3
4
+ version: 1.4.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Francesco Ballardin
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-10-08 00:00:00.000000000 Z
11
+ date: 2021-10-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -107,6 +107,7 @@ files:
107
107
  - lib/italian/ruby/alias/socket.rb
108
108
  - lib/italian/ruby/alias/string.rb
109
109
  - lib/italian/ruby/alias/symbol.rb
110
+ - lib/italian/ruby/alias/thread.rb
110
111
  - lib/italian/ruby/alias/time.rb
111
112
  - lib/italian/ruby/alias/true_class.rb
112
113
  - lib/italian/ruby/errori.rb