fly.io-rails 0.3.2 → 0.3.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/fly.io-rails/actions.rb +3 -4
- data/lib/fly.io-rails/version.rb +1 -1
- metadata +7 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 99cd2892c83e7a64e5b34a4a0899faa509579873a73e66164e9c296f1d108d47
|
4
|
+
data.tar.gz: 1fad3c18db85db5a496503b91e6769758d592c48099c481b7045dc363073685d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d3dc5ecfb25df23bc94cc8879ce41be75819918559d296034bcaaba20777b934545040f9b41f3174dbe918caf8a06c01d9e2b0a393d4c0c31c170536ee82331f
|
7
|
+
data.tar.gz: 2b2d8b6868c20523239565f8633b6f23b1e658e1efb4abe99625006c54a84b27ca4ce3609d157fedf3ec2bec33edd8b9d4423a2517fd84e8063570f2ed057c30
|
data/lib/fly.io-rails/actions.rb
CHANGED
@@ -307,22 +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
|
-
system cmd
|
311
|
-
system 'bundle install' # not sure why grpc doesn't get added the first time.
|
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
|
-
system cmd
|
317
|
+
Bundler.with_original_env { system cmd }
|
319
318
|
exit $?.exitstatus unless $?.success?
|
320
319
|
end
|
321
320
|
|
322
321
|
if @redis and not @gemfile.include? 'redis'
|
323
322
|
cmd = 'bundle add redis'
|
324
323
|
say_status :run, cmd
|
325
|
-
system cmd
|
324
|
+
Bundler.with_original_env { system cmd }
|
326
325
|
exit $?.exitstatus unless $?.success?
|
327
326
|
end
|
328
327
|
end
|
data/lib/fly.io-rails/version.rb
CHANGED
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.
|
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-
|
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.
|
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: []
|