rspec-httpd 0.3.7 → 0.3.8
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 +4 -4
- data/VERSION +1 -1
- data/lib/rspec/httpd/server.rb +0 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: da89df6887f960c4e5a3546257e17ea63f000ab3269fbfea04e4cd3e973c08bf
|
4
|
+
data.tar.gz: 5dbd03a076d40733d8d5e68797235472219e109baf241fd7fe0abf50c4b6d539
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 95793bc79135100c913250557b2e820852cf86d4f35f6b31d61f99dbda5153a410d45e1546cdf9ef71c08ecde66946eb08a7531cb69e172b8f4ecaffd1d3b6e7
|
7
|
+
data.tar.gz: ea08955f76f00bbd44a190ce9388b8c0808a7e9a48e02dcad90e371990c0b0ea5497567ee56e73d7ef3283a76c2a73a9f25f4505986882af21c863bdba5f7a9b
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.3.
|
1
|
+
0.3.8
|
data/lib/rspec/httpd/server.rb
CHANGED
@@ -35,7 +35,6 @@ module RSpec::Httpd
|
|
35
35
|
# You can use this method to retrieve a client connection to a server
|
36
36
|
# specified via host:, port:, and, optionally, a command.
|
37
37
|
def start!(host: "0.0.0.0", port:, command:, logger: nil)
|
38
|
-
puts "start! command: #{command.inspect}"
|
39
38
|
@servers ||= {}
|
40
39
|
@servers[[host, port, command]] ||= command ? do_start(host, port, command) : check_server(host, port)
|
41
40
|
@logger = logger if logger
|