itamae-plugin-recipe-daddy 0.1.11 → 0.1.12

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ac8298c284cf637a3e297c0283fb0a8cb982bc25d713ca99ade9d22ddeff6f4f
4
- data.tar.gz: 6a0c88646e4a7be6823dfe46f218bc28207b9901fab1aa2633d5febe08ea0cb8
3
+ metadata.gz: 4ca5749c7d20f0a3b5e594c0ef28ace7f562d733b30b281131a84b5a999d00f8
4
+ data.tar.gz: ca0e76a7d4bcce5c69019a5e7eaab85efd320c436dd20a115afff407cac73a87
5
5
  SHA512:
6
- metadata.gz: b8f6a514cc12759a0fd1f92d8cec6a06d0aa2e712a3ff12c02d7a378467dc61fd2a3d12dfa8ebc6ca764fbfbc3f9284e5ebcfdee15cb64ca7ccf4977d09e838b
7
- data.tar.gz: 0bbe86a9bd5237cb3879d2f0472473c081cf2c58fc73102d0d21c2fb0ba01b631f5c0f112f195fa115559b199ad45eb903d551de0d5b5904255d514bf456acfa
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.11)
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 (1.2.1)
19
- net-ssh (>= 2.6.5)
20
- net-ssh (5.1.0)
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.76.9)
25
+ specinfra (2.77.0)
26
26
  net-scp
27
27
  net-ssh (>= 2.7)
28
28
  net-telnet (= 0.1.1)
@@ -0,0 +1,10 @@
1
+ template '/etc/yum.repos.d/google-chrome.repo' do
2
+ user 'root'
3
+ owner 'root'
4
+ group 'root'
5
+ mode '644'
6
+ end
7
+
8
+ package 'google-chrome-stable' do
9
+ user 'root'
10
+ end
@@ -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 "sha256sum -c #{::File.join(::File.dirname(__FILE__), "chromedriver_linux64-#{version}_sha256sum.txt")}"
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
@@ -0,0 +1 @@
1
+ ec9dbe021338f0befaecca702abc576cb7cc31a2f5a852c2c41e94721af5d3ad chromedriver_linux64-74.0.3729.6.zip
@@ -1,2 +1,3 @@
1
+ include_recipe 'daddy::selenium::chrome'
1
2
  include_recipe 'daddy::selenium::drivers::chromedriver'
2
3
  include_recipe 'daddy::selenium::drivers::geckodriver'
@@ -0,0 +1,6 @@
1
+ [google-chrome]
2
+ name=google-chrome
3
+ baseurl=http://dl.google.com/linux/chrome/rpm/stable/x86_64
4
+ enabled=1
5
+ gpgcheck=1
6
+ gpgkey=https://dl-ssl.google.com/linux/linux_signing_key.pub
@@ -1,9 +1,10 @@
1
1
  module ItamaePluginRecipeDaddy
2
- VERSION = '0.1.11'
2
+ VERSION = '0.1.12'
3
3
 
4
4
  CHROME_DRIVER_VERSION = [
5
- CHROME_DRIVER_VERSION_MAJOR = '2',
6
- CHROME_DRIVER_VERSION_MINOR = '45'
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.11
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-03-02 00:00:00.000000000 Z
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