xamarin-test-cloud 0.9.34 → 0.9.35
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 +3 -4
- data/lib/xamarin-test-cloud/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 68d399782b271b6411085a58a29c0f2a7fb17b82
|
|
4
|
+
data.tar.gz: 8bc781834b810eaedd29783f349aec04fbb1ffae
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 33429cba7d3a1c203bdd7710b22592ef3595130de55410eab05eabb0fc7e7b6cb2aeb711741a59343f7e79925284061e292265f93ed2daf08593a1ae8f84057f
|
|
7
|
+
data.tar.gz: 6ed5dc5e803d7aa2a640de69550b86a85e48fb5b5526bd210e110e408a4b9e83f81386580aa015bf1385a16aa7f13d700cd223bc762c7cc80a0445e099a4db76
|
|
@@ -2,7 +2,7 @@ require 'thor'
|
|
|
2
2
|
require 'yaml'
|
|
3
3
|
require 'erb'
|
|
4
4
|
require 'rubygems'
|
|
5
|
-
require 'zip
|
|
5
|
+
require 'zip'
|
|
6
6
|
require 'digest'
|
|
7
7
|
require 'rest_client'
|
|
8
8
|
require 'json'
|
|
@@ -592,7 +592,7 @@ module XamarinTestCloud
|
|
|
592
592
|
end
|
|
593
593
|
|
|
594
594
|
def unzip_file (file, destination)
|
|
595
|
-
Zip::
|
|
595
|
+
Zip::File.open(file) { |zip_file|
|
|
596
596
|
zip_file.each { |f|
|
|
597
597
|
f_path=File.join(destination, f.name)
|
|
598
598
|
FileUtils.mkdir_p(File.dirname(f_path))
|
|
@@ -809,8 +809,7 @@ module XamarinTestCloud
|
|
|
809
809
|
end
|
|
810
810
|
|
|
811
811
|
def files(app)
|
|
812
|
-
|
|
813
|
-
Zip::ZipFile.open(app) do |zip_file|
|
|
812
|
+
Zip::File.open(app) do |zip_file|
|
|
814
813
|
zip_file.collect do |entry|
|
|
815
814
|
{:filename => entry.to_s, :size => entry.size }
|
|
816
815
|
end
|
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.35
|
|
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-07-
|
|
12
|
+
date: 2014-07-15 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: thor
|
|
@@ -65,14 +65,14 @@ dependencies:
|
|
|
65
65
|
requirements:
|
|
66
66
|
- - ~>
|
|
67
67
|
- !ruby/object:Gem::Version
|
|
68
|
-
version:
|
|
68
|
+
version: '1.1'
|
|
69
69
|
type: :runtime
|
|
70
70
|
prerelease: false
|
|
71
71
|
version_requirements: !ruby/object:Gem::Requirement
|
|
72
72
|
requirements:
|
|
73
73
|
- - ~>
|
|
74
74
|
- !ruby/object:Gem::Version
|
|
75
|
-
version:
|
|
75
|
+
version: '1.1'
|
|
76
76
|
- !ruby/object:Gem::Dependency
|
|
77
77
|
name: rest-client
|
|
78
78
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -155,7 +155,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
155
155
|
version: '0'
|
|
156
156
|
requirements: []
|
|
157
157
|
rubyforge_project:
|
|
158
|
-
rubygems_version: 2.
|
|
158
|
+
rubygems_version: 2.1.10
|
|
159
159
|
signing_key:
|
|
160
160
|
specification_version: 4
|
|
161
161
|
summary: Command-line interface to Xamarin Test Cloud
|