fly.io-rails 0.0.3-aarch64-linux → 0.0.4-aarch64-linux

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: d0e218e003d13c3c7e992d84c14b28840ddaa03204e1828cd72926948ad04bab
4
- data.tar.gz: e305a120763519815f0d7cd15778b1713408db75ccc0561d2aa51c1cdee58dc4
3
+ metadata.gz: 1fe895be06159966bd72fb4c91eee6961452d1327b3d29d40b12a66b9fb130a8
4
+ data.tar.gz: 66acbf7dc41b6e6a9219c4b4bc5a55801ffc07163bdf7367f7f27ba304709b89
5
5
  SHA512:
6
- metadata.gz: 0acb1bbec53b77c6b9b9b4277cc98392a58f5d284d034490787a6878ea0c5b7b04b01a63c24ee3dc9ef0aa5b70c6ad8a4abf42b1bb0495640f0b02d0cbed9789
7
- data.tar.gz: a4aa08fc7b704813c6f0f9bb64be3e4123b204f57410acc6e346ce22bb531dbead3a1ae8cc84d172e49b4240a22e9b626c863487775057a1d17e6118218caf2d
6
+ metadata.gz: 4c6e26cd6b45f4839b6a8b613d65a95961e6e5400f411f4c9331d99459adfec33c3a8dc166e44c95eb0b5748cc25c07c8215ad15a7089b7cb0e3eb422fb9442f
7
+ data.tar.gz: 97e24f664cec9c57e36db529478b0c0be146476a9da021d3c27b17776ff7ca64baa23db3d537918de564cdc40ba29123257d43ddf117f80491beb32369fa3e97
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: aarch64-linux
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