appium_console 2.14.0.rc2 → 3.0.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 23183d697d28e41b09ea274e9619450139474a2731df1425a6563dfb8d238fbd
4
- data.tar.gz: d7b3951b1406ac612bbbc4c2ce74d3a14741e22ade6c46033e5301fe98b5228f
3
+ metadata.gz: 28d7d644efb978e4f91e59a589d37f2b83deca757f68f56a768e172feb252e4a
4
+ data.tar.gz: 55316ba99cfa50f2c3c5fea94576d7832fdb302cf79bbbe6932dbcf7587e6057
5
5
  SHA512:
6
- metadata.gz: f62e3e0780023303d00cd69f28144ff4dd759639e47186a0680cb2fe91542e4f0d78875525aa21aee91d23e891262d31fdb269073d8f26a50ba6c9d747668e1d
7
- data.tar.gz: 80c0ff8284b0bbec260a605e9871d47479e71d03bd96f1e59a1eac57b8183f7560ff7183b132132167200c60b3d8de645aad1e50d9407f1991049abb6623d191
6
+ metadata.gz: 27a986fb80b7e88df6fb338d2e78f87cdd71cfc519beedbb2eaef340513419829976fc049719d9645c086030a5cc93c6247eef82fbf34055ef1737646d06f6af
7
+ data.tar.gz: bcad0b6f8e709462ea3551251c642f5de1c07917fc99eb857fe5b4bfe6d4a3be34dcbea0e5938bcd192150ae97f0cae7b99965a5b4546def76de3875f1141587
@@ -24,7 +24,7 @@ Gem::Specification.new do |s|
24
24
  s.require_paths = [ 'lib' ]
25
25
 
26
26
  # appium_lib version must match ruby console version.
27
- s.add_runtime_dependency 'appium_lib', '12.0.0.rc5'
27
+ s.add_runtime_dependency 'appium_lib', '12.0.0'
28
28
  s.add_runtime_dependency 'pry', '~> 0.14.0'
29
29
  s.add_runtime_dependency 'spec', '~> 5.3', '>= 5.3.1'
30
30
  s.add_runtime_dependency 'thor', '>= 0.19', '< 2.0'
@@ -4,7 +4,7 @@
4
4
  module Appium; end unless defined? Appium
5
5
  module Appium
6
6
  module Console
7
- VERSION = '2.14.0.rc2' unless defined? ::Appium::Console::VERSION
8
- DATE = '2021-11-05' unless defined? ::Appium::Console::DATE
7
+ VERSION = '3.0.0' unless defined? ::Appium::Console::VERSION
8
+ DATE = '2021-11-06' unless defined? ::Appium::Console::DATE
9
9
  end
10
10
  end
data/readme.md CHANGED
@@ -9,9 +9,9 @@
9
9
  - Read [a setup guide](http://appium.io/docs/en/about-appium/getting-started/?lang=en)
10
10
  2. Install `appium_console`
11
11
  ```bash
12
- gem uninstall -aIx appium_lib ;\
13
- gem uninstall -aIx appium_console ;\
14
- gem install --no-rdoc --no-ri appium_console
12
+ gem uninstall appium_lib
13
+ gem uninstall appium_console
14
+ gem install appium_console
15
15
  ```
16
16
  3. Run
17
17
  - The `arc` command starts Appium Ruby Console.
@@ -24,3 +24,8 @@
24
24
  ## Documentation
25
25
 
26
26
  - [ruby_lib](https://github.com/appium/ruby_lib)
27
+
28
+ ## Changelog
29
+ - 3.0.0
30
+ - Update ruby_lib version to v12
31
+
data/release_notes.md CHANGED
@@ -1,3 +1,17 @@
1
+ #### v3.0.0 2021-11-06
2
+
3
+ - [5e9d1c8](https://github.com/appium/ruby_console/commit/5e9d1c86e4f36d9ccb780c0f6d62af2b59c5eb71) Release 3.0.0
4
+ - [16d5490](https://github.com/appium/ruby_console/commit/16d54909e474602ba49c5c47a3cdb71ec8a07ab4) Merge branch 'master' of github.com:appium/ruby_console
5
+ - [8400d85](https://github.com/appium/ruby_console/commit/8400d85fb4b0b42c24da4cd6d015fbae27f92ed5) chore: update appium_lib requirement from = 12.0.0.rc4 to = 12.0.0.rc5 (#112)
6
+ - [266360d](https://github.com/appium/ruby_console/commit/266360dbd5d55e281b112bf1da9b5aeb41cc5c74) chore: bump version to rc2
7
+ - [fed136c](https://github.com/appium/ruby_console/commit/fed136ca4ca6575669a03e78d5ada5caed868945) chore: appium_lib to rc5
8
+ - [82685c4](https://github.com/appium/ruby_console/commit/82685c4132807169176acfc4312747c11401eb64) chore: bump version to rc
9
+ - [6defbab](https://github.com/appium/ruby_console/commit/6defbab391197221eaa8efe357fa4be6fb49382b) bump pry
10
+ - [22f7ac5](https://github.com/appium/ruby_console/commit/22f7ac5d1e3be2ff407dea7882e75416b8f84827) chore: update deps (#111)
11
+ - [4fbe06c](https://github.com/appium/ruby_console/commit/4fbe06c446172eeee51625f87c2e423545357068) chore: Create Dependabot config file (#109)
12
+ - [439be2c](https://github.com/appium/ruby_console/commit/439be2c8b7681c9fdfd4d6cf2f547b65a065c6e3) Update rubocop requirement from = 0.68.1 to = 1.8.1 (#108)
13
+
14
+
1
15
  #### v2.13.0 2021-01-25
2
16
 
3
17
  - [f7e8d18](https://github.com/appium/ruby_console/commit/f7e8d1869e1ca09e0434c299dcbe126be79a7e15) Release 2.13.0
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: appium_console
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.14.0.rc2
4
+ version: 3.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - code@bootstraponline.com
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2021-11-05 00:00:00.000000000 Z
12
+ date: 2021-11-06 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: appium_lib
@@ -17,14 +17,14 @@ dependencies:
17
17
  requirements:
18
18
  - - '='
19
19
  - !ruby/object:Gem::Version
20
- version: 12.0.0.rc5
20
+ version: 12.0.0
21
21
  type: :runtime
22
22
  prerelease: false
23
23
  version_requirements: !ruby/object:Gem::Requirement
24
24
  requirements:
25
25
  - - '='
26
26
  - !ruby/object:Gem::Version
27
- version: 12.0.0.rc5
27
+ version: 12.0.0
28
28
  - !ruby/object:Gem::Dependency
29
29
  name: pry
30
30
  requirement: !ruby/object:Gem::Requirement
@@ -183,9 +183,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
183
183
  version: '2.6'
184
184
  required_rubygems_version: !ruby/object:Gem::Requirement
185
185
  requirements:
186
- - - ">"
186
+ - - ">="
187
187
  - !ruby/object:Gem::Version
188
- version: 1.3.1
188
+ version: '0'
189
189
  requirements: []
190
190
  rubygems_version: 3.2.15
191
191
  signing_key: