daddy 0.12.5 → 0.12.7
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/files/etc/yum.repos.d/nodesource-nodejs-v24.repo +9 -0
- data/itamae/environments/nodejs/nodejs.rb +3 -3
- data/itamae/environments/ruby/default.rb +2 -2
- data/itamae/environments/ruby/ruby-3.4.10.tar.gz_sha256sum.txt +1 -0
- data/lib/daddy/version.rb +1 -1
- data/lib/tasks/rails_erd.rake +10 -1
- metadata +4 -4
- data/itamae/cookbooks/chrome/install.rb +0 -9
- data/itamae/cookbooks/epel/install.rb +0 -11
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: '0413874c6f66e786947ca1336e8f7a2e7617079cfd46a27127379ec2432e4582'
|
|
4
|
+
data.tar.gz: fc971c0de0ffe1608e7cf575e964a050393294a5352169901204313ea89f30ee
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e4953dfe28b2f5b5b4aed0f0f7fd770ed5bb83b45277f67f718f8d728a315b744d032ad286aedd140f23b6e494732d526257bb5b27a0860eab7ea99c7dd16815
|
|
7
|
+
data.tar.gz: f0bf2781472da92ec9448447657d83272b9052e5fb56c5118d28c989b4c2bc78f2345f5b7b6474ae0cdce14837428ceda5788733602f15762135c4efa8f97dd4
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
[nodesource-nodejs]
|
|
2
|
+
name=Node.js Packages for Linux RPM based distros - x86_64
|
|
3
|
+
baseurl=https://rpm.nodesource.com/pub_24.x/nodistro/nodejs/x86_64
|
|
4
|
+
priority=9
|
|
5
|
+
enabled=0
|
|
6
|
+
gpgcheck=1
|
|
7
|
+
gpgkey=https://rpm.nodesource.com/gpgkey/ns-operations-public.key
|
|
8
|
+
module_hotfixes=1
|
|
9
|
+
|
|
@@ -2,15 +2,15 @@ execute 'place /etc/yum.repos.d/nodesource-nodejs.repo' do
|
|
|
2
2
|
user 'root'
|
|
3
3
|
command <<-EOF
|
|
4
4
|
set -eu
|
|
5
|
-
sudo cp -f #{::File.join(::File.dirname(__FILE__), 'files/etc/yum.repos.d/nodesource-nodejs-
|
|
5
|
+
sudo cp -f #{::File.join(::File.dirname(__FILE__), 'files/etc/yum.repos.d/nodesource-nodejs-v24.repo')} /etc/yum.repos.d/nodesource-nodejs.repo
|
|
6
6
|
sudo chmod 644 /etc/yum.repos.d/nodesource-nodejs.repo
|
|
7
7
|
EOF
|
|
8
|
-
not_if "diff #{::File.join(::File.dirname(__FILE__), 'files/etc/yum.repos.d/nodesource-nodejs-
|
|
8
|
+
not_if "diff #{::File.join(::File.dirname(__FILE__), 'files/etc/yum.repos.d/nodesource-nodejs-v24.repo')} /etc/yum.repos.d/nodesource-nodejs.repo"
|
|
9
9
|
end
|
|
10
10
|
|
|
11
11
|
package 'nodejs' do
|
|
12
12
|
user 'root'
|
|
13
|
-
version '
|
|
13
|
+
version '24.20.0-1nodesource'
|
|
14
14
|
options '--enablerepo=nodesource-nodejs'
|
|
15
15
|
end
|
|
16
16
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
version = ENV['RUBY_VERSION'] || '3.4.
|
|
1
|
+
version = ENV['RUBY_VERSION'] || '3.4.10'
|
|
2
2
|
short_version = version.split('.')[0..1].join('.')
|
|
3
3
|
|
|
4
4
|
execute "download ruby-#{version}" do
|
|
@@ -37,7 +37,7 @@ bundler_versions = case short_version
|
|
|
37
37
|
when '2.7'
|
|
38
38
|
['2.3.26', '2.4.22']
|
|
39
39
|
else
|
|
40
|
-
['2.7.2', '4.0.
|
|
40
|
+
['2.7.2', '4.0.18']
|
|
41
41
|
end
|
|
42
42
|
ohai_version = case short_version
|
|
43
43
|
when '2.7'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
ecee2d072a14f2d14347dd56dfd8fe5c3130abf5117bfaacbda0f4ef9cc429ec ruby-3.4.10.tar.gz
|
data/lib/daddy/version.rb
CHANGED
data/lib/tasks/rails_erd.rake
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
if defined?(RailsERD)
|
|
2
2
|
Rake::Task['db:migrate'].enhance do
|
|
3
3
|
ENV['filename'] = 'tmp/db_layout'
|
|
4
|
+
ENV['generator'] = 'graphviz'
|
|
5
|
+
ENV['filetype'] = 'pdf'
|
|
4
6
|
ENV['attributes'] = 'foreign_keys, content, primary_keys, timestamp, inheritance'
|
|
5
7
|
ENV['inheritance'] = 'true'
|
|
6
8
|
|
|
@@ -11,11 +13,18 @@ if defined?(RailsERD)
|
|
|
11
13
|
excludes << 'ActiveRecord::InternalMetadata'
|
|
12
14
|
excludes << 'ActiveStorage::Blob'
|
|
13
15
|
excludes << 'ActiveStorage::Attachment'
|
|
14
|
-
when 6, 7
|
|
16
|
+
when 6, 7
|
|
15
17
|
excludes << 'ActiveRecord::InternalMetadata'
|
|
18
|
+
excludes << 'ActiveStorage::Attachment'
|
|
16
19
|
excludes << 'ActiveStorage::Blob'
|
|
20
|
+
excludes << 'ActiveStorage::VariantRecord'
|
|
21
|
+
when 8
|
|
22
|
+
excludes << 'ActiveRecord::InternalMetadata'
|
|
17
23
|
excludes << 'ActiveStorage::Attachment'
|
|
24
|
+
excludes << 'ActiveStorage::Blob'
|
|
18
25
|
excludes << 'ActiveStorage::VariantRecord'
|
|
26
|
+
excludes << 'SolidQueue::Batch'
|
|
27
|
+
excludes << 'SolidQueue::BatchExecution'
|
|
19
28
|
end
|
|
20
29
|
|
|
21
30
|
if defined?(Nostalgic)
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: daddy
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.12.
|
|
4
|
+
version: 0.12.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- ichy
|
|
@@ -259,9 +259,7 @@ files:
|
|
|
259
259
|
- app/assets/stylesheets/datepicker.css.scss
|
|
260
260
|
- app/assets/stylesheets/ympicker.css.scss
|
|
261
261
|
- itamae/cookbooks/app_base_dir.rb
|
|
262
|
-
- itamae/cookbooks/chrome/install.rb
|
|
263
262
|
- itamae/cookbooks/docker/registry/install.rb
|
|
264
|
-
- itamae/cookbooks/epel/install.rb
|
|
265
263
|
- itamae/cookbooks/git/install.rb
|
|
266
264
|
- itamae/cookbooks/god/install.rb
|
|
267
265
|
- itamae/cookbooks/jenkins/install.rb
|
|
@@ -291,12 +289,14 @@ files:
|
|
|
291
289
|
- itamae/environments/nodejs/files/etc/yum.repos.d/nodesource-nodejs-v18.repo
|
|
292
290
|
- itamae/environments/nodejs/files/etc/yum.repos.d/nodesource-nodejs-v20.repo
|
|
293
291
|
- itamae/environments/nodejs/files/etc/yum.repos.d/nodesource-nodejs-v22.repo
|
|
292
|
+
- itamae/environments/nodejs/files/etc/yum.repos.d/nodesource-nodejs-v24.repo
|
|
294
293
|
- itamae/environments/nodejs/files/etc/yum.repos.d/yarn.repo
|
|
295
294
|
- itamae/environments/nodejs/nodejs.rb
|
|
296
295
|
- itamae/environments/nodejs/yarn.rb
|
|
297
296
|
- itamae/environments/ruby/default.rb
|
|
298
297
|
- itamae/environments/ruby/ruby-2.7.8.tar.gz_sha256sum.txt
|
|
299
298
|
- itamae/environments/ruby/ruby-3.2.9.tar.gz_sha256sum.txt
|
|
299
|
+
- itamae/environments/ruby/ruby-3.4.10.tar.gz_sha256sum.txt
|
|
300
300
|
- itamae/environments/ruby/ruby-3.4.8.tar.gz_sha256sum.txt
|
|
301
301
|
- itamae/environments/ruby/ruby-3.4.9.tar.gz_sha256sum.txt
|
|
302
302
|
- itamae/locale/en.yml
|
|
@@ -427,7 +427,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
427
427
|
- !ruby/object:Gem::Version
|
|
428
428
|
version: '0'
|
|
429
429
|
requirements: []
|
|
430
|
-
rubygems_version: 3.
|
|
430
|
+
rubygems_version: 3.7.2
|
|
431
431
|
specification_version: 4
|
|
432
432
|
summary: My rails dad
|
|
433
433
|
test_files: []
|