anycable-rails 1.4.0.rc.3 → 1.4.0
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: da6dd37a3736867b489ceabcc4ed290550fe5736cbf10ad19d6b2e2b0721297d
|
4
|
+
data.tar.gz: d6b8401fc9938ba87d9e19e878dc58a618271f5bffd99da83398b3a5b1403e9e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 67891351a6bb37e4c69e4d81ca51a3cbafeb07ced7d7607c08691ddd33c4dbe4b2bf18231826db85632937313a2d76a35945c59cb2a94f68ad37ac88735dce78
|
7
|
+
data.tar.gz: ca63fd1ec1c346777882434870dc01e9ef35f9fe82ae428c23d4ad481b201eb4f0f726c1e5a50045ffbaf84b7fd94b1adbdcf4640f5e70b3d3b4d2ec8c1ed935
|
data/CHANGELOG.md
CHANGED
@@ -2,16 +2,16 @@
|
|
2
2
|
|
3
3
|
## master
|
4
4
|
|
5
|
-
## 1.4.0
|
6
|
-
|
7
|
-
- Relax `anycable` gem dependency constraints.
|
8
|
-
|
9
|
-
## 1.4.0.rc.2 (2023-07-03)
|
5
|
+
## 1.4.0 (2023-07-07)
|
10
6
|
|
11
7
|
- Add HTTP RPC integration. ([@palkan][])
|
12
8
|
|
13
9
|
Specify `http_rpc_mounth_path` in your `anycable.yml` to enable HTTP RPC.
|
14
10
|
|
11
|
+
- Fix `anycable:download` command. ([@palkan][])
|
12
|
+
|
13
|
+
Detect MacOS arm64, create target bin path if it doesn't exist.
|
14
|
+
|
15
15
|
## 1.3.7 (2023-02-28)
|
16
16
|
|
17
17
|
- Fix `anycable` gem dependency constraints.
|
@@ -61,6 +61,8 @@ module AnyCableRailsGenerators
|
|
61
61
|
def download_exe(url, to:, file_name:)
|
62
62
|
file_path = File.join(to, file_name)
|
63
63
|
|
64
|
+
FileUtils.mkdir_p(to) unless File.directory?(to)
|
65
|
+
|
64
66
|
run "#{sudo(to)}curl -L #{url} -o #{file_path}", abort_on_failure: true
|
65
67
|
run "#{sudo(to)}chmod +x #{file_path}", abort_on_failure: true
|
66
68
|
run "#{file_path} -v", abort_on_failure: true
|
metadata
CHANGED
@@ -1,29 +1,29 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: anycable-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.4.0
|
4
|
+
version: 1.4.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- palkan
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-07-
|
11
|
+
date: 2023-07-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: anycable
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 1.4
|
19
|
+
version: '1.4'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
|
-
- - "
|
24
|
+
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 1.4
|
26
|
+
version: '1.4'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: actioncable
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -229,9 +229,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
229
229
|
version: '2.7'
|
230
230
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
231
231
|
requirements:
|
232
|
-
- - "
|
232
|
+
- - ">="
|
233
233
|
- !ruby/object:Gem::Version
|
234
|
-
version:
|
234
|
+
version: '0'
|
235
235
|
requirements: []
|
236
236
|
rubygems_version: 3.4.8
|
237
237
|
signing_key:
|