calabash-cucumber 0.21.1 → 0.21.2

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: 57e2e396522fedcbda7fa08d2753267469705dac
4
- data.tar.gz: 6542f4614a22cebef8cbb28724c9c8fdb47c9f25
3
+ metadata.gz: 93bbf6254bd73e583a0bd78796b0b2fa70bcde6e
4
+ data.tar.gz: 7a82c6c19b2b6be2ca73e979a3fe9a967f62570c
5
5
  SHA512:
6
- metadata.gz: 814508903dff3b915cec691ec87a0d96a0e18f04ecdd6b31e4bf63791f8b5d8a6d8340ddafe74aa76a0afb34ae551b5e9a967b79331125995fc7b2f1c5e34dac
7
- data.tar.gz: 8398914e8c950d30b6edef5abd2575a3c4ef5552d86669fca20a44acade253935eb3b3d07d60df11b47424ecf01094091e0c57998b04d204c2eb3153d42d2888
6
+ metadata.gz: f1d9bee5a6de6a4e8f581f81181e8fdeeb0087c674d59dbbceb5828491d74996501d7957a86e20e2c6efd818ea7871c1f9b898a8b8e9917879f2168374caba19
7
+ data.tar.gz: 1c6b061e154eeaefb1f06958fa32a71c59e9c0501986a8bf09a3943a7e6673aee89fd3883a58ff11700eb1c71f563fa61978c1a4eaf7acd401dcaa6657e6457c
Binary file
Binary file
@@ -388,12 +388,12 @@ module Calabash
388
388
 
389
389
  # @!visibility private
390
390
  def min_x
391
- 10
391
+ 2
392
392
  end
393
393
 
394
394
  # @!visibility private
395
395
  def max_x
396
- @max_x ||= window[:width] - 10
396
+ @max_x ||= window[:width] - 2
397
397
  end
398
398
  end
399
399
  end
@@ -130,7 +130,7 @@ module Calabash
130
130
  # ]
131
131
  # ```
132
132
  #
133
- # @see http://masilotti.com/xctest-documentation/Constants/XCUIElementType.html
133
+ # @see https://developer.apple.com/documentation/xctest/xcuielementtype
134
134
  # @param [Hash] uiquery A hash describing the query.
135
135
  # @return [Array<Hash>] An array of elements matching the `uiquery`.
136
136
  def query(uiquery)
@@ -74,7 +74,7 @@ class Calabash::IBase
74
74
  def trait
75
75
  raise "You should define a trait method or a title method" unless respond_to?(:title)
76
76
  if ios_gte_11?
77
- "view:'_UINavigationItemView' label marked:'#{self.title}'"
77
+ "UINavigationBar marked:'#{self.title}'"
78
78
  else
79
79
  "navigationItemView marked:'#{self.title}'"
80
80
  end
@@ -3,10 +3,10 @@ module Calabash
3
3
 
4
4
  # @!visibility public
5
5
  # The Calabash iOS gem version.
6
- VERSION = "0.21.1"
6
+ VERSION = "0.21.2"
7
7
 
8
8
  # @!visibility public
9
9
  # The minimum required version of the Calabash embedded server.
10
- MIN_SERVER_VERSION = "0.21.1"
10
+ MIN_SERVER_VERSION = "0.21.2"
11
11
  end
12
12
  end
Binary file
Binary file
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: calabash-cucumber
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.21.1
4
+ version: 0.21.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Karl Krukow
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-09-22 00:00:00.000000000 Z
11
+ date: 2017-11-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: cucumber
@@ -483,7 +483,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
483
483
  version: '0'
484
484
  requirements: []
485
485
  rubyforge_project:
486
- rubygems_version: 2.6.11
486
+ rubygems_version: 2.6.14
487
487
  signing_key:
488
488
  specification_version: 4
489
489
  summary: Client for calabash-ios-server for automated functional testing on iOS