isorun 0.1.1.pre-x86_64-linux → 0.1.3.pre-x86_64-linux
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/ext/isorun/Cargo.toml +1 -1
- data/lib/isorun/2.7/isorun.so +0 -0
- data/lib/isorun/3.0/isorun.so +0 -0
- data/lib/isorun/3.1/isorun.so +0 -0
- data/lib/isorun/resolver.rb +6 -10
- data/lib/isorun/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c7e5d28b853f3927495b75a44c6203eb53f8c7f0c84e4d82814b87975e9b7524
|
4
|
+
data.tar.gz: ffdc121594023ed5e35d5684b5c46e1da3e3bcab5a2b2fae65a98ff263e45479
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 18702a27d4a9864ac8bcd834ee763f37dca8c59875dabcf98dbb58b409294ccd2173e10b6e8be317598235fc082c322ba62fe5ccef7a91692a2d982826bbada2
|
7
|
+
data.tar.gz: fb66e61c8ee897dd6558bde3e766a1f56eecd8015fb35b6916e6b352cd63723cc938e172fe6e866fa451848473435e6a8cb76b8493480cfd5203c7e4f2d1a5a1
|
data/ext/isorun/Cargo.toml
CHANGED
data/lib/isorun/2.7/isorun.so
CHANGED
Binary file
|
data/lib/isorun/3.0/isorun.so
CHANGED
Binary file
|
data/lib/isorun/3.1/isorun.so
CHANGED
Binary file
|
data/lib/isorun/resolver.rb
CHANGED
@@ -6,8 +6,7 @@ module Isorun
|
|
6
6
|
if Rails.env.development?
|
7
7
|
Rails.root.join("app", "assets", "builds", "#{bundle_id}-server.js").to_s
|
8
8
|
else
|
9
|
-
|
10
|
-
asset_path(asset)
|
9
|
+
Isorun::Resolver.module_path("#{bundle_id}-server")
|
11
10
|
end
|
12
11
|
}
|
13
12
|
|
@@ -15,16 +14,13 @@ module Isorun
|
|
15
14
|
if Rails.env.development?
|
16
15
|
Rails.root.join("app", "assets", "builds", "#{bundle_id}.js").to_s
|
17
16
|
else
|
18
|
-
|
19
|
-
asset_path(asset)
|
17
|
+
Isorun::Resolver.module_path(bundle_id)
|
20
18
|
end
|
21
19
|
}
|
22
|
-
end
|
23
|
-
|
24
|
-
private
|
25
20
|
|
26
|
-
|
27
|
-
|
28
|
-
|
21
|
+
def self.module_path(asset)
|
22
|
+
file = Rails.application.assets_manifest.assets["#{asset}.js"]
|
23
|
+
"#{Rails.application.assets_manifest.directory}/#{file}"
|
24
|
+
end
|
29
25
|
end
|
30
26
|
end
|
data/lib/isorun/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: isorun
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.3.pre
|
5
5
|
platform: x86_64-linux
|
6
6
|
authors:
|
7
7
|
- Hannes Moser
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-12-
|
11
|
+
date: 2022-12-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: railties
|