procemon 0.4.5 → 0.5.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,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
ZmQ4YzZlZTQ4NGI2OTNiYTQyMTc3ODU4ODA4YmQ2OTU0MjA1MGE0Zg==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
MjQ1ZGEzOGUwNjg4MTc5NzllYmU3ZDYyYTQxMjA5YmJkNWU0NGFmMQ==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
MDYxYWNjZDljN2EwNWExYjUxYjg3MjczNTdiZDkzMzVlZjRmZDhmOWU0YzBi
|
10
|
+
YTMyNjNkYTM2NWQ3Y2FkYjdkZTdlZDNmMmVlNzI4YzRiMzg2MDRkYTM1MmFk
|
11
|
+
MWYyYjBjNGQ5ODRjNTk1Y2ExMmEzNmY3N2ViMjhjZDU5MTllYjY=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
NzQ3MWU0ZWMwYzI5Yzc4MGRlNDEyODc1MTQ1MGUyYzJiZDA0YzYyYmYwYTFl
|
14
|
+
YzNiZTcxZjg1YjhlYjZlYWM3NTk2NmE3OGI0M2Y3M2JhY2ZjOGUyN2U4MWJj
|
15
|
+
M2FhMjQ0NjNiZDQ1ZGZlZTgwNTM4YjZlZTg5NzQxN2FiMWU0Zjk=
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.
|
1
|
+
0.5.0
|
@@ -27,6 +27,10 @@ proc_source= test.source
|
|
27
27
|
#
|
28
28
|
#}
|
29
29
|
|
30
|
+
puts Proc.new{|e| puts e }.source.body
|
31
|
+
|
32
|
+
Process.exit
|
33
|
+
|
30
34
|
# example for terminal run
|
31
35
|
puts method_source
|
32
36
|
puts method_source.body,"---------"
|
@@ -36,7 +40,9 @@ puts method_source.params.inspect,"---------"
|
|
36
40
|
|
37
41
|
puts "\n"
|
38
42
|
|
39
|
-
merged_proc= ( method_source.body +
|
43
|
+
merged_proc= ( method_source.body +
|
44
|
+
proc_source.body
|
45
|
+
).build(*(method_source.params+proc_source.params))
|
40
46
|
puts merged_proc
|
41
47
|
puts merged_proc.to_proc
|
42
48
|
puts merged_proc.to_proc.source
|