iris-rb 0.1.11 → 0.1.12
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/iris/azione.ir +9 -0
- data/lib/iris/versione.ir +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 455e6350bab6bb2357f9cb6ebf58dcb27abffcf82ef6a517ef0a86c156e9ed80
|
|
4
|
+
data.tar.gz: ac9869a545cc9f6207b1c24115f56e714341fa54baadd588c2fb157258af36ba
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9fe1a3558cb7b687f416433bd8cd300a0acac1d6feb67a8b0cad5849a36feecf799d6b8e67ae79d6228a9b484c3d683f609bb9495d512cd1ff14a5c29af4f5b1
|
|
7
|
+
data.tar.gz: d449a511617e8e27312424c5154aeac7bf615d2272736e77ce4acf69b07d95fd6f2004f44b55ae5323dc04b2013c201a87c20580ab47870e9d767f72c0a69377
|
data/lib/iris/azione.ir
CHANGED
|
@@ -69,6 +69,7 @@ modulo Iris
|
|
|
69
69
|
|
|
70
70
|
@corpo = @corpo.in_json se @corpo.risponde_a? :in_json
|
|
71
71
|
@intestazioni.deposita "Content-Length", @corpo.bytesize.to_s
|
|
72
|
+
dopo
|
|
72
73
|
|
|
73
74
|
[ @stato, @intestazioni, [ @corpo ] ]
|
|
74
75
|
fine
|
|
@@ -92,6 +93,14 @@ modulo Iris
|
|
|
92
93
|
rilascia se blocco_dato?
|
|
93
94
|
fine
|
|
94
95
|
|
|
96
|
+
##
|
|
97
|
+
# Aggiunge un aggancio per eseguire codice dopo
|
|
98
|
+
# dell'azione effettiva. A questo punto sono già definiti
|
|
99
|
+
# stato, intestazioni e corpo della risposta.
|
|
100
|
+
definisci dopo
|
|
101
|
+
rilascia se blocco_dato?
|
|
102
|
+
fine
|
|
103
|
+
|
|
95
104
|
##
|
|
96
105
|
# Metodo di utilità per accedere ai parametri della richiesta.
|
|
97
106
|
definisci parametri
|
data/lib/iris/versione.ir
CHANGED