fly.io-rails 0.1.17-x86-linux → 0.1.18-x86-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: 690a6d50aca782e3c8d9a070abdc0c985424285251d624e0b9061e58499acac4
4
- data.tar.gz: 205e6925ba94d799a1b9cff5ac3a4d3816a741279c7ad46b76e96b401a494709
3
+ metadata.gz: '08da2b642dec92633b4746a9bfd15960c5f7f08bf8ff7f357e8817e0e9363d39'
4
+ data.tar.gz: 2387302a9e1e0282204be060de1de5fb777ebf89b88dbdf1ad1bcec19318cd30
5
5
  SHA512:
6
- metadata.gz: 47dfe7f59f3b2b4842233e20676d930f34af919cd53dbcada9cf5a0fcc133d803ed72640284ce85652481c95b3f2fa308e1d213e12b95ac5af6d2682cbc555a1
7
- data.tar.gz: 5defc631cd018276994ac69ceaccc5cd37c6d0c099ae011e10e71f307d0c40925d597ea42c790ac4ff08afbf13937be29d0e4e15699199476bbce8926c6282f5
6
+ metadata.gz: 9ea9aac26971910bc8d8d3ade160a3ca8d324248dcb4e6c961322e79ce8981828d5b5cb710e37dd5907a26a859a7b17f04bd3616e657124e8ba31ad9022736b0
7
+ data.tar.gz: 884bb6749dc51dc068f51647abbb20b4bd3aa5214cca3fd0a86aa61066a0e350191f03bae89c0036c1e84d391aef2dd1dff6ee90007342562c5082bc77a34d39
data/exe/x86-linux/flyctl CHANGED
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: x86-linux
6
6
  authors:
7
7
  - Sam Ruby