calabash-android 0.2.0.pre8 → 0.2.0.pre9

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,4 +1,7 @@
1
- 0.2.0.pre7:
1
+ 0.2.0.pre9:
2
+ Fixing connection issue on Windows
3
+
4
+ 0.2.0.pre8:
2
5
  Adding target version to javac in order to work with Java 7.
3
6
 
4
7
  0.2.0.pre7:
@@ -182,9 +182,9 @@ module Operations
182
182
  def http(path, data = {})
183
183
  begin
184
184
  http = Net::HTTP.new "127.0.0.1", @server_port
185
- resp, data = http.post(path, "command=#{data.to_json}", {})
186
- data
187
- rescue EOFError
185
+ resp = http.post(path, "command=#{data.to_json}", {})
186
+ resp.body
187
+ rescue
188
188
  sleep 0.5
189
189
  retry
190
190
  end
@@ -1,6 +1,6 @@
1
1
  module Calabash
2
2
  module Android
3
- VERSION = "0.2.0.pre8"
4
- FRAMEWORK_VERSION = "0.2.0.pre8"
3
+ VERSION = "0.2.0.pre9"
4
+ FRAMEWORK_VERSION = "0.2.0.pre9"
5
5
  end
6
6
  end
metadata CHANGED
@@ -1,15 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: calabash-android
3
3
  version: !ruby/object:Gem::Version
4
- hash: 2547815125
4
+ hash: -2975064380
5
5
  prerelease: 6
6
6
  segments:
7
7
  - 0
8
8
  - 2
9
9
  - 0
10
10
  - pre
11
- - 8
12
- version: 0.2.0.pre8
11
+ - 9
12
+ version: 0.2.0.pre9
13
13
  platform: ruby
14
14
  authors:
15
15
  - Jonas Maturana Larsen