riddl 0.122 → 0.123

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: 75fec6d0144b07c49d0dd3f8eaf5a1479cf1c58203004be9b683382b80f2d6eb
4
- data.tar.gz: 5968e301387da3c302025e46e24b925637c4d5b781bd157d8f32a2ef60e28c84
3
+ metadata.gz: 3e4a40c0d155ed607850d31b7f38afc6347619b59957c12702032c4c8efacb7a
4
+ data.tar.gz: 5c73d3e493203b67d1ddf127ad9a75905eed7443192bc964caf9eb216c1a1565
5
5
  SHA512:
6
- metadata.gz: 4c0a833780ed1a15f41449a2c2f32f2e382461557df450711b41b173b56358d3199ba5ac7dd71c80f375d4571acec7824727469b1d45af97bdc5cd1192fe2e76
7
- data.tar.gz: 106ea5c867914b5404e7a5f336c7775c0000cc7dd31376d2c2a3efb7f257b43fb48d24e713d646ed81a35b309b275f4e4dac46301456f1c6e0c7bf1055e305b2
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
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = "riddl"
3
- s.version = "0.122"
3
+ s.version = "0.123"
4
4
  s.platform = Gem::Platform::RUBY
5
5
  s.license = "LGPL-3.0"
6
6
  s.summary = "restful interface description and declaration language: tools and client/server libs"
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.122'
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