xamarin-test-cloud 2.0.1.pre1 → 2.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 91950de187198fc82a974abedf172c378f204d1a
4
- data.tar.gz: 4aad5601098916dd71ab870287b548b7374fa08f
3
+ metadata.gz: 609e340deda5841de2d5f4af2540b81139c84038
4
+ data.tar.gz: 9eaf06e9ffa2d06955f4eae4216b32a3d17f5272
5
5
  SHA512:
6
- metadata.gz: 3afd2c8a96ef80653b504ea6d40bfc2319dd5a9238f53db48d57a237cca333eb1b846a5ba066b84e05b5a7a0771c8a6728e3a4228c0f383f5f6fa2ddb6bba47a
7
- data.tar.gz: 6f15772519b764c4ba1dfa4f796fc2e2167e5546e62f42bfa2ba217b3cd07af50431108ddb2dd1dcfd56d27bd40b030ae49dfd838519cc243e92898559b40c72
6
+ metadata.gz: afe140c2211ee35a3b082a320b74f2605133deac43c803fd4f34b9ea2006fa55676a7a166dd086d239b918b7f40a141659f3b715a29303ef1811c7178077e359
7
+ data.tar.gz: 13a4790d5f06c889cc819267d07d41850606f12bccde2798dcc24d8dce3bc0a99bed86a71b4873ad91da12c78903e72f3bcc52ef843b98fba77b90037ecb396d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,6 @@
1
1
  ### 2.0.1
2
2
 
3
+ * Fix method arity for HTTPClient#set\_auth - use nil domain #74
3
4
  * Windows: expand tmp directory version 8.3 short paths #71
4
5
 
5
6
  ### 2.0.0
@@ -18,6 +18,11 @@ module XamarinTestCloud
18
18
  @@macos_env
19
19
  end
20
20
 
21
+ # Return true if Linux environment
22
+ def self.linux_env?
23
+ !self.macos_env? && !self.windows_env?
24
+ end
25
+
21
26
  # Returns true if debugging is enabled.
22
27
  def self.debug?
23
28
  ENV["DEBUG"] == "1"
@@ -130,7 +130,7 @@ module XamarinTestCloud
130
130
  client.send_timeout = send_timeout
131
131
 
132
132
  if options.fetch(:user, nil) && options.fetch(:password, nil)
133
- client.set_auth(options.fetch(:user), options.fetch(:password))
133
+ client.set_auth(options[:domain], options.fetch(:user), options.fetch(:password))
134
134
  end
135
135
 
136
136
  retries.times do |i|
@@ -169,4 +169,3 @@ module XamarinTestCloud
169
169
  end
170
170
  end
171
171
  end
172
-
@@ -1,3 +1,3 @@
1
1
  module XamarinTestCloud
2
- VERSION = "2.0.1.pre1"
2
+ VERSION = "2.0.1"
3
3
  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: 2.0.1.pre1
4
+ version: 2.0.1
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: 2016-07-20 00:00:00.000000000 Z
12
+ date: 2016-08-02 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: thor
@@ -339,9 +339,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
339
339
  version: '2.0'
340
340
  required_rubygems_version: !ruby/object:Gem::Requirement
341
341
  requirements:
342
- - - ">"
342
+ - - ">="
343
343
  - !ruby/object:Gem::Version
344
- version: 1.3.1
344
+ version: '0'
345
345
  requirements: []
346
346
  rubyforge_project:
347
347
  rubygems_version: 2.5.1