jimbo_management_site 0.60.15 → 0.60.18

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: b428eee04b63e59d765edf982e4003e993632a8eab8d628380cbd3b07e7b988f
4
- data.tar.gz: e6ca1fb4a5f916a5dfd9890976e153160fd1bb784e4075200fc5ffe5ac3b2ac1
3
+ metadata.gz: 8f3f7add5132ced5791e904e39eedf48491e36992183df12721a318248108569
4
+ data.tar.gz: 877a9b96cbb4048e1c99df5f3c79d82e4a7c595c88561a77572be21c63c0366c
5
5
  SHA512:
6
- metadata.gz: 3435ac8af8d7b5f9c86dcd3da90bf732248b3ec0c0fc91f17050736191a4a5eaa2c2d63472cc730ff747360c030d52f2ad76af0c23ae01c023d252c4241858f1
7
- data.tar.gz: 7ac3e49b9b52a248b4888855331f1b9d035b6653fa58d2984ce8740d056045de9eb580be0f9c4e248d4acc531a1b7e2c615364c72784edb18300fdc4ffd99e72
6
+ metadata.gz: b2f9d5d5afc5e27360488f0285a1159a828b2d7d5101ddb63e8548e10dc0047ef339ead50e92ea544d2da5b844cbed2f79d59e2de98bf5304dc562b9024ce20a
7
+ data.tar.gz: 1464be1f6e7b0acef80249a72d3585041291ca2d3b70f404355f7054242f785ce6e490fccc5111c5a558381ff35f7280163f2dcac7427e9558e96ddbb70a0f96
checksums.yaml.gz.sig CHANGED
Binary file
data/Policyfile.rb CHANGED
@@ -20,6 +20,7 @@ end
20
20
 
21
21
  # run_list: chef-client will run these recipes in the order specified.
22
22
  run_list 'jimbo_management_site::default'
23
+ run_list 'jimbo_management_site::compile_deploy_rubygem'
23
24
 
24
25
  # Specify a custom source for a single cookbook:
25
26
  cookbook 'jimbo_management_site', path: '.'
@@ -29,3 +30,4 @@ cookbook 'deploy-context'
29
30
 
30
31
  named_run_list :jimbo_management_site, ['recipe[jimbo_management_site::default]']
31
32
  named_run_list :website, ['recipe[jimbo_management_site::website]']
33
+ named_run_list :compile_deploy_rubygem, ['recipe[jimbo_management_site::compile_deploy_rubygem]']
data/Rakefile CHANGED
@@ -13,20 +13,20 @@ require 'deploy_rubygem'
13
13
 
14
14
  task wip: %i[clean_cookbook release_policy install_jimbo_management_site]
15
15
 
16
- task test_framework: %i[clean_cookbook rubocop install:local spec clean_cookbook]
17
- task default: %i[test_framework build install:local]
16
+ task test_framework: %i[clean_cookbook cookstyle build_cookbook spec clean_cookbook]
17
+ task default: %i[test_framework build_cookbook install:local]
18
18
  task cicd: %i[test_framework release_cookbook test_version release_framework]
19
19
  task test_version: %i[install compliance]
20
20
  task release_framework: %i[clean_cookbook release test_version]
21
21
  task release_cookbook: %i[release release_policy]
22
- task developper: %i[push cicd report]
22
+ task developper: %i[clean_cookbook cookstyle build_cookbook spec push install release_policy report]
23
23
  task :push do
24
24
  system('git add .')
25
25
  system("git commit -m 'Rake pusing version #{DeployRubygem::VERSION}'")
26
26
  system('git push')
27
27
  end
28
28
 
29
- task :cookstyle do
29
+ task cookstyle: %i[rubocop] do
30
30
  system('cookstyle')
31
31
  end
32
32
 
@@ -38,11 +38,11 @@ task install_policy: %i[build_cookbook] do
38
38
  system('chef install Policyfile.rb')
39
39
  end
40
40
 
41
- task release_policy: %i[install_policy] do
41
+ task release_policy: %i[clean_cookbook install_policy] do
42
42
  system('chef push prod Policyfile.lock.json')
43
43
  end
44
44
 
45
- task install_jimbo_management_site: %i[clean_cookbook release_policy] do
45
+ task :install_jimbo_management_site do
46
46
  system('sudo chef-client -o jimbo_management_site')
47
47
  end
48
48
 
