itamae-plugin-recipe-daddy 0.1.11 → 0.1.12
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/Gemfile.lock +5 -5
- data/lib/itamae/plugin/recipe/daddy/selenium/chrome.rb +10 -0
- data/lib/itamae/plugin/recipe/daddy/selenium/drivers/chromedriver.rb +1 -1
- data/lib/itamae/plugin/recipe/daddy/selenium/drivers/chromedriver_linux64-74.0.3729.6_sha256sum.txt +1 -0
- data/lib/itamae/plugin/recipe/daddy/selenium/install.rb +1 -0
- data/lib/itamae/plugin/recipe/daddy/selenium/templates/etc/yum.repos.d/google-chrome.repo.erb +6 -0
- data/lib/itamae_plugin_recipe_daddy/version.rb +4 -3
- metadata +5 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4ca5749c7d20f0a3b5e594c0ef28ace7f562d733b30b281131a84b5a999d00f8
|
4
|
+
data.tar.gz: ca0e76a7d4bcce5c69019a5e7eaab85efd320c436dd20a115afff407cac73a87
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1c562b04e33024a9a4e38aafe2f15bdde40ae2e6b279e3cff382eec33d28f025d13079f08d0d0aff0e36271951cf6f17942bfc3b4bb799fe399d673870dfba0c
|
7
|
+
data.tar.gz: add17e61ad21c506eaa3d96925fa0afb41c21e6fc704b72f16888a5e36f14330f4ebb367d48a8e84624f07dd829c912840b32f74f83bd9bffbaa6568d25f90ed
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
itamae-plugin-recipe-daddy (0.1.
|
4
|
+
itamae-plugin-recipe-daddy (0.1.12)
|
5
5
|
itamae (~> 1.10, >= 1.10.2)
|
6
6
|
|
7
7
|
GEM
|
@@ -15,14 +15,14 @@ GEM
|
|
15
15
|
schash (~> 0.1.0)
|
16
16
|
specinfra (>= 2.64.0, < 3.0.0)
|
17
17
|
thor
|
18
|
-
net-scp (
|
19
|
-
net-ssh (>= 2.6.5)
|
20
|
-
net-ssh (5.
|
18
|
+
net-scp (2.0.0)
|
19
|
+
net-ssh (>= 2.6.5, < 6.0.0)
|
20
|
+
net-ssh (5.2.0)
|
21
21
|
net-telnet (0.1.1)
|
22
22
|
rake (12.3.2)
|
23
23
|
schash (0.1.2)
|
24
24
|
sfl (2.3)
|
25
|
-
specinfra (2.
|
25
|
+
specinfra (2.77.0)
|
26
26
|
net-scp
|
27
27
|
net-ssh (>= 2.7)
|
28
28
|
net-telnet (= 0.1.1)
|
@@ -6,7 +6,7 @@ execute "download chromedriver-#{version}" do
|
|
6
6
|
curl -o chromedriver_linux64-#{version}.zip \
|
7
7
|
https://chromedriver.storage.googleapis.com/#{version}/chromedriver_linux64.zip
|
8
8
|
EOF
|
9
|
-
not_if "
|
9
|
+
not_if "echo #{::File.read(::File.join(::File.dirname(__FILE__), "chromedriver_linux64-#{version}_sha256sum.txt")).strip} | sha256sum -c"
|
10
10
|
end
|
11
11
|
|
12
12
|
execute "install chromedriver-#{version}" do
|
data/lib/itamae/plugin/recipe/daddy/selenium/drivers/chromedriver_linux64-74.0.3729.6_sha256sum.txt
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
ec9dbe021338f0befaecca702abc576cb7cc31a2f5a852c2c41e94721af5d3ad chromedriver_linux64-74.0.3729.6.zip
|
@@ -1,9 +1,10 @@
|
|
1
1
|
module ItamaePluginRecipeDaddy
|
2
|
-
VERSION = '0.1.
|
2
|
+
VERSION = '0.1.12'
|
3
3
|
|
4
4
|
CHROME_DRIVER_VERSION = [
|
5
|
-
CHROME_DRIVER_VERSION_MAJOR = '
|
6
|
-
CHROME_DRIVER_VERSION_MINOR = '
|
5
|
+
CHROME_DRIVER_VERSION_MAJOR = '74',
|
6
|
+
CHROME_DRIVER_VERSION_MINOR = '0',
|
7
|
+
CHROME_DRIVER_VERSION_PATCH = '3729.6'
|
7
8
|
].join('.')
|
8
9
|
|
9
10
|
GECKO_DRIVER_VERSION = [
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: itamae-plugin-recipe-daddy
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.12
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- ichy
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-04-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: itamae
|
@@ -110,16 +110,19 @@ files:
|
|
110
110
|
- lib/itamae/plugin/recipe/daddy/python/Python-3.6.6_sha256sum.txt
|
111
111
|
- lib/itamae/plugin/recipe/daddy/python/install.rb
|
112
112
|
- lib/itamae/plugin/recipe/daddy/redis/install.rb
|
113
|
+
- lib/itamae/plugin/recipe/daddy/selenium/chrome.rb
|
113
114
|
- lib/itamae/plugin/recipe/daddy/selenium/drivers/chromedriver.rb
|
114
115
|
- lib/itamae/plugin/recipe/daddy/selenium/drivers/chromedriver_linux64-2.35_sha256sum.txt
|
115
116
|
- lib/itamae/plugin/recipe/daddy/selenium/drivers/chromedriver_linux64-2.37_sha256sum.txt
|
116
117
|
- lib/itamae/plugin/recipe/daddy/selenium/drivers/chromedriver_linux64-2.40_sha256sum.txt
|
117
118
|
- lib/itamae/plugin/recipe/daddy/selenium/drivers/chromedriver_linux64-2.42_sha256sum.txt
|
118
119
|
- lib/itamae/plugin/recipe/daddy/selenium/drivers/chromedriver_linux64-2.45_sha256sum.txt
|
120
|
+
- lib/itamae/plugin/recipe/daddy/selenium/drivers/chromedriver_linux64-74.0.3729.6_sha256sum.txt
|
119
121
|
- lib/itamae/plugin/recipe/daddy/selenium/drivers/geckodriver-v0.19.1-linux64_sha256sum.txt
|
120
122
|
- lib/itamae/plugin/recipe/daddy/selenium/drivers/geckodriver-v0.22.0-linux64_sha256sum.txt
|
121
123
|
- lib/itamae/plugin/recipe/daddy/selenium/drivers/geckodriver.rb
|
122
124
|
- lib/itamae/plugin/recipe/daddy/selenium/install.rb
|
125
|
+
- lib/itamae/plugin/recipe/daddy/selenium/templates/etc/yum.repos.d/google-chrome.repo.erb
|
123
126
|
- lib/itamae/plugin/recipe/daddy/wkhtmltopdf.rb
|
124
127
|
- lib/itamae/plugin/recipe/daddy/wkhtmltopdf/install.rb
|
125
128
|
- lib/itamae/plugin/recipe/daddy/wkhtmltopdf/wkhtmltox-0.12.5-1.centos7_sha256sum.txt
|