daddy 0.9.3 → 0.9.4
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/itamae/environments/nodejs/default.rb +8 -0
- data/itamae/environments/nodejs/templates/etc/yum.repos.d/nodesource-el7.repo.erb +2 -2
- data/itamae/environments/ruby/default.rb +3 -3
- data/itamae/environments/ruby/ruby-2.7.3.tar.gz_sha256sum.txt +1 -0
- data/itamae/environments/ruby/ruby-2.7.5.tar.gz_sha256sum.txt +1 -0
- data/lib/daddy/version.rb +1 -1
- metadata +5 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 617aabc2ae7cdf58928c313804c2421a352b01d7260e0cf401f450f31af04181
|
|
4
|
+
data.tar.gz: b0c97127fb9050ee7116dd0bfc0d07a22edec54e4587b65c251f3069bee9744c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 40915eb55f06d3052bd619da9a1a9ae6dbf1544d5d7886343213d16c3c4462d2d53cbf16dd4dffd2d93aa176c89fb6952b221a185ae9de4ff3604dd760f42dea
|
|
7
|
+
data.tar.gz: a07a24c5cb875035358e8c816b8173e180f29b4647585107f3fd50fe06b588d866280a24b79d0ed0fb824eff7ba4b4f35ab74ec4c43c0876b3d40adbe4781a59
|
|
@@ -5,6 +5,12 @@ template '/etc/yum.repos.d/nodesource-el7.repo' do
|
|
|
5
5
|
mode '644'
|
|
6
6
|
end
|
|
7
7
|
|
|
8
|
+
execute 'yum clean all --enablerepo=nodesource' do
|
|
9
|
+
user 'root'
|
|
10
|
+
action :nothing
|
|
11
|
+
subscribes :run, "template[/etc/yum.repos.d/nodesource-el7.repo]", :immediately
|
|
12
|
+
end
|
|
13
|
+
|
|
8
14
|
template '/etc/pki/rpm-gpg/NODESOURCE-GPG-SIGNING-KEY-EL' do
|
|
9
15
|
user 'root'
|
|
10
16
|
owner 'root'
|
|
@@ -14,6 +20,8 @@ end
|
|
|
14
20
|
|
|
15
21
|
package 'nodejs' do
|
|
16
22
|
user 'root'
|
|
23
|
+
version "16.16.0-1nodesource"
|
|
24
|
+
options '--enablerepo=nodesource'
|
|
17
25
|
end
|
|
18
26
|
|
|
19
27
|
template '/etc/yum.repos.d/yarn.repo' do
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[nodesource]
|
|
2
2
|
name=Node.js Packages for Enterprise Linux 7 - $basearch
|
|
3
|
-
baseurl=https://rpm.nodesource.com/
|
|
3
|
+
baseurl=https://rpm.nodesource.com/pub_16.x/el/7/$basearch
|
|
4
4
|
failovermethod=priority
|
|
5
5
|
enabled=1
|
|
6
6
|
gpgcheck=1
|
|
@@ -8,7 +8,7 @@ gpgkey=file:///etc/pki/rpm-gpg/NODESOURCE-GPG-SIGNING-KEY-EL
|
|
|
8
8
|
|
|
9
9
|
[nodesource-source]
|
|
10
10
|
name=Node.js for Enterprise Linux 7 - $basearch - Source
|
|
11
|
-
baseurl=https://rpm.nodesource.com/
|
|
11
|
+
baseurl=https://rpm.nodesource.com/pub_16.x/el/7/SRPMS
|
|
12
12
|
failovermethod=priority
|
|
13
13
|
enabled=0
|
|
14
14
|
gpgkey=file:///etc/pki/rpm-gpg/NODESOURCE-GPG-SIGNING-KEY-EL
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
version = ENV['RUBY_VERSION'] || '2.7.
|
|
1
|
+
version = ENV['RUBY_VERSION'] || '2.7.5'
|
|
2
2
|
short_version = version.split('.')[0..1].join('.')
|
|
3
3
|
|
|
4
4
|
execute "download ruby-#{version}" do
|
|
@@ -27,8 +27,8 @@ end
|
|
|
27
27
|
|
|
28
28
|
{
|
|
29
29
|
'rubygems-update' => nil,
|
|
30
|
-
'bundler' => '2.
|
|
31
|
-
'itamae' => '1.
|
|
30
|
+
'bundler' => '2.3.4',
|
|
31
|
+
'itamae' => '1.12.5',
|
|
32
32
|
'daddy' => nil
|
|
33
33
|
}.each do |name, version|
|
|
34
34
|
gem_package name do
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
8925a95e31d8f2c81749025a52a544ea1d05dad18794e6828709268b92e55338 ruby-2.7.3.tar.gz
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
2755b900a21235b443bb16dadd9032f784d4a88f143d852bc5d154f22b8781f1 ruby-2.7.5.tar.gz
|
data/lib/daddy/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: daddy
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.9.
|
|
4
|
+
version: 0.9.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- ichy
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2022-08-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: docker-api
|
|
@@ -331,6 +331,8 @@ files:
|
|
|
331
331
|
- itamae/environments/ruby/ruby-2.6.5.tar.gz_sha256sum.txt
|
|
332
332
|
- itamae/environments/ruby/ruby-2.6.6.tar.gz_sha256sum.txt
|
|
333
333
|
- itamae/environments/ruby/ruby-2.7.2.tar.gz_sha256sum.txt
|
|
334
|
+
- itamae/environments/ruby/ruby-2.7.3.tar.gz_sha256sum.txt
|
|
335
|
+
- itamae/environments/ruby/ruby-2.7.5.tar.gz_sha256sum.txt
|
|
334
336
|
- itamae/locale/en.yml
|
|
335
337
|
- itamae/locale/ja.yml
|
|
336
338
|
- itamae/templates/etc/god/master.conf.erb
|
|
@@ -465,7 +467,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
465
467
|
- !ruby/object:Gem::Version
|
|
466
468
|
version: '0'
|
|
467
469
|
requirements: []
|
|
468
|
-
rubygems_version: 3.
|
|
470
|
+
rubygems_version: 3.2.16
|
|
469
471
|
signing_key:
|
|
470
472
|
specification_version: 4
|
|
471
473
|
summary: My rails dad
|