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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 427dd8798a41c3635160e172cc41c25fe6ec6b3ad9ddeff2daf640a0f37d5561
4
- data.tar.gz: 0e3a2b6bea91798f3c907429ef2321007ffae0fb81b6501845a13084ce867aa8
3
+ metadata.gz: '0413874c6f66e786947ca1336e8f7a2e7617079cfd46a27127379ec2432e4582'
4
+ data.tar.gz: fc971c0de0ffe1608e7cf575e964a050393294a5352169901204313ea89f30ee
5
5
  SHA512:
6
- metadata.gz: 833c64e29e37d5b1446c4f0ce11bcea1eb7749372d6ae17f110f87e93ba6160cac3904885b3b26af65b7579b28c74f45166b5a1c4919f48e9e76ea57dfcb8c58
7
- data.tar.gz: 83f1f922a6bd7328db0fb98e0895be07b7a61a5153c722f037e70b1409ef6c08b5bba15dfad7e2b8c163715926d710b5285825bd34ead8c6b40b846b2d4acac0
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-v22.repo')} /etc/yum.repos.d/nodesource-nodejs.repo
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-v22.repo')} /etc/yum.repos.d/nodesource-nodejs.repo"
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 '22.23.1-1nodesource'
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.9'
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.15']
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
@@ -2,6 +2,6 @@ module Daddy
2
2
  VERSION = [
3
3
  VERSION_MAJOR = '0',
4
4
  VERSION_MINOR = '12',
5
- VERSION_REVISION = '5'
5
+ VERSION_REVISION = '7'
6
6
  ].join('.')
7
7
  end
@@ -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, 8
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.5
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.6.9
430
+ rubygems_version: 3.7.2
431
431
  specification_version: 4
432
432
  summary: My rails dad
433
433
  test_files: []
@@ -1,9 +0,0 @@
1
- require 'daddy/itamae'
2
-
3
- template '/etc/yum.repos.d/google-chrome.repo' do
4
- user 'root'
5
- end
6
-
7
- package 'google-chrome-stable' do
8
- user 'root'
9
- end
@@ -1,11 +0,0 @@
1
- require 'daddy/itamae'
2
-
3
- %w{ epel-release yum-utils }.each do |name|
4
- package name do
5
- user 'root'
6
- end
7
- end
8
-
9
- execute 'yum-config-manager --enable epel' do
10
- user 'root'
11
- end