smart_proxy_ipam 0.0.7 → 0.0.8

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: be6ae52f679c0d7be23248d26f179a730d0157569a07a050c72c45db0aeec2eb
4
- data.tar.gz: 5a1dbe01a004a626b8e0ece2cfee6b362a96184df6ca37e2245e11986c8f6140
3
+ metadata.gz: 31d37a53e82e3012f1294a9dabcbb9d81a82e543044342ad0fb4e5f9e194e49d
4
+ data.tar.gz: 9fd70c4b9b5b831c6132033939bacb7c7599db02a3f9f0228a5d9cc783c01aad
5
5
  SHA512:
6
- metadata.gz: d85452528e492750756f1d3c0347301c2d80749f85229713d9ea2f56eb70c5edf72935d40877f2f486767d354a1fea70dfe0a618e32bf0674aed755de8235450
7
- data.tar.gz: e6155d1c91673dbaba336d90280862f4ae220ec2d46079300557ce6ee6826b572ec2e8fca6bf13914e9d28a51b2ab1734648ef9f599ea724f8f006ccd715a484
6
+ metadata.gz: 7bfb1dcf2521689d1ff1a9b77ed33bcc613cce659f2f5372f5aec3933d06fec5588e6722b05e16626c26a6d7f5dd504df7e5709b99a355d5be4f2df2dfcb5893
7
+ data.tar.gz: 57de94ac91e4856ab9a034cdbdda4e78e6381705a958a06675a4bc6a358a47cc7dc896ffe7ef51c1c575850da12b627583e74979d8c95a1ee7a6316820254c2d
@@ -34,10 +34,10 @@ module Proxy::Phpipam
34
34
  # Only return the relevant fields to Foreman
35
35
  subnets['data'].each do |subnet|
36
36
  response.push({
37
- "id": subnet['id'],
38
- "subnet": subnet['subnet'],
39
- "description": subnet['description'],
40
- "mask": subnet['mask']
37
+ :id => subnet['id'],
38
+ :subnet => subnet['subnet'],
39
+ :description => subnet['description'],
40
+ :mask => subnet['mask']
41
41
  })
42
42
  end
43
43
 
@@ -58,9 +58,9 @@ module Proxy::Phpipam
58
58
  if sections
59
59
  sections.each do |section|
60
60
  response.push({
61
- "id": section['id'],
62
- "name": section['name'],
63
- "description": section['description']
61
+ :id => section['id'],
62
+ :name => section['name'],
63
+ :description => section['description']
64
64
  })
65
65
  end
66
66
  end
@@ -76,11 +76,11 @@ module Proxy::Phpipam
76
76
  # Only return the relevant data
77
77
  subnets['data'].each do |subnet|
78
78
  response.push({
79
- "id": subnet['id'],
80
- "subnet": subnet['subnet'],
81
- "mask": subnet['mask'],
82
- "sectionId": subnet['sectionId'],
83
- "description": subnet['description']
79
+ :id => subnet['id'],
80
+ :subnet => subnet['subnet'],
81
+ :mask => subnet['mask'],
82
+ :sectionId => subnet['sectionId'],
83
+ :description => subnet['description']
84
84
  })
85
85
  end
86
86
  end
@@ -1,6 +1,6 @@
1
1
 
2
2
  module Proxy
3
3
  module Ipam
4
- VERSION = '0.0.7'
4
+ VERSION = '0.0.8'
5
5
  end
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: smart_proxy_ipam
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.7
4
+ version: 0.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Christopher Smith