fly.io-rails 0.3.3 → 0.3.4

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: 2309c09c4343475c5bc0f9db6f8f62e2be0f0bdc57126fd524728099ab62c7d6
4
- data.tar.gz: fe723aa4c5ca096cd5dc3bab2c2028200735a241c43b5db1a326cbafa87f786b
3
+ metadata.gz: 99cd2892c83e7a64e5b34a4a0899faa509579873a73e66164e9c296f1d108d47
4
+ data.tar.gz: 1fad3c18db85db5a496503b91e6769758d592c48099c481b7045dc363073685d
5
5
  SHA512:
6
- metadata.gz: 2934c24e7c628b62170023cfc96a36592961cc3536985e1e4b67b0c262695ff3a86754c39c0b0bca8d28b7709f81c69924548f778b007a2911f1a9b8d146385f
7
- data.tar.gz: 07c5bb14d2f15629dc0cea201bc9536cd864f9eb2cf2afdcc354821fe701464ba0ba03eb140f076007d7b6329d82de33f7a762618b33850e5909d322994d62f7
6
+ metadata.gz: d3dc5ecfb25df23bc94cc8879ce41be75819918559d296034bcaaba20777b934545040f9b41f3174dbe918caf8a06c01d9e2b0a393d4c0c31c170536ee82331f
7
+ data.tar.gz: 2b2d8b6868c20523239565f8633b6f23b1e658e1efb4abe99625006c54a84b27ca4ce3609d157fedf3ec2bec33edd8b9d4423a2517fd84e8063570f2ed057c30
@@ -307,23 +307,21 @@ module Fly
307
307
  if @anycable and not @gemfile.include? 'anycable-rails'
308
308
  cmd = 'bundle add anycable-rails'
309
309
  say_status :run, cmd
310
- open('Gemfile', 'a') {|f| f.puts "\n gem \"anycable-rails\""}
311
- system 'bundle install'
310
+ Bundler.with_original_env { system cmd }
312
311
  exit $?.exitstatus unless $?.success?
313
312
  end
314
313
 
315
314
  if @postgresql and not @gemfile.include? 'pg'
316
315
  cmd = 'bundle add pg'
317
316
  say_status :run, cmd
318
- open('Gemfile', 'a') {|f| f.puts "\n gem \"pg\""}
319
- system 'bundle install'
317
+ Bundler.with_original_env { system cmd }
320
318
  exit $?.exitstatus unless $?.success?
321
319
  end
322
320
 
323
321
  if @redis and not @gemfile.include? 'redis'
324
322
  cmd = 'bundle add redis'
325
323
  say_status :run, cmd
326
- system cmd
324
+ Bundler.with_original_env { system cmd }
327
325
  exit $?.exitstatus unless $?.success?
328
326
  end
329
327
  end
@@ -1,3 +1,3 @@
1
1
  module Fly_io
2
- VERSION = '0.3.3'
2
+ VERSION = '0.3.4'
3
3
  end
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.3.3
4
+ version: 0.3.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sam Ruby
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-11-30 00:00:00.000000000 Z
11
+ date: 2022-11-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: fly-ruby
@@ -52,7 +52,7 @@ dependencies:
52
52
  - - ">="
53
53
  - !ruby/object:Gem::Version
54
54
  version: '0'
55
- description:
55
+ description:
56
56
  email: rubys@intertwingly.net
57
57
  executables: []
58
58
  extensions: []
@@ -93,7 +93,7 @@ licenses:
93
93
  - Apache-2.0
94
94
  metadata:
95
95
  homepage_uri: https://github.com/rubys/fly.io-rails
96
- post_install_message:
96
+ post_install_message:
97
97
  rdoc_options: []
98
98
  require_paths:
99
99
  - lib
@@ -108,8 +108,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
108
108
  - !ruby/object:Gem::Version
109
109
  version: '0'
110
110
  requirements: []
111
- rubygems_version: 3.3.26
112
- signing_key:
111
+ rubygems_version: 3.3.5
112
+ signing_key:
113
113
  specification_version: 4
114
114
  summary: Rails support for Fly-io
115
115
  test_files: []