parallel_appium 0.2.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 +7 -0
- checksums.yaml.gz.sig +3 -0
- data/.gitignore +457 -0
- data/.rspec +3 -0
- data/.rubocop.yml +2 -0
- data/.travis.yml +5 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +6 -0
- data/Gemfile.lock +68 -0
- data/LICENSE +674 -0
- data/README.md +41 -0
- data/Rakefile +6 -0
- data/apps/.gitignore +3 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/certs/javondavis.pem +27 -0
- data/docs/.gitignore +0 -0
- data/docs/_config.yml +1 -0
- data/exe/parallel_appium +4 -0
- data/lib/parallel_appium/android.rb +35 -0
- data/lib/parallel_appium/ios.rb +30 -0
- data/lib/parallel_appium/selenium-server-standalone-3.12.0.jar +0 -0
- data/lib/parallel_appium/server.rb +164 -0
- data/lib/parallel_appium/version.rb +3 -0
- data/lib/parallel_appium.rb +218 -0
- data/parallel_appium.gemspec +52 -0
- data.tar.gz.sig +0 -0
- metadata +200 -0
- metadata.gz.sig +0 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 154fc13db8be573f456c5b1efe2276a4c1737b59790299ca1f3b8254b512913f
|
4
|
+
data.tar.gz: e4a64894d75638d73f4bf32d1d4cbb4fe6a3b9f940679dcc018ab27e14fdeb0e
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: a5deceff26c4604e4267716b8da1bd89256ba3075491c755de040d853d35c009454f4e2c5492a293a6ceac24f3609f2577e99f5077813b426e48ea89769f2b07
|
7
|
+
data.tar.gz: 2b1d27597ed00b649f7adbaf3117577e89b44500a4146b84e1cd141d59504e087a6aed43be3da07adb484b01c8b721fddca1687a732641a63ea47b487dcc1053
|
checksums.yaml.gz.sig
ADDED
@@ -0,0 +1,3 @@
|
|
1
|
+
c�Ч��e��ڬ�>;�#����C����d('���2F\�ֶ�4?CBJ�b�m�7�xtL6��f
|
2
|
+
��r�����ѦƥP��{AQ�zv����Bi.f��;�IY;:�=��Dn ���Z�@DC�����F�h�y��a�A\�j�A�qyl���+Rd!���y.��O�AD B-�M~钂�r���(��ߒKs��l`B��P���³�nB�4�խy ���H�ߛ$Q���*�Άh�I#y�m��������B��!�X��N�NЗ��,rC�l�{nH�����Z6�LA�k��]�cR,���^V�k͗��jS�u�ЧM
|
3
|
+
��Xɥ^Q�Bp�
|
data/.gitignore
ADDED
@@ -0,0 +1,457 @@
|
|
1
|
+
/.bundle/
|
2
|
+
/.yardoc
|
3
|
+
/_yardoc/
|
4
|
+
/coverage/
|
5
|
+
/doc/
|
6
|
+
/pkg/
|
7
|
+
/spec/reports/
|
8
|
+
/tmp/
|
9
|
+
|
10
|
+
# rspec failure tracking
|
11
|
+
.rspec_status
|
12
|
+
vendor/ruby
|
13
|
+
### Ruby template
|
14
|
+
*.gem
|
15
|
+
*.rbc
|
16
|
+
/.config
|
17
|
+
/coverage/
|
18
|
+
/InstalledFiles
|
19
|
+
/pkg/
|
20
|
+
/spec/reports/
|
21
|
+
/spec/examples.txt
|
22
|
+
/test/tmp/
|
23
|
+
/test/version_tmp/
|
24
|
+
/tmp/
|
25
|
+
|
26
|
+
# Used by dotenv library to load environment variables.
|
27
|
+
# .env
|
28
|
+
|
29
|
+
## Specific to RubyMotion:
|
30
|
+
.dat*
|
31
|
+
.repl_history
|
32
|
+
build/
|
33
|
+
*.bridgesupport
|
34
|
+
build-iPhoneOS/
|
35
|
+
build-iPhoneSimulator/
|
36
|
+
|
37
|
+
## Specific to RubyMotion (use of CocoaPods):
|
38
|
+
#
|
39
|
+
# We recommend against adding the Pods directory to your .gitignore. However
|
40
|
+
# you should judge for yourself, the pros and cons are mentioned at:
|
41
|
+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
|
42
|
+
#
|
43
|
+
# vendor/Pods/
|
44
|
+
|
45
|
+
## Documentation cache and generated files:
|
46
|
+
/.yardoc/
|
47
|
+
/_yardoc/
|
48
|
+
/doc/
|
49
|
+
/rdoc/
|
50
|
+
|
51
|
+
## Environment normalization:
|
52
|
+
/.bundle/
|
53
|
+
/vendor/bundle
|
54
|
+
/lib/bundler/man/
|
55
|
+
|
56
|
+
# for a library or gem, you might want to ignore these files since the code is
|
57
|
+
# intended to run in multiple environments; otherwise, check them in:
|
58
|
+
# Gemfile.lock
|
59
|
+
# .ruby-version
|
60
|
+
# .ruby-gemset
|
61
|
+
|
62
|
+
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
|
63
|
+
.rvmrc
|
64
|
+
### VisualStudio template
|
65
|
+
## Ignore Visual Studio temporary files, build results, and
|
66
|
+
## files generated by popular Visual Studio add-ons.
|
67
|
+
##
|
68
|
+
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
|
69
|
+
|
70
|
+
# User-specific files
|
71
|
+
*.suo
|
72
|
+
*.user
|
73
|
+
*.userosscache
|
74
|
+
*.sln.docstates
|
75
|
+
|
76
|
+
# User-specific files (MonoDevelop/Xamarin Studio)
|
77
|
+
*.userprefs
|
78
|
+
|
79
|
+
# Build results
|
80
|
+
[Dd]ebug/
|
81
|
+
[Dd]ebugPublic/
|
82
|
+
[Rr]elease/
|
83
|
+
[Rr]eleases/
|
84
|
+
x64/
|
85
|
+
x86/
|
86
|
+
bld/
|
87
|
+
#[Bb]in/ # Excluding bin folder from ignore
|
88
|
+
[Oo]bj/
|
89
|
+
[Ll]og/
|
90
|
+
|
91
|
+
# Visual Studio 2015/2017 cache/options directory
|
92
|
+
.vs/
|
93
|
+
# Uncomment if you have tasks that create the project's static files in wwwroot
|
94
|
+
#wwwroot/
|
95
|
+
|
96
|
+
# Visual Studio 2017 auto generated files
|
97
|
+
Generated\ Files/
|
98
|
+
|
99
|
+
# MSTest test Results
|
100
|
+
[Tt]est[Rr]esult*/
|
101
|
+
[Bb]uild[Ll]og.*
|
102
|
+
|
103
|
+
# NUNIT
|
104
|
+
*.VisualState.xml
|
105
|
+
TestResult.xml
|
106
|
+
|
107
|
+
# Build Results of an ATL Project
|
108
|
+
[Dd]ebugPS/
|
109
|
+
[Rr]eleasePS/
|
110
|
+
dlldata.c
|
111
|
+
|
112
|
+
# Benchmark Results
|
113
|
+
BenchmarkDotNet.Artifacts/
|
114
|
+
|
115
|
+
# .NET Core
|
116
|
+
project.lock.json
|
117
|
+
project.fragment.lock.json
|
118
|
+
artifacts/
|
119
|
+
**/Properties/launchSettings.json
|
120
|
+
|
121
|
+
# StyleCop
|
122
|
+
StyleCopReport.xml
|
123
|
+
|
124
|
+
# Files built by Visual Studio
|
125
|
+
*_i.c
|
126
|
+
*_p.c
|
127
|
+
*_i.h
|
128
|
+
*.ilk
|
129
|
+
*.meta
|
130
|
+
*.obj
|
131
|
+
*.pch
|
132
|
+
*.pdb
|
133
|
+
*.pgc
|
134
|
+
*.pgd
|
135
|
+
*.rsp
|
136
|
+
*.sbr
|
137
|
+
*.tlb
|
138
|
+
*.tli
|
139
|
+
*.tlh
|
140
|
+
*.tmp
|
141
|
+
*.tmp_proj
|
142
|
+
*.log
|
143
|
+
*.vspscc
|
144
|
+
*.vssscc
|
145
|
+
.builds
|
146
|
+
*.pidb
|
147
|
+
*.svclog
|
148
|
+
*.scc
|
149
|
+
|
150
|
+
# Chutzpah Test files
|
151
|
+
_Chutzpah*
|
152
|
+
|
153
|
+
# Visual C++ cache files
|
154
|
+
ipch/
|
155
|
+
*.aps
|
156
|
+
*.ncb
|
157
|
+
*.opendb
|
158
|
+
*.opensdf
|
159
|
+
*.sdf
|
160
|
+
*.cachefile
|
161
|
+
*.VC.db
|
162
|
+
*.VC.VC.opendb
|
163
|
+
|
164
|
+
# Visual Studio profiler
|
165
|
+
*.psess
|
166
|
+
*.vsp
|
167
|
+
*.vspx
|
168
|
+
*.sap
|
169
|
+
|
170
|
+
# Visual Studio Trace Files
|
171
|
+
*.e2e
|
172
|
+
|
173
|
+
# TFS 2012 Local Workspace
|
174
|
+
$tf/
|
175
|
+
|
176
|
+
# Guidance Automation Toolkit
|
177
|
+
*.gpState
|
178
|
+
|
179
|
+
# ReSharper is a .NET coding add-in
|
180
|
+
_ReSharper*/
|
181
|
+
*.[Rr]e[Ss]harper
|
182
|
+
*.DotSettings.user
|
183
|
+
|
184
|
+
# JustCode is a .NET coding add-in
|
185
|
+
.JustCode
|
186
|
+
|
187
|
+
# TeamCity is a build add-in
|
188
|
+
_TeamCity*
|
189
|
+
|
190
|
+
# DotCover is a Code Coverage Tool
|
191
|
+
*.dotCover
|
192
|
+
|
193
|
+
# AxoCover is a Code Coverage Tool
|
194
|
+
.axoCover/*
|
195
|
+
!.axoCover/settings.json
|
196
|
+
|
197
|
+
# Visual Studio code coverage results
|
198
|
+
*.coverage
|
199
|
+
*.coveragexml
|
200
|
+
|
201
|
+
# NCrunch
|
202
|
+
_NCrunch_*
|
203
|
+
.*crunch*.local.xml
|
204
|
+
nCrunchTemp_*
|
205
|
+
|
206
|
+
# MightyMoose
|
207
|
+
*.mm.*
|
208
|
+
AutoTest.Net/
|
209
|
+
|
210
|
+
# Web workbench (sass)
|
211
|
+
.sass-cache/
|
212
|
+
|
213
|
+
# Installshield output folder
|
214
|
+
[Ee]xpress/
|
215
|
+
|
216
|
+
# DocProject is a documentation generator add-in
|
217
|
+
DocProject/buildhelp/
|
218
|
+
DocProject/Help/*.HxT
|
219
|
+
DocProject/Help/*.HxC
|
220
|
+
DocProject/Help/*.hhc
|
221
|
+
DocProject/Help/*.hhk
|
222
|
+
DocProject/Help/*.hhp
|
223
|
+
DocProject/Help/Html2
|
224
|
+
DocProject/Help/html
|
225
|
+
|
226
|
+
# Click-Once directory
|
227
|
+
publish/
|
228
|
+
|
229
|
+
# Publish Web Output
|
230
|
+
*.[Pp]ublish.xml
|
231
|
+
*.azurePubxml
|
232
|
+
# Note: Comment the next line if you want to checkin your web deploy settings,
|
233
|
+
# but database connection strings (with potential passwords) will be unencrypted
|
234
|
+
*.pubxml
|
235
|
+
*.publishproj
|
236
|
+
|
237
|
+
# Microsoft Azure Web App publish settings. Comment the next line if you want to
|
238
|
+
# checkin your Azure Web App publish settings, but sensitive information contained
|
239
|
+
# in these scripts will be unencrypted
|
240
|
+
PublishScripts/
|
241
|
+
|
242
|
+
# NuGet Packages
|
243
|
+
*.nupkg
|
244
|
+
# The packages folder can be ignored because of Package Restore
|
245
|
+
**/[Pp]ackages/*
|
246
|
+
# except build/, which is used as an MSBuild target.
|
247
|
+
!**/[Pp]ackages/build/
|
248
|
+
# Uncomment if necessary however generally it will be regenerated when needed
|
249
|
+
#!**/[Pp]ackages/repositories.config
|
250
|
+
# NuGet v3's project.json files produces more ignorable files
|
251
|
+
*.nuget.props
|
252
|
+
*.nuget.targets
|
253
|
+
|
254
|
+
# Microsoft Azure Build Output
|
255
|
+
csx/
|
256
|
+
*.build.csdef
|
257
|
+
|
258
|
+
# Microsoft Azure Emulator
|
259
|
+
ecf/
|
260
|
+
rcf/
|
261
|
+
|
262
|
+
# Windows Store app package directories and files
|
263
|
+
AppPackages/
|
264
|
+
BundleArtifacts/
|
265
|
+
Package.StoreAssociation.xml
|
266
|
+
_pkginfo.txt
|
267
|
+
*.appx
|
268
|
+
|
269
|
+
# Visual Studio cache files
|
270
|
+
# files ending in .cache can be ignored
|
271
|
+
*.[Cc]ache
|
272
|
+
# but keep track of directories ending in .cache
|
273
|
+
!*.[Cc]ache/
|
274
|
+
|
275
|
+
# Others
|
276
|
+
ClientBin/
|
277
|
+
~$*
|
278
|
+
*~
|
279
|
+
*.dbmdl
|
280
|
+
*.dbproj.schemaview
|
281
|
+
*.jfm
|
282
|
+
*.pfx
|
283
|
+
*.publishsettings
|
284
|
+
orleans.codegen.cs
|
285
|
+
|
286
|
+
# Including strong name files can present a security risk
|
287
|
+
# (https://github.com/github/gitignore/pull/2483#issue-259490424)
|
288
|
+
#*.snk
|
289
|
+
|
290
|
+
# Since there are multiple workflows, uncomment next line to ignore bower_components
|
291
|
+
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
|
292
|
+
#bower_components/
|
293
|
+
|
294
|
+
# RIA/Silverlight projects
|
295
|
+
Generated_Code/
|
296
|
+
|
297
|
+
# Backup & report files from converting an old project file
|
298
|
+
# to a newer Visual Studio version. Backup files are not needed,
|
299
|
+
# because we have git ;-)
|
300
|
+
_UpgradeReport_Files/
|
301
|
+
Backup*/
|
302
|
+
UpgradeLog*.XML
|
303
|
+
UpgradeLog*.htm
|
304
|
+
ServiceFabricBackup/
|
305
|
+
|
306
|
+
# SQL Server files
|
307
|
+
*.mdf
|
308
|
+
*.ldf
|
309
|
+
*.ndf
|
310
|
+
|
311
|
+
# Business Intelligence projects
|
312
|
+
*.rdl.data
|
313
|
+
*.bim.layout
|
314
|
+
*.bim_*.settings
|
315
|
+
*.rptproj.rsuser
|
316
|
+
|
317
|
+
# Microsoft Fakes
|
318
|
+
FakesAssemblies/
|
319
|
+
|
320
|
+
# GhostDoc plugin setting file
|
321
|
+
*.GhostDoc.xml
|
322
|
+
|
323
|
+
# Node.js Tools for Visual Studio
|
324
|
+
.ntvs_analysis.dat
|
325
|
+
node_modules/
|
326
|
+
|
327
|
+
# Visual Studio 6 build log
|
328
|
+
*.plg
|
329
|
+
|
330
|
+
# Visual Studio 6 workspace options file
|
331
|
+
*.opt
|
332
|
+
|
333
|
+
# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
|
334
|
+
*.vbw
|
335
|
+
|
336
|
+
# Visual Studio LightSwitch build output
|
337
|
+
**/*.HTMLClient/GeneratedArtifacts
|
338
|
+
**/*.DesktopClient/GeneratedArtifacts
|
339
|
+
**/*.DesktopClient/ModelManifest.xml
|
340
|
+
**/*.Server/GeneratedArtifacts
|
341
|
+
**/*.Server/ModelManifest.xml
|
342
|
+
_Pvt_Extensions
|
343
|
+
|
344
|
+
# Paket dependency manager
|
345
|
+
.paket/paket.exe
|
346
|
+
paket-files/
|
347
|
+
|
348
|
+
# FAKE - F# Make
|
349
|
+
.fake/
|
350
|
+
|
351
|
+
# JetBrains Rider
|
352
|
+
.idea/
|
353
|
+
*.sln.iml
|
354
|
+
|
355
|
+
# CodeRush
|
356
|
+
.cr/
|
357
|
+
|
358
|
+
# Python Tools for Visual Studio (PTVS)
|
359
|
+
__pycache__/
|
360
|
+
*.pyc
|
361
|
+
|
362
|
+
# Cake - Uncomment if you are using it
|
363
|
+
# tools/**
|
364
|
+
# !tools/packages.config
|
365
|
+
|
366
|
+
# Tabs Studio
|
367
|
+
*.tss
|
368
|
+
|
369
|
+
# Telerik's JustMock configuration file
|
370
|
+
*.jmconfig
|
371
|
+
|
372
|
+
# BizTalk build output
|
373
|
+
*.btp.cs
|
374
|
+
*.btm.cs
|
375
|
+
*.odx.cs
|
376
|
+
*.xsd.cs
|
377
|
+
|
378
|
+
# OpenCover UI analysis results
|
379
|
+
OpenCover/
|
380
|
+
|
381
|
+
# Azure Stream Analytics local run output
|
382
|
+
ASALocalRun/
|
383
|
+
|
384
|
+
# MSBuild Binary and Structured Log
|
385
|
+
*.binlog
|
386
|
+
|
387
|
+
# NVidia Nsight GPU debugger configuration file
|
388
|
+
*.nvuser
|
389
|
+
### JetBrains template
|
390
|
+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
|
391
|
+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
|
392
|
+
|
393
|
+
# User-specific stuff:
|
394
|
+
.idea/**/workspace.xml
|
395
|
+
.idea/**/tasks.xml
|
396
|
+
.idea/dictionaries
|
397
|
+
|
398
|
+
# Sensitive or high-churn files:
|
399
|
+
.idea/**/dataSources/
|
400
|
+
.idea/**/dataSources.ids
|
401
|
+
.idea/**/dataSources.local.xml
|
402
|
+
.idea/**/sqlDataSources.xml
|
403
|
+
.idea/**/dynamic.xml
|
404
|
+
.idea/**/uiDesigner.xml
|
405
|
+
|
406
|
+
# Gradle:
|
407
|
+
.idea/**/gradle.xml
|
408
|
+
.idea/**/libraries
|
409
|
+
|
410
|
+
# CMake
|
411
|
+
cmake-build-debug/
|
412
|
+
cmake-build-release/
|
413
|
+
|
414
|
+
# Mongo Explorer plugin:
|
415
|
+
.idea/**/mongoSettings.xml
|
416
|
+
|
417
|
+
## File-based project format:
|
418
|
+
*.iws
|
419
|
+
|
420
|
+
## Plugin-specific files:
|
421
|
+
|
422
|
+
# IntelliJ
|
423
|
+
out/
|
424
|
+
# mpeltonen/sbt-idea plugin
|
425
|
+
.idea_modules/
|
426
|
+
|
427
|
+
# JIRA plugin
|
428
|
+
atlassian-ide-plugin.xml
|
429
|
+
|
430
|
+
# Cursive Clojure plugin
|
431
|
+
.idea/replstate.xml
|
432
|
+
|
433
|
+
# Crashlytics plugin (for Android Studio and IntelliJ)
|
434
|
+
com_crashlytics_export_strings.xml
|
435
|
+
crashlytics.properties
|
436
|
+
crashlytics-build.properties
|
437
|
+
fabric.properties
|
438
|
+
|
439
|
+
.DS_STORE
|
440
|
+
.DS_Store
|
441
|
+
|
442
|
+
# Report Directories
|
443
|
+
output
|
444
|
+
allure-report
|
445
|
+
hsd-report
|
446
|
+
|
447
|
+
# Appium text files used for loading capabilities
|
448
|
+
/appium-android.txt
|
449
|
+
/appium-ios.txt
|
450
|
+
|
451
|
+
# Pre loaded environment variables
|
452
|
+
.env
|
453
|
+
/environment.properties
|
454
|
+
|
455
|
+
tmp/
|
456
|
+
|
457
|
+
.vscode/
|
data/.rspec
ADDED
data/.rubocop.yml
ADDED
data/.travis.yml
ADDED
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
2
|
+
|
3
|
+
## Our Pledge
|
4
|
+
|
5
|
+
In the interest of fostering an open and welcoming environment, we as
|
6
|
+
contributors and maintainers pledge to making participation in our project and
|
7
|
+
our community a harassment-free experience for everyone, regardless of age, body
|
8
|
+
size, disability, ethnicity, gender identity and expression, level of experience,
|
9
|
+
nationality, personal appearance, race, religion, or sexual identity and
|
10
|
+
orientation.
|
11
|
+
|
12
|
+
## Our Standards
|
13
|
+
|
14
|
+
Examples of behavior that contributes to creating a positive environment
|
15
|
+
include:
|
16
|
+
|
17
|
+
* Using welcoming and inclusive language
|
18
|
+
* Being respectful of differing viewpoints and experiences
|
19
|
+
* Gracefully accepting constructive criticism
|
20
|
+
* Focusing on what is best for the community
|
21
|
+
* Showing empathy towards other community members
|
22
|
+
|
23
|
+
Examples of unacceptable behavior by participants include:
|
24
|
+
|
25
|
+
* The use of sexualized language or imagery and unwelcome sexual attention or
|
26
|
+
advances
|
27
|
+
* Trolling, insulting/derogatory comments, and personal or political attacks
|
28
|
+
* Public or private harassment
|
29
|
+
* Publishing others' private information, such as a physical or electronic
|
30
|
+
address, without explicit permission
|
31
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
32
|
+
professional setting
|
33
|
+
|
34
|
+
## Our Responsibilities
|
35
|
+
|
36
|
+
Project maintainers are responsible for clarifying the standards of acceptable
|
37
|
+
behavior and are expected to take appropriate and fair corrective action in
|
38
|
+
response to any instances of unacceptable behavior.
|
39
|
+
|
40
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
41
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
42
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
43
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
44
|
+
threatening, offensive, or harmful.
|
45
|
+
|
46
|
+
## Scope
|
47
|
+
|
48
|
+
This Code of Conduct applies both within project spaces and in public spaces
|
49
|
+
when an individual is representing the project or its community. Examples of
|
50
|
+
representing a project or community include using an official project e-mail
|
51
|
+
address, posting via an official social media account, or acting as an appointed
|
52
|
+
representative at an online or offline event. Representation of a project may be
|
53
|
+
further defined and clarified by project maintainers.
|
54
|
+
|
55
|
+
## Enforcement
|
56
|
+
|
57
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
58
|
+
reported by contacting the project team at jdavis@qualityworkscg.com. All
|
59
|
+
complaints will be reviewed and investigated and will result in a response that
|
60
|
+
is deemed necessary and appropriate to the circumstances. The project team is
|
61
|
+
obligated to maintain confidentiality with regard to the reporter of an incident.
|
62
|
+
Further details of specific enforcement policies may be posted separately.
|
63
|
+
|
64
|
+
Project maintainers who do not follow or enforce the Code of Conduct in good
|
65
|
+
faith may face temporary or permanent repercussions as determined by other
|
66
|
+
members of the project's leadership.
|
67
|
+
|
68
|
+
## Attribution
|
69
|
+
|
70
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
71
|
+
available at [http://contributor-covenant.org/version/1/4][version]
|
72
|
+
|
73
|
+
[homepage]: http://contributor-covenant.org
|
74
|
+
[version]: http://contributor-covenant.org/version/1/4/
|
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
@@ -0,0 +1,68 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
parallel_appium (0.2.0)
|
5
|
+
|
6
|
+
GEM
|
7
|
+
remote: https://rubygems.org/
|
8
|
+
specs:
|
9
|
+
appium_lib (9.14.1)
|
10
|
+
appium_lib_core (~> 1.7.0)
|
11
|
+
nokogiri (~> 1.8, >= 1.8.1)
|
12
|
+
tomlrb (~> 1.1)
|
13
|
+
appium_lib_core (1.7.0)
|
14
|
+
faye-websocket (~> 0.10.0)
|
15
|
+
selenium-webdriver (~> 3.5)
|
16
|
+
childprocess (0.9.0)
|
17
|
+
ffi (~> 1.0, >= 1.0.11)
|
18
|
+
diff-lcs (1.3)
|
19
|
+
eventmachine (1.2.7)
|
20
|
+
faye-websocket (0.10.7)
|
21
|
+
eventmachine (>= 0.12.0)
|
22
|
+
websocket-driver (>= 0.5.1)
|
23
|
+
ffi (1.9.25)
|
24
|
+
json (1.8.6)
|
25
|
+
mini_portile2 (2.3.0)
|
26
|
+
nokogiri (1.8.2)
|
27
|
+
mini_portile2 (~> 2.3.0)
|
28
|
+
parallel (1.12.1)
|
29
|
+
parallel_tests (2.21.3)
|
30
|
+
parallel
|
31
|
+
rake (10.5.0)
|
32
|
+
rspec (3.7.0)
|
33
|
+
rspec-core (~> 3.7.0)
|
34
|
+
rspec-expectations (~> 3.7.0)
|
35
|
+
rspec-mocks (~> 3.7.0)
|
36
|
+
rspec-core (3.7.1)
|
37
|
+
rspec-support (~> 3.7.0)
|
38
|
+
rspec-expectations (3.7.0)
|
39
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
40
|
+
rspec-support (~> 3.7.0)
|
41
|
+
rspec-mocks (3.7.0)
|
42
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
43
|
+
rspec-support (~> 3.7.0)
|
44
|
+
rspec-support (3.7.1)
|
45
|
+
rubyzip (1.2.1)
|
46
|
+
selenium-webdriver (3.12.0)
|
47
|
+
childprocess (~> 0.5)
|
48
|
+
rubyzip (~> 1.2)
|
49
|
+
tomlrb (1.2.6)
|
50
|
+
websocket-driver (0.7.0)
|
51
|
+
websocket-extensions (>= 0.1.0)
|
52
|
+
websocket-extensions (0.1.3)
|
53
|
+
|
54
|
+
PLATFORMS
|
55
|
+
ruby
|
56
|
+
|
57
|
+
DEPENDENCIES
|
58
|
+
appium_lib (~> 9.14)
|
59
|
+
bundler (~> 1.16)
|
60
|
+
json (~> 1.8)
|
61
|
+
parallel (~> 1.12)
|
62
|
+
parallel_appium!
|
63
|
+
parallel_tests (~> 2.21)
|
64
|
+
rake (~> 10.0)
|
65
|
+
rspec (~> 3.0)
|
66
|
+
|
67
|
+
BUNDLED WITH
|
68
|
+
1.16.2
|