italian-ruby 1.0.9 → 1.1.0

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: 51a6520f085fb61b764c49b3165d08e819c4353c8f104fe8535bbc71a0edb9aa
4
- data.tar.gz: da4aa857868709e3a014bbaa2238d491e0d3725799a29174cfe963794afbef7a
3
+ metadata.gz: 7ac31f37bc1a3d62b7ea7b50b42d4086d0cd088e4d4f8e21a5c930989647f187
4
+ data.tar.gz: a6e2aa124ec190aaf88b38546fb0cfd5d268c6702aca7ed7d5c36c2f90eb1adf
5
5
  SHA512:
6
- metadata.gz: eb51969d7f8e2115ff113d363ebf9d86cb951de4246896316ed1b73cbcbe0d56feaf603a3b7a95f6f83f40ce7b2f3900c2238679b1845f12d29ed14217da9646
7
- data.tar.gz: dbce4bb55387818e9a6ea1cea114ab078d9111cba3026475c70b922e62beaad4e6458be317bf0fc717b1639ad6acc116678ce950e3ff03de3b80dbc376ba0c21
6
+ metadata.gz: 28ea81387b4d34a2f1572b9354efada8f02d05c3f486da0fae41504ded1ebaf3b28341f8377e33d6b38aa797360d220fd87cdba61ef8589f562918da2c2d4a14
7
+ data.tar.gz: ebd549b3538607426f68449b0c96734a4b40ddb247e6f72b96ca0e256ca079bba066e5c3ef1f6b4a0ce5e1bd7729a0823c470c09376ba22d601cdbea471ad2da
@@ -0,0 +1,14 @@
1
+ require_relative "lib/italian/ruby/versione"
2
+ versione = Italian::Ruby::VERSIONE
3
+
4
+ comandi = [
5
+ "gem uninstall -Ix italian-ruby",
6
+ "rm pkg/*.gem",
7
+ "gem build italian-ruby.gemspec -o pkg/italian-ruby-#{versione}.gem",
8
+ "gem install pkg/italian-ruby-#{versione}.gem",
9
+ ]
10
+
11
+ comandi.each do |comando|
12
+ puts comando
13
+ %x{#{comando}}
14
+ end
@@ -19,6 +19,7 @@ require_relative "alias/numeric"
19
19
  require_relative "alias/object"
20
20
  require_relative "alias/open_struct"
21
21
  require_relative "alias/proc"
22
+ require_relative "alias/process"
22
23
  require_relative "alias/range"
23
24
  require_relative "alias/rational"
24
25
  require_relative "alias/regexp"
@@ -10,4 +10,6 @@ alias :blocco_dato? :block_given?
10
10
  alias :cattura :catch
11
11
  alias :lancia :throw
12
12
  alias :carica :load
13
+ alias :nuovo_processo :fork
14
+ alias :biforca :fork
13
15
  alias :Mappa :Hash
@@ -0,0 +1,13 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Process
4
+
5
+ class << self
6
+ alias :attendi :wait
7
+ alias :attendi_tutti :waitall
8
+ alias :segnala :kill
9
+ end
10
+
11
+ end
12
+
13
+ Processo = Process
@@ -1,5 +1,5 @@
1
1
  module Italian
2
2
  module Ruby
3
- VERSIONE = "1.0.9"
3
+ VERSIONE = "1.1.0"
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.0.9
4
+ version: 1.1.0
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-12-09 00:00:00.000000000 Z
11
+ date: 2020-12-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -73,6 +73,7 @@ files:
73
73
  - dev/vim/syntax/ir.vim
74
74
  - dev/vim/vimrc
75
75
  - dev/vscode/italianruby.tmGrammar.json
76
+ - install.rb
76
77
  - italian-ruby.gemspec
77
78
  - lib/italian/ruby.rb
78
79
  - lib/italian/ruby/alias.rb
@@ -95,6 +96,7 @@ files:
95
96
  - lib/italian/ruby/alias/object.rb
96
97
  - lib/italian/ruby/alias/open_struct.rb
97
98
  - lib/italian/ruby/alias/proc.rb
99
+ - lib/italian/ruby/alias/process.rb
98
100
  - lib/italian/ruby/alias/range.rb
99
101
  - lib/italian/ruby/alias/rational.rb
100
102
  - lib/italian/ruby/alias/regexp.rb