appium_lib 11.0.0 → 12.0.0.rc2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 86642e929b104b2c8a37f72c314f8602d46c6d50968150d6c1de79f07eff1809
4
- data.tar.gz: ff94ab1f9e8670ebed5e5c62a17c603cbc9de4d0ec5059cfd6b0defb8802a1dc
3
+ metadata.gz: 52283e92f78a4a0e68d353ecd3287e6f615ce1d15360ad7eacd2bd382e5e7f3e
4
+ data.tar.gz: ca436fcedfca01656a12f4c60b575217ca6b9ab11f501a33ad17781993d39284
5
5
  SHA512:
6
- metadata.gz: a890f9ce5fa1ef9e46d31c133b129280bdf8ba9500854d5d45e6d02f68838002f1daa1498e570cc2f438fb33c69db641a5c11378a55c47d3fd953fae9e2b204d
7
- data.tar.gz: cf5baaf622ff493532aa486c0ef5d2e8313b76536124d12c3f52cd0467f2faeca9f9f8fc58d5d8f3defe69810d4a9b03061aa3ad31a70271240cc78ba94b9bf4
6
+ metadata.gz: 49efa218bb8ba7bd688dde7f4b94767667b78eaaa445f6f5841449d35f56b2b0d4b88ae81593ae955da6b8071eb5dac67bcde4dc321ebd6aa55d47bc58d7ba04
7
+ data.tar.gz: 6c6c54d951e063cbb3da2d1f0d4a6b39cc050e845d4e40a47b0b167074150dc1dda01f99f4656102ad2aa62fa6c9d260729d599acf9fce4dc79285a3fd477663
@@ -0,0 +1,18 @@
1
+ # Ruby
2
+ # Package your Ruby project.
3
+ # Add steps that install rails, analyze code, save build artifacts, deploy, and more:
4
+ # https://docs.microsoft.com/azure/devops/pipelines/languages/ruby
5
+
6
+ trigger:
7
+ - main
8
+
9
+ pool:
10
+ vmImage: 'macOS-10.15'
11
+
12
+ steps:
13
+ - task: UseRubyVersion@0
14
+ inputs:
15
+ versionSpec: '>= 2.6'
16
+
17
+ - script: bundle install --retry=3 --jobs=4
18
+ displayName: 'bundle install'
@@ -0,0 +1,8 @@
1
+ version: 2
2
+ updates:
3
+ - package-ecosystem: bundler
4
+ directory: "/"
5
+ schedule:
6
+ interval: daily
7
+ time: "11:00"
8
+ open-pull-requests-limit: 10
@@ -11,7 +11,7 @@ jobs:
11
11
  strategy:
12
12
  fail-fast: false
13
13
  matrix:
14
- ruby: [2.4, 2.5, 2.6, 2.7]
14
+ ruby: [2.6, 2.7, 3.0]
15
15
 
16
16
  runs-on: ubuntu-latest
17
17
 
data/.rubocop.yml CHANGED
@@ -1,5 +1,5 @@
1
1
  AllCops:
2
- TargetRubyVersion: 2.4
2
+ TargetRubyVersion: 2.6
3
3
  Metrics/LineLength:
4
4
  Max: 128
5
5
  Metrics/MethodLength:
@@ -31,7 +31,111 @@ Naming/AccessorMethodName:
31
31
  Enabled: false
32
32
  Naming/RescuedExceptionsVariableName:
33
33
  Enabled: false
34
- Layout/IndentHeredoc:
34
+ Layout/HeredocIndentation:
35
35
  Enabled: false
36
36
  Layout/RescueEnsureAlignment:
37
37
  Enabled: false
