riddl 0.122 → 0.123
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/examples/simulate/test.rb +10 -0
- data/lib/ruby/riddl/protocols/http/generator.rb +1 -1
- data/riddl.gemspec +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3e4a40c0d155ed607850d31b7f38afc6347619b59957c12702032c4c8efacb7a
|
4
|
+
data.tar.gz: 5c73d3e493203b67d1ddf127ad9a75905eed7443192bc964caf9eb216c1a1565
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 24ca973808cca46a49030f2951d7ed086ed264ed74c2ba2fe2fb5a65c4e7d46883cfbbb3ff2216f5a3a1221b782ed5294322bf3db842dce34b42a325779d3d22
|
7
|
+
data.tar.gz: 3a5ec7eb852d8047331e4126de08981193efae5a43fc5d808927ba3ca9124276e6326ae7c9f8707df1307c6b524bceac798ad8132bcd43a3e8eb72ef75ff6510
|
@@ -0,0 +1,10 @@
|
|
1
|
+
#!/usr/bin/ruby
|
2
|
+
require '../../lib/ruby/riddl/client'
|
3
|
+
|
4
|
+
client = Riddl::Client.new('http://cpee.org')
|
5
|
+
puts client.simulate_put([
|
6
|
+
Riddl::Parameter::Simple::new('type','a'),
|
7
|
+
Riddl::Parameter::Simple::new('topic','b'),
|
8
|
+
Riddl::Parameter::Simple::new('event','c'),
|
9
|
+
Riddl::Parameter::Complex::new('notification','application/json',"15")
|
10
|
+
]).read
|
@@ -95,7 +95,7 @@ module Riddl
|
|
95
95
|
tmp.write '--' + BOUNDARY + EOL
|
96
96
|
tmp.write 'RIDDL-TYPE: complex' + EOL
|
97
97
|
tmp.write "Content-Disposition: #{mode == :input ? 'form-data' : 'riddl-data'}; name=\"#{r.name}\""
|
98
|
-
tmp.write r.filename.nil? ? '; filename=""' : "; filename=\"#{r.filename}\"" + EOL
|
98
|
+
tmp.write r.filename.nil? ? '; filename=""' + EOL : "; filename=\"#{r.filename}\"" + EOL
|
99
99
|
tmp.write 'Content-Transfer-Encoding: binary' + EOL
|
100
100
|
tmp.write 'Content-Type: ' + r.mimetype + r.mimextra + EOL
|
101
101
|
tmp.write EOL
|
data/riddl.gemspec
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: riddl
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: '0.
|
4
|
+
version: '0.123'
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Juergen 'eTM' Mangler
|
@@ -405,6 +405,7 @@ files:
|
|
405
405
|
- examples/propnew/server.properties.schema
|
406
406
|
- examples/propnew/server.properties.xml
|
407
407
|
- examples/propnew/test
|
408
|
+
- examples/simulate/test.rb
|
408
409
|
- examples/sse/description.xml
|
409
410
|
- examples/sse/sample.html
|
410
411
|
- examples/sse/server.rb
|