isorun 0.1.0.pre-arm64-darwin → 0.1.1.pre-arm64-darwin
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.bundle +0 -0
- data/lib/isorun/3.0/isorun.bundle +0 -0
- data/lib/isorun/3.1/isorun.bundle +0 -0
- data/lib/isorun/resolver.rb +11 -2
- data/lib/isorun/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ac7e79884042806d5a503802367dc6b39dbb59a051f429f0c1a9968118bbe50f
|
4
|
+
data.tar.gz: a69b1f86abc6bd00760b3dbab2058e02f641a39549a4514f0600043898ac699c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6255ec12ef83e82e2efe5e098604de9ac36b186de83cfca94e791cf4edc1f9e68c2da1e05328dc91172c93e51b6674e1f4b5450e179bea20f68ace9a47f26c47
|
7
|
+
data.tar.gz: 74e25414c989a7f3a04a50bbd6ce82fe22eb75387f83d24dda969a78d20d2859c48d423f24866d212d48898945dce89c6f8c87ad1c9e5d761107b95157b9fe93
|
data/ext/isorun/Cargo.toml
CHANGED
Binary file
|
Binary file
|
Binary file
|
data/lib/isorun/resolver.rb
CHANGED
@@ -6,7 +6,8 @@ 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
|
-
|
9
|
+
asset = ActionController::Base.helpers.asset_path("#{bundle_id}-server")
|
10
|
+
asset_path(asset)
|
10
11
|
end
|
11
12
|
}
|
12
13
|
|
@@ -14,8 +15,16 @@ module Isorun
|
|
14
15
|
if Rails.env.development?
|
15
16
|
Rails.root.join("app", "assets", "builds", "#{bundle_id}.js").to_s
|
16
17
|
else
|
17
|
-
|
18
|
+
asset = ActionController::Base.helpers.asset_path(bundle_id)
|
19
|
+
asset_path(asset)
|
18
20
|
end
|
19
21
|
}
|
20
22
|
end
|
23
|
+
|
24
|
+
private
|
25
|
+
|
26
|
+
def asset_path(asset)
|
27
|
+
asset_path = Rails.application.assets_manifest.assets["#{asset}.js"]
|
28
|
+
"#{Rails.application.assets_manifest.directory}/#{asset_path}"
|
29
|
+
end
|
21
30
|
end
|
data/lib/isorun/version.rb
CHANGED