data/chefignore CHANGED
@@ -121,3 +121,4 @@ pkg
121
121
  # JimboDragon #
122
122
  ###########
123
123
  pkg
124
+ base_check.log
@@ -1,9 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require 'deploy_rubygem'
4
- require 'deploy_rubygem/project'
5
- require 'deploy_rubygem/version'
6
-
7
- module JimboManagementSiteTest
8
- VERSION = '0.60.15'
3
+ module JimboManagementSite
4
+ VERSION = '0.60.18'
9
5
  end
@@ -1,12 +1,10 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require_relative 'jimbo_management_site/version'
4
- require_relative 'jimbo_management_site/jimbo_management_site_options'
5
-
6
4
  require 'deploy_rubygem'
7
5
 
8
- # DeployRubygemAcceptanceTest - Acceptance test for deploy_rubygem
9
- module DeployRubygemAcceptanceTest
6
+ # JimboManagementSite - Acceptance test for deploy_rubygem
7
+ module JimboManagementSite
10
8
  class Error < StandardError; end
11
9
  # Your code goes here...
12
10
  end
data/metadata.rb CHANGED
@@ -8,7 +8,7 @@ maintainer 'Jimmy Provencher'
8
8
  maintainer_email 'jimmy.provencher@hotmail.ca'
9
9
  license 'All Rights Reserved'
10
10
  description 'Installs/Configures jimbo_management_site'
11
- version JimboManagementSiteTest::VERSION
11
+ version JimboManagementSite::VERSION
12
12
  chef_version '>= 16.0'
13
13
 
14
14
  # The `issues_url` points to the location where issues for this cookbook are
@@ -23,7 +23,7 @@ chef_version '>= 16.0'
23
23
  #
24
24
  # source_url 'https://github.com/<insert_org_here>/jimbo_management_site'
25
25
 
26
- gem 'deploy_rubygem'
26
+ # gem 'deploy_rubygem'
27
27
 
28
28
  depends 'apache2'
29
29
  depends 'php'
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jimbo_management_site
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.60.15
4
+ version: 0.60.18
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jimmy Provencher
@@ -33,7 +33,7 @@ cert_chain:
33
33
  n6Pwa3EckU/5n8N6gUJTAmGyu6Ncu1pbsZtH450+BJ2z82JNXomdFYlnG8+1XNlj
34
34
  3M1sBFUHvqrBg2hQkQcLHokmQYrYsRK5A7HrxwKcmwM=
35
35
  -----END CERTIFICATE-----
36
- date: 2024-06-09 00:00:00.000000000 Z
36
+ date: 2024-06-12 00:00:00.000000000 Z
37
37
  dependencies:
38
38
  - !ruby/object:Gem::Dependency
39
39
  name: deploy_rubygem
@@ -82,7 +82,6 @@ files:
82
82
  - files/html/report.php
83
83
  - kitchen.yml
84
84
  - lib/jimbo_management_site.rb
85
- - lib/jimbo_management_site/jimbo_management_site_options.rb
86
85
  - lib/jimbo_management_site/version.rb
87
86
  - metadata.rb
88
87
  homepage: https://github.com/JimboDragonGit/jimbo_management_site
metadata.gz.sig CHANGED
Binary file
@@ -1,45 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- # DeployRubygem - deploy a gem using rake
4
- # Containing a class
5
- module JimboManagementSiteTestOptions
6
- # Using Inspec to deploy and manage Inspec
7
- class JimboManagementSiteTestOptions
8
- def project_name
9
- 'jimbo_management_site'
10
- end
11
-
12
- def git
13
- 'git@github.com:JimboDragonGit/jimbo_management_site.git'
14
- end
15
-
16
- def chefrepo_git
17
- 'git@github.com:JimboDragonGit/jimbodragon.git'
18
- end
19
-
20
- def chefrepo_path
21
- '/usr/local/chef/repo/jimbodragon'
22
- end
23
-
24
- def dependencies
25
- %w[
26
- deploy_rubygem
27
- ]
28
- end
29
-
30
- def path
31
- File.join(ENV['HOME'], 'jimbo_management_site')
32
- end
33
-
34
- def compile
35
- {
36
- project_name: project_name,
37
- git: git,
38
- chefrepo_git: chefrepo_git,
39
- chefrepo_path: chefrepo_path,
40
- dependencies: dependencies,
41
- path: path
42
- }
43
- end
44
- end
45
- end