riddl 0.99.210 → 0.99.211

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
  SHA1:
3
- metadata.gz: d987ba3153ddd4aed09c49d19d3f1f215fac5f2a
4
- data.tar.gz: 81d2e1b295d19278a38ac57856d918b499eeee18
3
+ metadata.gz: ab377ecd069457ffa199b2766460263cf6fa16ec
4
+ data.tar.gz: 33564e3629eb93cc4c1021f08d7eb34d97dbad36
5
5
  SHA512:
6
- metadata.gz: 1995a0ed8cf92c555b896861cfbdd0588622e1bbe608cec2170bb3020973123bd760b53c0730d1643abbba1082241cbd9c3c9fdefe8473a36f102055e7e0cbb3
7
- data.tar.gz: ef36ba2b110e3cef939ae8797065818e9f8a12c4b50b624442aa5052c9339ad339d522ce7f0da34c594720f073068bb3ed9f950c0fcbea0c2d9425658df22270
6
+ metadata.gz: 72f39a90c58a8630b4751fec9abf6e3c5a7a081d9f26b30f88949ea296d827b4ca294f4380f2d0368c79bf93cff62f7e81eca55d8291d02b357da4ab1e92105b
7
+ data.tar.gz: dfea44c97e9bbda2c30250aefeb9fd7249dd0845b5e47a918e9586fdc4ce17571a75645a9153f71ae4184f81d775dca7245da1391c46e2a52f3b016bb9d10539
data/AUTHORS CHANGED
@@ -1,4 +1,4 @@
1
1
  Jürgen Mangler <juergen.mangler@gmail.com>
2
2
  Florian Stertz <florian.stertz@gmail.com>
3
- Sonja Biedermann <sonja.biedermann@gmail.com>
3
+ Sonja Biedermann <s.bdrmnn@gmail.com>
4
4
 
@@ -360,7 +360,7 @@ unless Module.constants.include?('CLIENT_INCLUDED')
360
360
  req = Riddl::Client::HTTPRequest.new(riddl_method,url.path,parameters,headers,qs)
361
361
  return req.simulate if simulate
362
362
 
363
- response = nil
363
+ res = response = nil
364
364
 
365
365
  http = Net::HTTP.new(url.host, url.port)
366
366
  if url.class == URI::HTTPS
@@ -124,7 +124,10 @@ module Riddl
124
124
  @doc.root.prepend("dec:interface",:name=>"riddldescription").add XML::Smart::open_unprotected(RIDDL_DESCRIPTION_SHOW).root
125
125
  @doc.root.prepend("dec:interface",:name=>"riddlresourcedescription").add XML::Smart::open_unprotected(RIDDL_DESCRIPTION_RESOURCE_SHOW).root
126
126
  @doc.root.find("dec:facade").first.append('dec:tile').append("layer",:name => "riddldescription")
127
- @doc.root.find("dec:facade").first.append('dec:tile').append("layer",:name => "riddlresourcedescription").append("apply-to","/**/*")
127
+ @doc.root.find("dec:facade").first.append('dec:tile').append("layer",:name => "riddlresourcedescription").tap do |x|
128
+ x.append("apply-to","/")
129
+ x.append("apply-to","/**/*")
130
+ end
128
131
  end
129
132
 
130
133
  @declaration = @description = nil
data/riddl.gemspec CHANGED
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = "riddl"
3
- s.version = "0.99.210"
3
+ s.version = "0.99.211"
4
4
  s.platform = Gem::Platform::RUBY
5
5
  s.license = "LGPL-3"
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.99.210
4
+ version: 0.99.211
5
5
  platform: ruby
6
6
  authors:
7
7
  - Juergen 'eTM' Mangler