fly.io-rails 0.0.3-x64-mingw32 → 0.0.4-x64-mingw32

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
  SHA256:
3
- metadata.gz: d57f3b28e7fd2c3e14750163862eeab99067b43bb335e3292c917ef8aefb4993
4
- data.tar.gz: 4e260fb9da1d52a5fe78ea44a223cfb001a67ba4dce8f73b652344d62a65bf49
3
+ metadata.gz: 1038a350dec783bd6834b64705923d76ffd3282499068523c442547dd757e4c9
4
+ data.tar.gz: 28a70b7a2f55eb4a9e82a337d85de1ecfd017ff69f390540901803c63da6a09f
5
5
  SHA512:
6
- metadata.gz: 9e6392b4e88b5324194900addc36de27b78a2b1bcad8da0792472a82245bbd2bcf3617260b077ad51c342eb639f06e4c9119d86462921b5df5b7d7bf7c544c0a
7
- data.tar.gz: 730d3acae8cb1bcfd830fc3aacdd40edbf63241d48442ccf052208a74384ebbc931a237b8c73d02872f75bde891a821173502c1a50e66ad2a2ea325c5b239c8d
6
+ metadata.gz: f5d1519bf8480940e1432853c3a68247a8f675d201714ab0435d7a045296eeb936a7cd82fb9d813662077b96a90ce449f0a05dea8b2ed55154b6f73849b0f25a
7
+ data.tar.gz: c238ae75ac6e682797f9bc147a7d44d2d97f8409b7c2d254f56b39621801c25174978a5c5d6023f0937af67960403030702ff31369b83d573aab53e52f43c2ba
Binary file
@@ -1,4 +1,4 @@
1
- require 'open3'
1
+ require 'pty'
2
2
 
3
3
  module FlyIoRails
4
4
  module Utils
@@ -9,27 +9,23 @@ module FlyIoRails
9
9
  end
10
10
 
11
11
  def self.tee cmd
12
- data = {:out => [], :err => []}
12
+ data = []
13
13
 
14
- Open3.popen3(cmd) do |stdin, stdout, stderr, thread|
15
- { out: stdout, err: stderr }.each do |key, stream|
16
- Thread.new do
17
- until (raw_line = stream.gets).nil? do
18
- data[key].push raw_line
19
-
20
- if key == :out
21
- STDOUT.print raw_line
22
- else
23
- STDERR.print raw_line
24
- end
25
- end
14
+ begin
15
+ PTY.spawn( cmd ) do |stdin, stdout, pid|
16
+ begin
17
+ # Do stuff with the output here. Just printing to show it works
18
+ stdin.each do |line|
19
+ print line
20
+ data << line
21
+ end
22
+ rescue Errno::EIO
26
23
  end
27
24
  end
28
-
29
- thread.join
25
+ rescue PTY::ChildExited
30
26
  end
31
27
 
32
- [data[:out].join, data[:err].join]
28
+ data.join
33
29
  end
34
30
 
35
31
  end
@@ -1,3 +1,3 @@
1
1
  module Fly_io
2
- VERSION = '0.0.3'
2
+ VERSION = '0.0.4'
3
3
  end
@@ -14,7 +14,7 @@ class TerraformGenerator < Rails::Generators::Base
14
14
  "flyctl apps create --generate-name --org #{options[:org].inspect}"
15
15
  end
16
16
 
17
- output, error = tee cmd
17
+ output = tee cmd
18
18
  exit 1 unless output =~ /^New app created: /
19
19
 
20
20
  @app = output.split.last
data/lib/tasks/fly.rake CHANGED
@@ -1,8 +1,8 @@
1
1
  namespace :fly do
2
2
  desc 'Deploy fly application'
3
3
  task :deploy do
4
- out, err = FlyIoRails::Utils.tee 'fly deploy --build-only --push'
5
- image = err[/image:\s+(.*)/, 1]
4
+ out = FlyIoRails::Utils.tee 'fly deploy --build-only --push'
5
+ image = out[/image:\s+(.*)/, 1]
6
6
 
7
7
  if image
8
8
  tf = IO.read('main.tf')
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fly.io-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: x64-mingw32
6
6
  authors:
7
7
  - Sam Ruby
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-09-16 00:00:00.000000000 Z
11
+ date: 2022-09-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: fly-ruby