isorun 0.1.2.pre-x86_64-darwin → 0.1.4.pre-x86_64-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 +6 -8
- 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: b1b10bf928283b9d7ec747d69cfd6f80d7bd5eecbcde242f3a884046ca1560a1
|
4
|
+
data.tar.gz: ca60cd163e2345c09775f95c0b494c4973ea2adc2dffb35ad74142d4b40d5f26
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 84eac04aedb090947882b8ff3ce67f5d73bc11b7251f28e8db79ef2a94f16bad8a581143c1f626d0708e0fe6e0a9353bbba12236934d24cd2b2381d84f5ffbbd
|
7
|
+
data.tar.gz: 076df31bcf49eaf080791df8d9d0d6484722eee9b630be1f503a915a67ca88ef484f5d8240ad4e55840b3283380a5c80063701d9818d9f5a5560a0524ff955c1
|
data/ext/isorun/Cargo.toml
CHANGED
Binary file
|
Binary file
|
Binary file
|
data/lib/isorun/resolver.rb
CHANGED
@@ -6,7 +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
|
-
|
9
|
+
Isorun::Resolver.module_path("#{bundle_id}-server")
|
10
10
|
end
|
11
11
|
}
|
12
12
|
|
@@ -14,15 +14,13 @@ module Isorun
|
|
14
14
|
if Rails.env.development?
|
15
15
|
Rails.root.join("app", "assets", "builds", "#{bundle_id}.js").to_s
|
16
16
|
else
|
17
|
-
|
17
|
+
Isorun::Resolver.module_path(bundle_id)
|
18
18
|
end
|
19
19
|
}
|
20
|
-
end
|
21
|
-
|
22
|
-
private
|
23
20
|
|
24
|
-
|
25
|
-
|
26
|
-
|
21
|
+
def self.module_path(asset)
|
22
|
+
file = Rails.application.assets_manifest.assets["#{asset}.js"]
|
23
|
+
"#{Rails.application.assets_manifest.directory}/#{file}"
|
24
|
+
end
|
27
25
|
end
|
28
26
|
end
|
data/lib/isorun/version.rb
CHANGED