apple_system_status 1.0.2 → 1.0.3
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/CHANGELOG.md +6 -3
- data/lib/apple_system_status/crawler.rb +9 -8
- data/lib/apple_system_status/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 97b708703fd16f253c9959156444c83c1f250aa617a6ec2627cae7623e0371b4
|
|
4
|
+
data.tar.gz: e009875f53bca759343f6854ad4df86f784b9ce8b916fca1c1f8c333b0cf7963
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ecfda672babc08284e5a7095dba62c20b30ee2672f361defc6b2eb9cd5d9a10f986a4d0d8e5713f9c032230f17c85639c95ff7d18f90f109ef82f4675fb3cb2f
|
|
7
|
+
data.tar.gz: 35cad0a7546f1a55e88595c370b630c96b3735c80a2da6a54623fb428f0bc73508d4323911d04a4ace553b9c89b778732fd435440363d9b1284f0c11d6d56e80
|
data/CHANGELOG.md
CHANGED
|
@@ -1,13 +1,16 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
-
## [
|
|
4
|
-
|
|
5
|
-
[Full Changelog](https://github.com/sue445/apple_system_status/compare/v1.0.1...HEAD)
|
|
3
|
+
## [v1.0.2](https://github.com/sue445/apple_system_status/tree/v1.0.2) (2018-09-23)
|
|
4
|
+
[Full Changelog](https://github.com/sue445/apple_system_status/compare/v1.0.1...v1.0.2)
|
|
6
5
|
|
|
7
6
|
**Closed issues:**
|
|
8
7
|
|
|
9
8
|
- Add chrome\_options\_args to Crawler\#initialize [\#30](https://github.com/sue445/apple_system_status/issues/30)
|
|
10
9
|
|
|
10
|
+
**Merged pull requests:**
|
|
11
|
+
|
|
12
|
+
- Add chrome\_options\_args to Crawler.perform [\#32](https://github.com/sue445/apple_system_status/pull/32) ([sue445](https://github.com/sue445))
|
|
13
|
+
|
|
11
14
|
## [v1.0.1](https://github.com/sue445/apple_system_status/tree/v1.0.1) (2018-09-23)
|
|
12
15
|
[Full Changelog](https://github.com/sue445/apple_system_status/compare/v1.0.0...v1.0.1)
|
|
13
16
|
|
|
@@ -16,16 +16,16 @@ module AppleSystemStatus
|
|
|
16
16
|
MAX_RETRY_COUNT = 5
|
|
17
17
|
|
|
18
18
|
# @param chrome_options_args [Array<String>]
|
|
19
|
-
|
|
19
|
+
# @param chrome_options_binary [String]
|
|
20
|
+
def initialize(chrome_options_args: DEFAULT_CHROME_OPTIONS_ARGS, chrome_options_binary: nil)
|
|
20
21
|
Capybara.register_driver :chrome_headless do |app|
|
|
21
22
|
client = Selenium::WebDriver::Remote::Http::Default.new
|
|
22
23
|
client.read_timeout = 120
|
|
23
24
|
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
)
|
|
25
|
+
chrome_options = { args: chrome_options_args }
|
|
26
|
+
chrome_options[:binary] = chrome_options_binary if chrome_options_binary
|
|
27
|
+
|
|
28
|
+
capabilities = Selenium::WebDriver::Remote::Capabilities.chrome(chromeOptions: chrome_options)
|
|
29
29
|
|
|
30
30
|
Capybara::Selenium::Driver.new(
|
|
31
31
|
app,
|
|
@@ -95,6 +95,7 @@ module AppleSystemStatus
|
|
|
95
95
|
# @param country [String] country code. (e.g. jp, ca, fr. default. us)
|
|
96
96
|
# @param title [String] If specified, narrow the service title
|
|
97
97
|
# @param chrome_options_args [Array<String>]
|
|
98
|
+
# @param chrome_options_binary [String]
|
|
98
99
|
# @return [Hash]
|
|
99
100
|
# @example response format
|
|
100
101
|
# {
|
|
@@ -104,8 +105,8 @@ module AppleSystemStatus
|
|
|
104
105
|
# ]
|
|
105
106
|
# }
|
|
106
107
|
# @link https://github.com/teampoltergeist/poltergeist#memory-leak
|
|
107
|
-
def self.perform(country: nil, title: nil, chrome_options_args: DEFAULT_CHROME_OPTIONS_ARGS)
|
|
108
|
-
crawler = AppleSystemStatus::Crawler.new(chrome_options_args: chrome_options_args)
|
|
108
|
+
def self.perform(country: nil, title: nil, chrome_options_args: DEFAULT_CHROME_OPTIONS_ARGS, chrome_options_binary: nil)
|
|
109
|
+
crawler = AppleSystemStatus::Crawler.new(chrome_options_args: chrome_options_args, chrome_options_binary: chrome_options_binary)
|
|
109
110
|
crawler.perform(country: country, title: title)
|
|
110
111
|
ensure
|
|
111
112
|
crawler.quit!
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: apple_system_status
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- sue445
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-
|
|
11
|
+
date: 2018-10-27 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: capybara
|