eyes_calabash 3.14.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/lib/applitools/calabash/calabash_element.rb +62 -0
- data/lib/applitools/calabash/calabash_screenshot_provider.rb +81 -0
- data/lib/applitools/calabash/environment_detector.rb +23 -0
- data/lib/applitools/calabash/eyes.rb +182 -0
- data/lib/applitools/calabash/eyes_calabash_android_screenshot.rb +56 -0
- data/lib/applitools/calabash/eyes_calabash_ios_screenshot.rb +28 -0
- data/lib/applitools/calabash/eyes_calabash_screenshot.rb +78 -0
- data/lib/applitools/calabash/eyes_hooks.rb +51 -0
- data/lib/applitools/calabash/eyes_settings.rb +43 -0
- data/lib/applitools/calabash/full_page_capture_algorithm.rb +24 -0
- data/lib/applitools/calabash/full_page_capture_algorithm/android_scroll_view.rb +85 -0
- data/lib/applitools/calabash/full_page_capture_algorithm/base.rb +49 -0
- data/lib/applitools/calabash/full_page_capture_algorithm/ios_ui_table_view.rb +148 -0
- data/lib/applitools/calabash/os_versions.rb +23 -0
- data/lib/applitools/calabash/rspec_matchers.rb +22 -0
- data/lib/applitools/calabash/steps/android_eyes_session.rb +35 -0
- data/lib/applitools/calabash/steps/android_matchers.rb +34 -0
- data/lib/applitools/calabash/steps/eyes_session.rb +40 -0
- data/lib/applitools/calabash/steps/eyes_settings.rb +57 -0
- data/lib/applitools/calabash/steps/ios_eyes_session.rb +13 -0
- data/lib/applitools/calabash/steps/ios_matchers.rb +15 -0
- data/lib/applitools/calabash/steps/matchers.rb +69 -0
- data/lib/applitools/calabash/target.rb +67 -0
- data/lib/applitools/calabash/utils.rb +72 -0
- data/lib/applitools/calabash_steps.rb +14 -0
- data/lib/applitools/version.rb +3 -0
- data/lib/eyes_calabash.rb +23 -0
- metadata +128 -0
metadata
ADDED
@@ -0,0 +1,128 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: eyes_calabash
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 3.14.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Applitools Team
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2017-12-29 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: cucumber
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: file_utils
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rspec-expectations
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: eyes_core
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - '='
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: 3.14.1
|
62
|
+
type: :runtime
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - '='
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: 3.14.1
|
69
|
+
description: Applitools Ruby Calabash SDK
|
70
|
+
email:
|
71
|
+
- team@applitools.com
|
72
|
+
executables: []
|
73
|
+
extensions: []
|
74
|
+
extra_rdoc_files: []
|
75
|
+
files:
|
76
|
+
- lib/applitools/calabash/calabash_element.rb
|
77
|
+
- lib/applitools/calabash/calabash_screenshot_provider.rb
|
78
|
+
- lib/applitools/calabash/environment_detector.rb
|
79
|
+
- lib/applitools/calabash/eyes.rb
|
80
|
+
- lib/applitools/calabash/eyes_calabash_android_screenshot.rb
|
81
|
+
- lib/applitools/calabash/eyes_calabash_ios_screenshot.rb
|
82
|
+
- lib/applitools/calabash/eyes_calabash_screenshot.rb
|
83
|
+
- lib/applitools/calabash/eyes_hooks.rb
|
84
|
+
- lib/applitools/calabash/eyes_settings.rb
|
85
|
+
- lib/applitools/calabash/full_page_capture_algorithm.rb
|
86
|
+
- lib/applitools/calabash/full_page_capture_algorithm/android_scroll_view.rb
|
87
|
+
- lib/applitools/calabash/full_page_capture_algorithm/base.rb
|
88
|
+
- lib/applitools/calabash/full_page_capture_algorithm/ios_ui_table_view.rb
|
89
|
+
- lib/applitools/calabash/os_versions.rb
|
90
|
+
- lib/applitools/calabash/rspec_matchers.rb
|
91
|
+
- lib/applitools/calabash/steps/android_eyes_session.rb
|
92
|
+
- lib/applitools/calabash/steps/android_matchers.rb
|
93
|
+
- lib/applitools/calabash/steps/eyes_session.rb
|
94
|
+
- lib/applitools/calabash/steps/eyes_settings.rb
|
95
|
+
- lib/applitools/calabash/steps/ios_eyes_session.rb
|
96
|
+
- lib/applitools/calabash/steps/ios_matchers.rb
|
97
|
+
- lib/applitools/calabash/steps/matchers.rb
|
98
|
+
- lib/applitools/calabash/target.rb
|
99
|
+
- lib/applitools/calabash/utils.rb
|
100
|
+
- lib/applitools/calabash_steps.rb
|
101
|
+
- lib/applitools/version.rb
|
102
|
+
- lib/eyes_calabash.rb
|
103
|
+
homepage: https://www.applitools.com
|
104
|
+
licenses:
|
105
|
+
- Apache License, Version 2.0
|
106
|
+
metadata:
|
107
|
+
yard.run: yri
|
108
|
+
post_install_message:
|
109
|
+
rdoc_options: []
|
110
|
+
require_paths:
|
111
|
+
- lib
|
112
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
113
|
+
requirements:
|
114
|
+
- - ">="
|
115
|
+
- !ruby/object:Gem::Version
|
116
|
+
version: '0'
|
117
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
118
|
+
requirements:
|
119
|
+
- - ">="
|
120
|
+
- !ruby/object:Gem::Version
|
121
|
+
version: '0'
|
122
|
+
requirements: []
|
123
|
+
rubyforge_project:
|
124
|
+
rubygems_version: 2.6.8
|
125
|
+
signing_key:
|
126
|
+
specification_version: 4
|
127
|
+
summary: Applitools Ruby Calabash SDK
|
128
|
+
test_files: []
|