conjur-asset-proxy 0.5.0 → 0.5.1

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: 2dbe27b9c41faa0fa5061346f8fd058902785795
4
- data.tar.gz: 4950bf397cec00ea6962f80c45c36496831e45bc
3
+ metadata.gz: c3538a80105b50cbd8f6b1f6be2f1c2cbaf69e46
4
+ data.tar.gz: 01e7106e5dac98da013f4550330b6f51c4772d8e
5
5
  SHA512:
6
- metadata.gz: d757c08524294a263cd2f8489590bd13171c92c50dd9e757c0bff1717951d3d06a0d7d6805c1b63734a7498a69a5b05af37a2442d1aee4ca0ef794df80b9387a
7
- data.tar.gz: 597b51790a44ef67f20a528eb45fecae79d70b266c34f382804f8c7eb26fd32e4cb6bca7eace02d2b7226d60685740562942052b0079c642ca1f067715f2d36b
6
+ metadata.gz: 7e039a9545c55f999e6091dd11cfcad74ad14fc06af6fdf59369350ebfe55c7c96cc6514be4e61c2a5f8ca4da1eeaf3a4328d8796f40894abf227357d5bd0681
7
+ data.tar.gz: 3510852dd52bd869e840969a164e200b4224ddb895994920478d885f18d070d4c35d14cbbf01300510af2dcd2cb03827b8032eab6cd3dbb2f83d60d2296b7ec5
@@ -21,7 +21,7 @@
21
21
  module Conjur
22
22
  module Asset
23
23
  module Proxy
24
- VERSION = "0.5.0"
24
+ VERSION = "0.5.1"
25
25
  end
26
26
  end
27
27
  end
@@ -92,11 +92,7 @@ module Conjur
92
92
  def start options = {}
93
93
  configure options
94
94
 
95
- rack_options = { app: self }
96
- rack_options[:Port] = options[:port] if options[:port]
97
- rack_options[:Host] = options[:address] if options[:address]
98
-
99
- Rack::Server.start rack_options
95
+ Rack::Server.start app: self, Port: options[:port] || 8080, Host: options[:address] || '127.0.0.1'
100
96
  end
101
97
  end
102
98
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: conjur-asset-proxy
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rafał Rzepecki