fly.io-rails 0.1.15-aarch64-linux → 0.1.16-aarch64-linux
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/lib/fly.io-rails/machines.rb +1 -0
- data/lib/fly.io-rails/version.rb +1 -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: 36caae6e234016ba11f478ce07edc4dd58ad3ceaf64043f79572d16dac70c79c
|
4
|
+
data.tar.gz: b07f4612fe20bb3bf6c64d4c3611205971bcaf5087239c85828b23b31de47604
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e8afd8ae710b130f9f36f48263a41c4772d9dbb1ba69fc8d2d3d5be02407d3452655ad59879c21831d2b4bfe218f2440ba45ad8fca582c0b815a4e3ca3b1ebba
|
7
|
+
data.tar.gz: 32d3a3b3f03e604993c76a0af0419b2889cd3ee1d5973d3dcfbc2d8d0da6ef9d129a2a0c771a40cf02dd52b3e2bea543ed5e5946c9b14c58d3938fbeda6eedbe
|
@@ -174,6 +174,7 @@ module Fly
|
|
174
174
|
host ||= "http://#{fly_api_hostname}"
|
175
175
|
uri = URI.join(host, path)
|
176
176
|
http = Net::HTTP.new(uri.host, uri.port)
|
177
|
+
http.set_debug_output $stderr if ENV['TRACE']
|
177
178
|
http.use_ssl = true if uri.instance_of? URI::HTTPS
|
178
179
|
|
179
180
|
request = make_request.call(uri.request_uri)
|
data/lib/fly.io-rails/version.rb
CHANGED