bucky-core 0.9.14 → 0.9.15

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
  SHA1:
3
- metadata.gz: 168d32b4b8668e9c8f8147d6b04e11ae18c1a3eb
4
- data.tar.gz: 14b3d823f29d0df70ffe2940221bf8d7833f58c0
3
+ metadata.gz: 0ddb52baa02b86a58cfcbb5d7acc62ea0cfa03d4
4
+ data.tar.gz: 5475a46d98386ea7aff925ce28fa4fec823fdff7
5
5
  SHA512:
6
- metadata.gz: a3a782f487cf7cb3c56ecb1628e52cc74efaefde79a16420bcb723a8bfa9628ab9e122652e30df9e91626555a5529e1d759fda99f248a2482f77dcc4b9a67eea
7
- data.tar.gz: 880bbe4d10ff837ddae6fa9c3c16db2a285e7174ce20d50a971b29976f4b7650da1c2069b2db5f781912ae1e07c2c3487f9bc84f15a7832e0a1572c0fcf40552
6
+ metadata.gz: 16e6764dcd2ab69806fe5da01e96609769e0030c1489b935a8b1dda529dd4c1727c9a3d25b3f2c681cbc913950ab89ab3e91e226cf9b6e22ac83b2a82bb12195
7
+ data.tar.gz: bd41541bb91647aff69a03fb188d0e0af5349ff38cedf93655710377a999a5d97bf9d3e658c26a1a7c6643d3aacc80facda30c46a90e1dec99842380a7bec815
@@ -9,6 +9,8 @@
9
9
  :iphone: 'iPhone X'
10
10
  :android: 'Galaxy S5'
11
11
  :ipad: 'iPad'
12
+ :chromedriver_flags: # If you want to use chromedriver options, please add like below
13
+ # - '--disable-dev-shm-usage'
12
14
  :user_agent: 'E2ETest (X11; Linux x86_64)'
13
15
  :driver_read_timeout: 60 # sec
14
16
  :driver_open_timeout: 60 # sec
@@ -9,6 +9,8 @@
9
9
  :iphone: 'iPhone X'
10
10
  :android: 'Galaxy S5'
11
11
  :ipad: 'iPad'
12
+ :chromedriver_flags: # If you want to use chromedriver options, please add like below
13
+ # - '--disable-dev-shm-usage'
12
14
  :user_agent: 'E2ETest (X11; Linux x86_64)'
13
15
  :driver_read_timeout: 60 # sec
14
16
  :driver_open_timeout: 60 # sec
@@ -57,6 +57,7 @@ module Bucky
57
57
  end
58
58
  chrome_options['goog:chromeOptions'][:args] << "--user-agent=#{@@config[:user_agent]}" if @@config[:user_agent]
59
59
  chrome_options['goog:chromeOptions'][:args] << '--headless' if @@config[:headless]
60
+ chrome_options['goog:chromeOptions'][:args].concat(@@config[:chromedriver_flags]) unless @@config[:chromedriver_flags].nil?
60
61
 
61
62
  Selenium::WebDriver::Remote::Capabilities.chrome(chrome_options)
62
63
  end
data/lib/bucky/version.rb CHANGED
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Bucky
4
4
  module Version
5
- VERSION = '0.9.14'
5
+ VERSION = '0.9.15'
6
6
  end
7
7
  end
@@ -9,6 +9,8 @@
9
9
  :iphone: 'iPhone X'
10
10
  :android: 'Galaxy S5'
11
11
  :ipad: 'iPad'
12
+ :chromedriver_flags: # If you want to use chromedriver options, please add like below
13
+ # - '--disable-dev-shm-usage'
12
14
  :user_agent: 'E2ETest (X11; Linux x86_64)'
13
15
  :driver_read_timeout: 60 # sec
14
16
  :driver_open_timeout: 60 # sec
@@ -9,6 +9,8 @@
9
9
  :iphone: 'iPhone X'
10
10
  :android: 'Galaxy S5'
11
11
  :ipad: 'iPad'
12
+ :chromedriver_flags: # If you want to use chromedriver options, please add like below
13
+ # - '--disable-dev-shm-usage'
12
14
  :user_agent: 'E2ETest (X11; Linux x86_64)'
13
15
  :driver_read_timeout: 60 # sec
14
16
  :driver_open_timeout: 60 # sec
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bucky-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.14
4
+ version: 0.9.15
5
5
  platform: ruby
6
6
  authors:
7
7
  - NaotoKishino