calabash-cucumber 0.21.6 → 0.23.0
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/bin/calabash-ios +0 -2
- data/dylibs/libCalabashARM.dylib +0 -0
- data/dylibs/libCalabashSim.dylib +0 -0
- data/lib/calabash-cucumber/dylibs.rb +2 -2
- data/lib/calabash-cucumber/failure_helpers.rb +5 -1
- data/lib/calabash-cucumber/version.rb +2 -2
- data/lib/calabash-cucumber/wait_helpers.rb +6 -1
- data/scripts/.irbrc +3 -3
- data/staticlib/calabash.framework.zip +0 -0
- metadata +20 -35
- data/dylibs/libCalabashDyn.dylib +0 -0
- data/dylibs/libCalabashDynSim.dylib +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c1373d5811906591f438b92d2aa043efa7cf6d9b4b8141eaa70ee7b0956a1460
|
4
|
+
data.tar.gz: e47378ff933860c9121435b8d47da595c1cc216f5c8ebab6721e3ddbf6427fb5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: acaf85aef158a8e0abb5e1a8ef3380e2689f758d43dd87b0597553204d8f33cd7812127696817e3428b70e1ab7397b6e3e1cf57689f42191b57a661ea4713bcc
|
7
|
+
data.tar.gz: 299d6502736f173d09e2397a6aa1a518bfeab5cc7b19c1cbea371b7234e12684dceaa0a6ba428a3ed8144bf374c596a154acc86f115821e1e1ee0d1acde9f489
|
data/bin/calabash-ios
CHANGED
@@ -1,10 +1,8 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
2
|
|
3
3
|
require 'fileutils'
|
4
|
-
require 'cfpropertylist'
|
5
4
|
require 'rexml/document'
|
6
5
|
|
7
|
-
|
8
6
|
require File.join(File.dirname(__FILE__),"calabash-ios-helpers")
|
9
7
|
require File.join(File.dirname(__FILE__),"calabash-ios-generate")
|
10
8
|
require File.join(File.dirname(__FILE__),"calabash-ios-setup")
|
Binary file
|
Binary file
|
@@ -6,7 +6,7 @@ module Calabash
|
|
6
6
|
|
7
7
|
# @!visibility private
|
8
8
|
def self.sim_dylib_basename
|
9
|
-
"
|
9
|
+
"libCalabashSim.dylib"
|
10
10
|
end
|
11
11
|
|
12
12
|
# @!visibility private
|
@@ -16,7 +16,7 @@ module Calabash
|
|
16
16
|
|
17
17
|
# @!visibility private
|
18
18
|
def self.device_dylib_basename
|
19
|
-
"
|
19
|
+
"libCalabashARM.dylib"
|
20
20
|
end
|
21
21
|
|
22
22
|
# @!visibility private
|
@@ -52,7 +52,11 @@ module Calabash
|
|
52
52
|
path = screenshot(options)
|
53
53
|
filename = options[:label] || File.basename(path)
|
54
54
|
if self.respond_to?(:embed)
|
55
|
-
|
55
|
+
begin
|
56
|
+
embed(path, 'image/png', filename)
|
57
|
+
rescue NoMethodError
|
58
|
+
attach(path, 'image/png')
|
59
|
+
end
|
56
60
|
else
|
57
61
|
RunLoop.log_info2("Embed is not available in this context. Will not embed.")
|
58
62
|
end
|
@@ -3,10 +3,10 @@ module Calabash
|
|
3
3
|
|
4
4
|
# @!visibility public
|
5
5
|
# The Calabash iOS gem version.
|
6
|
-
VERSION = "0.
|
6
|
+
VERSION = "0.23.0"
|
7
7
|
|
8
8
|
# @!visibility public
|
9
9
|
# The minimum required version of the Calabash embedded server.
|
10
|
-
MIN_SERVER_VERSION = "0.21.
|
10
|
+
MIN_SERVER_VERSION = "0.21.7"
|
11
11
|
end
|
12
12
|
end
|
@@ -433,7 +433,12 @@ module Calabash
|
|
433
433
|
FileUtils.rm_f(path)
|
434
434
|
return res
|
435
435
|
else
|
436
|
-
|
436
|
+
begin
|
437
|
+
embed(path, 'image/png', msg)
|
438
|
+
rescue NoMethodError
|
439
|
+
attach(path, 'image/png')
|
440
|
+
end
|
441
|
+
|
437
442
|
raise wait_error(msg)
|
438
443
|
end
|
439
444
|
end
|
data/scripts/.irbrc
CHANGED
@@ -47,9 +47,9 @@ IRB.conf[:HISTORY_FILE] = ".irb-history"
|
|
47
47
|
|
48
48
|
begin
|
49
49
|
require "pry"
|
50
|
-
Pry.config.
|
51
|
-
Pry.config.
|
52
|
-
Pry.config.
|
50
|
+
Pry.config.history_save = true
|
51
|
+
Pry.config.history_load = true
|
52
|
+
Pry.config.history_file = ".pry-history"
|
53
53
|
require "pry-nav"
|
54
54
|
rescue LoadError => _
|
55
55
|
|
Binary file
|
metadata
CHANGED
@@ -1,29 +1,29 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: calabash-cucumber
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.23.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Karl Krukow
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-05-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: cucumber
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '
|
19
|
+
version: '0'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
|
-
- - "
|
24
|
+
- - ">="
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: '
|
26
|
+
version: '0'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: edn
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -98,20 +98,6 @@ dependencies:
|
|
98
98
|
- - "<"
|
99
99
|
- !ruby/object:Gem::Version
|
100
100
|
version: '3.0'
|
101
|
-
- !ruby/object:Gem::Dependency
|
102
|
-
name: bundler
|
103
|
-
requirement: !ruby/object:Gem::Requirement
|
104
|
-
requirements:
|
105
|
-
- - "~>"
|
106
|
-
- !ruby/object:Gem::Version
|
107
|
-
version: '1.3'
|
108
|
-
type: :runtime
|
109
|
-
prerelease: false
|
110
|
-
version_requirements: !ruby/object:Gem::Requirement
|
111
|
-
requirements:
|
112
|
-
- - "~>"
|
113
|
-
- !ruby/object:Gem::Version
|
114
|
-
version: '1.3'
|
115
101
|
- !ruby/object:Gem::Dependency
|
116
102
|
name: clipboard
|
117
103
|
requirement: !ruby/object:Gem::Requirement
|
@@ -132,20 +118,20 @@ dependencies:
|
|
132
118
|
requirements:
|
133
119
|
- - ">="
|
134
120
|
- !ruby/object:Gem::Version
|
135
|
-
version: '
|
121
|
+
version: '4.2'
|
136
122
|
- - "<"
|
137
123
|
- !ruby/object:Gem::Version
|
138
|
-
version: '
|
124
|
+
version: '5.0'
|
139
125
|
type: :runtime
|
140
126
|
prerelease: false
|
141
127
|
version_requirements: !ruby/object:Gem::Requirement
|
142
128
|
requirements:
|
143
129
|
- - ">="
|
144
130
|
- !ruby/object:Gem::Version
|
145
|
-
version: '
|
131
|
+
version: '4.2'
|
146
132
|
- - "<"
|
147
133
|
- !ruby/object:Gem::Version
|
148
|
-
version: '
|
134
|
+
version: '5.0'
|
149
135
|
- !ruby/object:Gem::Dependency
|
150
136
|
name: json
|
151
137
|
requirement: !ruby/object:Gem::Requirement
|
@@ -194,14 +180,14 @@ dependencies:
|
|
194
180
|
requirements:
|
195
181
|
- - '='
|
196
182
|
- !ruby/object:Gem::Version
|
197
|
-
version: 3.
|
183
|
+
version: 3.5.1
|
198
184
|
type: :development
|
199
185
|
prerelease: false
|
200
186
|
version_requirements: !ruby/object:Gem::Requirement
|
201
187
|
requirements:
|
202
188
|
- - '='
|
203
189
|
- !ruby/object:Gem::Version
|
204
|
-
version: 3.
|
190
|
+
version: 3.5.1
|
205
191
|
- !ruby/object:Gem::Dependency
|
206
192
|
name: rspec_junit_formatter
|
207
193
|
requirement: !ruby/object:Gem::Requirement
|
@@ -236,14 +222,14 @@ dependencies:
|
|
236
222
|
requirements:
|
237
223
|
- - '='
|
238
224
|
- !ruby/object:Gem::Version
|
239
|
-
version:
|
225
|
+
version: 13.0.3
|
240
226
|
type: :development
|
241
227
|
prerelease: false
|
242
228
|
version_requirements: !ruby/object:Gem::Requirement
|
243
229
|
requirements:
|
244
230
|
- - '='
|
245
231
|
- !ruby/object:Gem::Version
|
246
|
-
version:
|
232
|
+
version: 13.0.3
|
247
233
|
- !ruby/object:Gem::Dependency
|
248
234
|
name: rspec
|
249
235
|
requirement: !ruby/object:Gem::Requirement
|
@@ -403,8 +389,8 @@ files:
|
|
403
389
|
- bin/calabash-ios-setup.rb
|
404
390
|
- bin/calabash-ios-sim.rb
|
405
391
|
- doc/calabash-ios-help.txt
|
406
|
-
- dylibs/
|
407
|
-
- dylibs/
|
392
|
+
- dylibs/libCalabashARM.dylib
|
393
|
+
- dylibs/libCalabashSim.dylib
|
408
394
|
- features-skeleton/sample.feature
|
409
395
|
- features-skeleton/steps/sample_steps.rb
|
410
396
|
- features-skeleton/support/01_launch.rb
|
@@ -462,7 +448,7 @@ homepage: http://calaba.sh
|
|
462
448
|
licenses:
|
463
449
|
- EPL-1.0
|
464
450
|
metadata: {}
|
465
|
-
post_install_message:
|
451
|
+
post_install_message:
|
466
452
|
rdoc_options: []
|
467
453
|
require_paths:
|
468
454
|
- lib
|
@@ -477,9 +463,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
477
463
|
- !ruby/object:Gem::Version
|
478
464
|
version: '0'
|
479
465
|
requirements: []
|
480
|
-
|
481
|
-
|
482
|
-
signing_key:
|
466
|
+
rubygems_version: 3.1.4
|
467
|
+
signing_key:
|
483
468
|
specification_version: 4
|
484
469
|
summary: Client for calabash-ios-server for automated functional testing on iOS
|
485
470
|
test_files: []
|
data/dylibs/libCalabashDyn.dylib
DELETED
Binary file
|
Binary file
|