appium_console 2.9.2 → 2.10.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/appium_console.gemspec +1 -1
- data/lib/appium_console.rb +7 -7
- data/lib/appium_console/version.rb +2 -2
- data/lib/cli.rb +47 -39
- data/readme.md +0 -3
- data/release_notes.md +6 -0
- metadata +4 -5
- data/templates/appium.txt.erb +0 -17
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6f7f3c2ea9dadac7784c21e134154b57cc5d3a52
|
4
|
+
data.tar.gz: 0ae3dce72a4ac061483ddf479aa537c4e23e0ad7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 549d3c6b7ad263301cfca51f075b34edf0ad001e02196c113ce6705921c8f69b937ca3cc6812037192ecd3222dc29e44cf0e6825748b197108f0fb4766b4af22
|
7
|
+
data.tar.gz: 8d6140a70f246a5c376a829258df8f93c1f72a336eb5a8edfeb3718a1ba5d50e22c09bdb656b702953e9a5ebde74c3e7add15168bcf11f53612e244d4ea2a4fe
|
data/appium_console.gemspec
CHANGED
@@ -26,7 +26,7 @@ Gem::Specification.new do |s|
|
|
26
26
|
# appium_lib version must match ruby console version.
|
27
27
|
s.add_runtime_dependency 'appium_lib', '~> 9.16'
|
28
28
|
s.add_runtime_dependency 'awesome_print', '~> 1.7'
|
29
|
-
s.add_runtime_dependency 'pry', '~> 0.
|
29
|
+
s.add_runtime_dependency 'pry', '~> 0.12.0'
|
30
30
|
s.add_runtime_dependency 'bond', '~> 0.5'
|
31
31
|
s.add_runtime_dependency 'spec', '~> 5.3', '>= 5.3.1'
|
32
32
|
s.add_runtime_dependency 'thor', '~> 0.19'
|
data/lib/appium_console.rb
CHANGED
@@ -15,8 +15,8 @@ module Appium
|
|
15
15
|
class << self
|
16
16
|
def setup appium_txt_path
|
17
17
|
Pry.send(:define_singleton_method, :pry_load_appium_txt) do |opts = {}|
|
18
|
-
verbose
|
19
|
-
path
|
18
|
+
verbose = opts.fetch :verbose, false
|
19
|
+
path = appium_txt_path
|
20
20
|
Appium.load_appium_txt file: path, verbose: verbose
|
21
21
|
end
|
22
22
|
|
@@ -36,10 +36,10 @@ module Appium
|
|
36
36
|
|
37
37
|
def start
|
38
38
|
AwesomePrint.pry!
|
39
|
-
start = File.expand_path '
|
40
|
-
cmd
|
39
|
+
start = File.expand_path 'start.rb', __dir__
|
40
|
+
cmd = ['-r', start]
|
41
41
|
|
42
|
-
parsed
|
42
|
+
parsed = Pry.pry_load_appium_txt verbose: true
|
43
43
|
has_requires = parsed && parsed[:appium_lib] && parsed[:appium_lib][:require]
|
44
44
|
if has_requires
|
45
45
|
requires = parsed[:appium_lib][:require]
|
@@ -52,8 +52,8 @@ module Appium
|
|
52
52
|
$stdout.puts "pry #{cmd.join(' ')}"
|
53
53
|
end
|
54
54
|
|
55
|
-
Pry.hooks.add_hook(:after_session,
|
56
|
-
output.puts
|
55
|
+
Pry.hooks.add_hook(:after_session, 'Release session hook') do |output, binding, pry|
|
56
|
+
output.puts 'Closing appium session...'
|
57
57
|
$driver.x
|
58
58
|
end
|
59
59
|
|
@@ -2,6 +2,6 @@
|
|
2
2
|
# Define Appium module so version can be required directly.
|
3
3
|
module Appium; end unless defined? Appium
|
4
4
|
module Appium::Console
|
5
|
-
VERSION = '2.
|
6
|
-
DATE = '2018-
|
5
|
+
VERSION = '2.10.0' unless defined? ::Appium::Console::VERSION
|
6
|
+
DATE = '2018-12-19' unless defined? ::Appium::Console::DATE
|
7
7
|
end
|
data/lib/cli.rb
CHANGED
@@ -8,74 +8,82 @@ require 'appium_console'
|
|
8
8
|
module Appium::CLI
|
9
9
|
module Config
|
10
10
|
class << self
|
11
|
-
def
|
12
|
-
|
11
|
+
def default_appium_txt_path
|
12
|
+
'appium.txt'
|
13
13
|
end
|
14
14
|
|
15
|
-
def
|
16
|
-
|
15
|
+
def template(caps)
|
16
|
+
<<-EOS.gsub(/skip\s/, '')
|
17
|
+
[caps]
|
18
|
+
platformName = "#{caps[:platform_name]}"
|
19
|
+
#{ caps[:platform_version] ? "platformVersion = \"#{caps[:platform_version]}\"" : 'skip' }
|
20
|
+
#{ caps[:device_name] ? "deviceName = \"#{caps[:device_name]}\"" : 'skip' }
|
21
|
+
app = "#{caps[:path_to_app]}"
|
22
|
+
#{ caps[:app_package] ? "appPackage = \"#{caps[:app_package]}\"" : 'skip' }
|
23
|
+
#{ caps[:app_activity] ? "appActivity = \"#{caps[:app_activity]}\"" : 'skip' }
|
24
|
+
|
25
|
+
[appium_lib]
|
26
|
+
server_url = "http://127.0.0.1:4723/wd/hub"
|
27
|
+
sauce_username = ""
|
28
|
+
sauce_access_key = ""
|
29
|
+
EOS
|
17
30
|
end
|
18
31
|
end
|
19
32
|
end
|
20
33
|
|
21
34
|
class Setup < Thor
|
22
|
-
desc
|
35
|
+
desc 'ios', 'Generates toml for ios'
|
23
36
|
def ios
|
24
|
-
toml
|
25
|
-
template =
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
}
|
34
|
-
f.puts template.result(binding)
|
35
|
-
end
|
37
|
+
toml = File.join(Dir.pwd, Config.default_appium_txt_path)
|
38
|
+
template = Config.template(
|
39
|
+
automation_name: 'XCUITest',
|
40
|
+
platform_name: 'iOS',
|
41
|
+
device_name: 'iPhone Simulator',
|
42
|
+
platform_version: '12.0',
|
43
|
+
path_to_app: '/path/to/app_bundle'
|
44
|
+
)
|
45
|
+
File.write(toml, template)
|
36
46
|
end
|
37
47
|
|
38
|
-
desc
|
48
|
+
desc 'android', 'Generates toml for android'
|
39
49
|
def android
|
40
|
-
toml
|
41
|
-
template =
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
}
|
51
|
-
f.puts template.result(binding)
|
52
|
-
end
|
50
|
+
toml = File.join(Dir.pwd, Config.default_appium_txt_path)
|
51
|
+
template = Config.template(
|
52
|
+
automation_name: 'uiautomator2',
|
53
|
+
platform_name: 'Android',
|
54
|
+
device_name: 'Pixel 3',
|
55
|
+
path_to_app: '/path/to/apk',
|
56
|
+
app_package: 'com.package.example',
|
57
|
+
app_activity: 'com.package.example.ExampleActivity'
|
58
|
+
)
|
59
|
+
File.write(toml, template)
|
53
60
|
end
|
54
61
|
end
|
55
62
|
|
56
63
|
class Main < Thor
|
57
|
-
desc
|
64
|
+
desc 'version', 'Prints version of appium_lib and appium_console'
|
58
65
|
def version
|
59
|
-
puts
|
60
|
-
|
61
|
-
|
66
|
+
puts <<-VERSION
|
67
|
+
appium_console: v#{::Appium::Console::VERSION}
|
68
|
+
appium_lib: v#{::Appium::VERSION}
|
69
|
+
VERSION
|
62
70
|
end
|
63
71
|
|
64
|
-
desc
|
72
|
+
desc 'toml [FILE]', 'Starts appium console session with path to toml file'
|
65
73
|
def toml(appium_txt_path = Config.default_appium_txt_path)
|
66
74
|
Appium::Console.setup appium_txt_path
|
67
75
|
Appium::Console.start
|
68
76
|
end
|
69
77
|
|
70
|
-
desc
|
78
|
+
desc 'init', 'Starts appium console session with defaults settings'
|
71
79
|
def init
|
72
80
|
Appium::Console.setup Config.default_appium_txt_path
|
73
81
|
Appium::Console.start
|
74
82
|
end
|
75
83
|
default_command :init
|
76
84
|
|
77
|
-
desc
|
78
|
-
subcommand
|
85
|
+
desc 'setup', 'Generates toml file'
|
86
|
+
subcommand 'setup', Setup
|
79
87
|
end
|
80
88
|
end
|
81
89
|
|
data/readme.md
CHANGED
@@ -1,7 +1,4 @@
|
|
1
1
|
[](https://rubygems.org/gems/appium_console)
|
2
|
-
[](http://issuestats.com/github/appium/ruby_console)
|
3
|
-
[](http://issuestats.com/github/appium/ruby_console)
|
4
|
-
[](http://badge.fury.io/rb/appium_console)[](https://gemnasium.com/appium/ruby_console)
|
5
2
|
|
6
3
|
# Appium Ruby Console
|
7
4
|
|
data/release_notes.md
CHANGED
@@ -1,3 +1,9 @@
|
|
1
|
+
#### v2.10.0 2018-12-19
|
2
|
+
|
3
|
+
- [6b12201](https://github.com/appium/ruby_console/commit/6b12201e65333d27cf30006f19a8d793844834c4) Release 2.10.0
|
4
|
+
- [ded6f78](https://github.com/appium/ruby_console/commit/ded6f786ec143e6b4abd50c1c5553fd5171c886f) Clean, use heredoc (#96)
|
5
|
+
|
6
|
+
|
1
7
|
#### v2.9.2 2018-11-30
|
2
8
|
|
3
9
|
- [510438c](https://github.com/appium/ruby_console/commit/510438cbf0dca2747923150e60c61e8f2e91e7ad) Release 2.9.2
|
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.
|
4
|
+
version: 2.10.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: 2018-
|
12
|
+
date: 2018-12-19 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: appium_lib
|
@@ -45,14 +45,14 @@ dependencies:
|
|
45
45
|
requirements:
|
46
46
|
- - "~>"
|
47
47
|
- !ruby/object:Gem::Version
|
48
|
-
version: 0.
|
48
|
+
version: 0.12.0
|
49
49
|
type: :runtime
|
50
50
|
prerelease: false
|
51
51
|
version_requirements: !ruby/object:Gem::Requirement
|
52
52
|
requirements:
|
53
53
|
- - "~>"
|
54
54
|
- !ruby/object:Gem::Version
|
55
|
-
version: 0.
|
55
|
+
version: 0.12.0
|
56
56
|
- !ruby/object:Gem::Dependency
|
57
57
|
name: bond
|
58
58
|
requirement: !ruby/object:Gem::Requirement
|
@@ -172,7 +172,6 @@ files:
|
|
172
172
|
- lib/start.rb
|
173
173
|
- readme.md
|
174
174
|
- release_notes.md
|
175
|
-
- templates/appium.txt.erb
|
176
175
|
- test/simple.rb
|
177
176
|
homepage: https://github.com/appium/ruby_console
|
178
177
|
licenses:
|
data/templates/appium.txt.erb
DELETED
@@ -1,17 +0,0 @@
|
|
1
|
-
[caps]
|
2
|
-
platformName = "<%= caps[:platform_name] %>"
|
3
|
-
<% if !caps[:platform_version].nil? -%>
|
4
|
-
platformVersion = "<%= caps[:platform_version] %>"
|
5
|
-
<% end -%>
|
6
|
-
deviceName = "<%= caps[:device_name] %>"
|
7
|
-
app = "<%= caps[:path_to_app] %>"
|
8
|
-
<% if !caps[:app_package].nil? -%>
|
9
|
-
appPackage = "<%= caps[:app_package] %>"
|
10
|
-
<% end -%>
|
11
|
-
<% if !caps[:app_activity].nil? -%>
|
12
|
-
appActivity = "<%= caps[:app_activity] %>"
|
13
|
-
<% end -%>
|
14
|
-
|
15
|
-
[appium_lib]
|
16
|
-
sauce_username = ""
|
17
|
-
sauce_access_key = ""
|