fly.io-rails 0.1.17-arm64-darwin → 0.1.18-arm64-darwin

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: 462e418cd9cd1f0232f94c3f861358fc9a4498f7df287dd65af89a2688ffaeb8
4
- data.tar.gz: 210ed9f107a7a7e29093391920aaa02d6cb9077c774ea0f1a7dfc747329d8f17
3
+ metadata.gz: 7389af7bf88265119e2d06aa049355559bc4028f0d3dece0d0e8953343e4f862
4
+ data.tar.gz: c152a91850b5b485a20587c6dc00c07bd5dbfd0598bc732a55195e1e9660b01b
5
5
  SHA512:
6
- metadata.gz: 10e957aa0ac8bb64c39cfbe71693c52e597c001a2a73751fe5bcd38bafb9543d2a7ed4a6f86ac4075d9ef4e97e22a156bdc2427e3b838d51e053b445c01ac65a
7
- data.tar.gz: d1b30c5d80923681386b95e896d1b23aa4a7fd52236e8d21db8ff6b6ee8d3a1c2bce7a3db1b7ac159793faebc4edc63d8a1ecd16461ce9390554f75ecf80e0c3
6
+ metadata.gz: 4f0cd311b53e3eeac2b85249759f66d6a978187df0597a83458bc4d99522d9657ffc06a150ff6ab8580ffb246ce57ddd6851c13722b1585dd26e8b8fb6479101
7
+ data.tar.gz: 75c9ca90be85fa0a003fc4ba47924f0414a0ee5f794c3412fc072bd78c7f714ce0e3d7220866df6fbad935484bace0e43e00b5d236f41a9945bbda9d84be70bc
Binary file
@@ -237,8 +237,8 @@ module Fly
237
237
  output[%r{redis://\S+}]
238
238
  end
239
239
 
240
- def release(app, config)
241
- start = Fly::Machines.create_and_start_machine(app, config: config)
240
+ def release(app, options)
241
+ start = Fly::Machines.create_and_start_machine(app, options)
242
242
  machine = start[:id]
243
243
 
244
244
  if not machine
@@ -322,9 +322,6 @@ module Fly
322
322
 
323
323
  # default config
324
324
  config = {
325
- region: @region,
326
- app: app,
327
- name: "#{app}-machine",
328
325
  image: image,
329
326
  guest: {
330
327
  cpus: @config.machine.cpus,
@@ -353,7 +350,7 @@ module Fly
353
350
 
354
351
  # perform release
355
352
  say_status :fly, release_config[:env]['SERVER_COMMAND']
356
- event, exit_code, machine = release(app, release_config)
353
+ event, exit_code, machine = release(app, region: @region, config: release_config)
357
354
 
358
355
  if exit_code != 0
359
356
  STDERR.puts 'Error performing release'
@@ -410,19 +407,22 @@ module Fly
410
407
 
411
408
  # start app
412
409
  machines = {}
410
+ options = {region: @region, config: config}
413
411
  say_status :fly, "start #{app}"
414
412
  if not toml['processes'] or toml['processes'].empty?
415
- start = Fly::Machines.create_and_start_machine(app, config: config)
413
+ options[:name] = "#{app}-machine",
414
+ start = Fly::Machines.create_and_start_machine(app, options)
416
415
  machines['app'] = start[:id]
417
416
  else
418
417
  config[:env] ||= {}
419
418
  config[:env]['NATS_SERVER'] = 'localhost'
420
419
  toml['processes'].each do |name, entrypoint|
420
+ options[:name] = "#{app}-machine-#{name}"
421
421
  config[:env]['SERVER_COMMAND'] = entrypoint
422
- start = Fly::Machines.create_and_start_machine(app, config: config)
422
+ start = Fly::Machines.create_and_start_machine(app, options)
423
423
 
424
424
  if start['error']
425
- STDERR.puts start.inspect
425
+ STDERR.puts "ERROR: #{start.error}"
426
426
  exit 1
427
427
  end
428
428
 
@@ -499,7 +499,7 @@ module Fly
499
499
  # perform release, if necessary
500
500
  if (IO.read('lib/tasks/fly.rake') rescue '') =~ /^\s*task[ \t]*+:?release"?[ \t]*\S/
501
501
  say_status :fly, config[:env]['SERVER_COMMAND']
502
- event, exit_code, machine = release(app, config)
502
+ event, exit_code, machine = release(app, region: @region, config: config)
503
503
  else
504
504
  exit_code = 0
505
505
  end
@@ -1,3 +1,3 @@
1
1
  module Fly_io
2
- VERSION = '0.1.17'
2
+ VERSION = '0.1.18'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fly.io-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.17
4
+ version: 0.1.18
5
5
  platform: arm64-darwin
6
6
  authors:
7
7
  - Sam Ruby