xamarin-test-cloud 0.9.36 → 0.9.37
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/xamarin-test-cloud/cli.rb +6 -2
- data/lib/xamarin-test-cloud/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8bb4e9d56a8716516cbe0285fc204f7ba6b2e04a
|
4
|
+
data.tar.gz: 3af57f5aa8be2882ff2e03b25841556431089847
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6c2961fa636d46b16f685c359e2ee974ad5c68e6d7a163d7b88869115f1f1eaa399122bf594497a3583701d42560d2e83a9ec82a6d4cf37ab8bee81f8341eb5c
|
7
|
+
data.tar.gz: cc0cade944c0368a52b5ebb1133336d499d1f8e652bbf92415b8975392692209d2327978897bbf4f08a53fd9d473f5e2858dc1cfc6930c3b7623015c089c30d5
|
@@ -804,8 +804,12 @@ module XamarinTestCloud
|
|
804
804
|
|
805
805
|
|
806
806
|
def shared_runtime?(app_path)
|
807
|
-
files(app_path)
|
808
|
-
|
807
|
+
f = files(app_path)
|
808
|
+
f.any? do |file|
|
809
|
+
filename = file[:filename]
|
810
|
+
if filename.end_with?("libmonodroid.so")
|
811
|
+
file[:size] < 120 * 1024 && f.none?{ |x| x[:filename] == filename.sub("libmonodroid.so", "libmonosgen-2.0.so")}
|
812
|
+
end
|
809
813
|
end
|
810
814
|
end
|
811
815
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: xamarin-test-cloud
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.9.
|
4
|
+
version: 0.9.37
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Karl Krukow
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2014-08-
|
12
|
+
date: 2014-08-14 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: thor
|