38
+ Layout/HashAlignment:
39
+ Enabled: false
40
+ Style/ExplicitBlockArgument:
41
+ Enabled: false
42
+ Style/OptionalBooleanParameter:
43
+ Enabled: false
44
+ Naming/MethodParameterName:
45
+ Enabled: false
46
+ Style/KeywordParametersOrder:
47
+ Enabled: false
48
+ Style/AccessorGrouping:
49
+ Enabled: false
50
+ Style/StringConcatenation:
51
+ Enabled: false
52
+ Lint/NonDeterministicRequireOrder:
53
+ Enabled: false
54
+ Gemspec/DateAssignment:
55
+ Enabled: true
56
+ Layout/LineEndStringConcatenationIndentation:
57
+ Enabled: true
58
+ Layout/SpaceBeforeBrackets:
59
+ Enabled: true
60
+ Lint/AmbiguousAssignment:
61
+ Enabled: true
62
+ Lint/AmbiguousOperatorPrecedence:
63
+ Enabled: false
64
+ Lint/AmbiguousRange:
65
+ Enabled: true
66
+ Lint/DeprecatedConstants:
67
+ Enabled: true
68
+ Lint/DuplicateBranch:
69
+ Enabled: true
70
+ Lint/DuplicateRegexpCharacterClassElement:
71
+ Enabled: true
72
+ Lint/EmptyBlock:
73
+ Enabled: true
74
+ Lint/EmptyClass:
75
+ Enabled: false
76
+ Lint/EmptyInPattern:
77
+ Enabled: true
78
+ Lint/IncompatibleIoSelectWithFiberScheduler:
79
+ Enabled: true
80
+ Lint/LambdaWithoutLiteralBlock:
81
+ Enabled: true
82
+ Lint/NoReturnInBeginEndBlocks:
83
+ Enabled: true
84
+ Lint/NumberedParameterAssignment:
85
+ Enabled: true
86
+ Lint/OrAssignmentToConstant:
87
+ Enabled: true
88
+ Lint/RedundantDirGlobSort:
89
+ Enabled: true
90
+ Lint/RequireRelativeSelfPath:
91
+ Enabled: true
92
+ Lint/SymbolConversion:
93
+ Enabled: true
94
+ Lint/ToEnumArguments:
95
+ Enabled: true
96
+ Lint/TripleQuotes:
97
+ Enabled: true
98
+ Lint/UnexpectedBlockArity:
99
+ Enabled: true
100
+ Lint/UnmodifiedReduceAccumulator:
101
+ Enabled: true
102
+ Security/IoMethods:
103
+ Enabled: true
104
+ Style/ArgumentsForwarding:
105
+ Enabled: true
106
+ Style/CollectionCompact:
107
+ Enabled: true
108
+ Style/DocumentDynamicEvalDefinition:
109
+ Enabled: true
110
+ Style/EndlessMethod:
111
+ Enabled: true
112
+ Style/HashConversion:
113
+ Enabled: false
114
+ Style/HashExcept:
115
+ Enabled: true
116
+ Style/IfWithBooleanLiteralBranches:
117
+ Enabled: true
118
+ Style/InPatternThen:
119
+ Enabled: true
120
+ Style/MultilineInPatternThen:
121
+ Enabled: true
122
+ Style/NegatedIfElseCondition:
123
+ Enabled: true
124
+ Style/NilLambda:
125
+ Enabled: true
126
+ Style/NumberedParameters:
127
+ Enabled: true
128
+ Style/NumberedParametersLimit:
129
+ Enabled: true
130
+ Style/QuotedSymbols:
131
+ Enabled: true
132
+ Style/RedundantArgument:
133
+ Enabled: true
134
+ Style/RedundantSelfAssignmentBranch:
135
+ Enabled: true
136
+ Style/SelectByRegexp:
137
+ Enabled: true
138
+ Style/StringChars:
139
+ Enabled: true
140
+ Style/SwapValues:
141
+ Enabled: true
data/CHANGELOG.md CHANGED
@@ -9,19 +9,22 @@ Release tags are https://github.com/appium/ruby_lib/releases .
9
9
 
10
10
  ### 2. Bug fixes
11
11
 
12
- ### 3. Deprecations
13
-
14
- ## 11.0.0 - 2020-12-19
12
+ ## 11.1.0 - 2020-12-29 (11.2.0 is the same as this version)
15
13
 
16
- Bump supported Ruby version to 2.4+
17
-
18
- [related changes](https://github.com/appium/ruby_lib_core/blob/master/CHANGELOG.md#400---2020-12-19) in ruby_lib_core.
14
+ Support Ruby 3
19
15
 
20
16
  ### 1. Enhancements
21
17
 
22
18
  ### 2. Bug fixes
23
19
 
24
20
  ### 3. Deprecations
21
+ - Rename `Appium::Ios::Xcuitest::Guesture#tap` to `Appium::Ios::Xcuitest::Guesture#one_finger_tap` to prevent conflicts with `tap` in Ruby
22
+
23
+ ## 11.0.0 - 2020-12-19
24
+
25
+ Bump supported Ruby version to 2.4+
26
+
27
+ [related changes](https://github.com/appium/ruby_lib_core/blob/master/CHANGELOG.md#400---2020-12-19) in ruby_lib_core.
25
28
 
26
29
  ## 10.6.0
27
30
  ### 1. Enhancements
data/appium_lib.gemspec CHANGED
@@ -1,7 +1,7 @@
1
1
  require_relative 'lib/appium_lib/version'
2
2
 
3
3
  Gem::Specification.new do |s|
4
- s.required_ruby_version = '>= 2.4'
4
+ s.required_ruby_version = '>= 2.6'
5
5
 
6
6
  s.name = 'appium_lib'
7
7
  s.version = Appium::VERSION
@@ -14,17 +14,17 @@ Gem::Specification.new do |s|
14
14
  s.homepage = 'https://github.com/appium/ruby_lib' # published as appium_lib
15
15
  s.require_paths = ['lib']
16
16
 
17
- s.add_runtime_dependency 'appium_lib_core', '~> 4.0'
17
+ s.add_runtime_dependency 'appium_lib_core', '5.0.0.rc6'
18
18
  s.add_runtime_dependency 'nokogiri', '~> 1.8', '>= 1.8.1'
19
- s.add_runtime_dependency 'tomlrb', '~> 1.1'
19
+ s.add_runtime_dependency 'tomlrb', '>= 1.1', '< 3.0'
20
20
 
21
21
  s.add_development_dependency 'appium_thor', '~> 1.1', '>= 1.1.4'
22
- s.add_development_dependency 'fakefs', '~> 0.13.0'
22
+ s.add_development_dependency 'fakefs', '~> 1.4.0'
23
23
  s.add_development_dependency 'hashdiff', '~> 1.0.0'
24
24
  s.add_development_dependency 'posix-spawn', '~> 0.3'
25
25
  s.add_development_dependency 'pry'
26
26
  s.add_development_dependency 'rake', '~> 13.0'
27
- s.add_development_dependency 'rubocop', '~> 0.68.1'
27
+ s.add_development_dependency 'rubocop', '1.22.2'
28
28
  s.add_development_dependency 'spec', '~> 5.3', '>= 5.3.4'
29
29
  s.add_development_dependency 'yard', '~> 0.9.11'
30
30