itamae-plugin-recipe-daddy 0.1.12 → 0.1.13

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: 4ca5749c7d20f0a3b5e594c0ef28ace7f562d733b30b281131a84b5a999d00f8
4
- data.tar.gz: ca0e76a7d4bcce5c69019a5e7eaab85efd320c436dd20a115afff407cac73a87
3
+ metadata.gz: d00e2b2ff293d75a4e8f14fc736f46957e83f6ab3b0b9df6dae970d4a9075f93
4
+ data.tar.gz: 802b3c1aea5a18130e30cbd684198daae812e529a718cdc3692ffb9eb659704a
5
5
  SHA512:
6
- metadata.gz: 1c562b04e33024a9a4e38aafe2f15bdde40ae2e6b279e3cff382eec33d28f025d13079f08d0d0aff0e36271951cf6f17942bfc3b4bb799fe399d673870dfba0c
7
- data.tar.gz: add17e61ad21c506eaa3d96925fa0afb41c21e6fc704b72f16888a5e36f14330f4ebb367d48a8e84624f07dd829c912840b32f74f83bd9bffbaa6568d25f90ed
6
+ metadata.gz: 01bfbb6fd0aa8acc5d14f1d71b38ec9b58d9429e460ed85daaf9b90e07e5acd5b9dc78891fb953076bbcbacc86f9eb97c0c5cf7b909a894f2d57284902ebb8ab
7
+ data.tar.gz: 8c05fbb0fd609fa0e2859c0774df8400bd61998e14ddcbf610601d505c308577ed43bb4e048856b1c032f7d86e2d3153872b0e1d1351d73e7a9e1b8503a83ce2
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- itamae-plugin-recipe-daddy (0.1.12)
4
+ itamae-plugin-recipe-daddy (0.1.13)
5
5
  itamae (~> 1.10, >= 1.10.2)
6
6
 
7
7
  GEM
@@ -9,7 +9,7 @@ GEM
9
9
  specs:
10
10
  ansi (1.5.0)
11
11
  hashie (3.6.0)
12
- itamae (1.10.3)
12
+ itamae (1.10.4)
13
13
  ansi
14
14
  hashie
15
15
  schash (~> 0.1.0)
@@ -22,7 +22,7 @@ GEM
22
22
  rake (12.3.2)
23
23
  schash (0.1.2)
24
24
  sfl (2.3)
25
- specinfra (2.77.0)
25
+ specinfra (2.77.1)
26
26
  net-scp
27
27
  net-ssh (>= 2.7)
28
28
  net-telnet (= 0.1.1)
@@ -33,9 +33,9 @@ PLATFORMS
33
33
  ruby
34
34
 
35
35
  DEPENDENCIES
36
- bundler (~> 1.16)
36
+ bundler (~> 2.0)
37
37
  itamae-plugin-recipe-daddy!
38
- rake (~> 12.0)
38
+ rake (~> 12.3)
39
39
 
40
40
  BUNDLED WITH
41
- 1.17.3
41
+ 2.0.1
@@ -0,0 +1,22 @@
1
+ # common settings
2
+ application:
3
+ # name of your application
4
+ name: my_app
5
+
6
+ # environment to run
7
+ # typically one of production, development, test
8
+ env: development
9
+
10
+ # root directory
11
+ root: '.'
12
+
13
+ # web layer settings
14
+ web:
15
+ # server name exposed to public interface
16
+ # this is usually a domain name of your app.
17
+ server_name: localhost
18
+
19
+ # app layer settings
20
+ app:
21
+ # type of application server which is behind nginx
22
+ type: passenger
@@ -17,12 +17,12 @@ Gem::Specification.new do |spec|
17
17
  spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
18
18
  `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
19
19
  end
20
- spec.bindir = "exe"
20
+ spec.bindir = 'exe'
21
21
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
22
22
  spec.require_paths = ["lib"]
23
23
 
24
24
  spec.add_dependency 'itamae', '~> 1.10', '>= 1.10.2'
25
25
 
26
- spec.add_development_dependency "bundler", "~> 1.16"
27
- spec.add_development_dependency "rake", "~> 12.0"
26
+ spec.add_development_dependency "bundler", "~> 2.0"
27
+ spec.add_development_dependency "rake", "~> 12.3"
28
28
  end
@@ -2,6 +2,7 @@ require 'daddy/itamae'
2
2
 
3
3
  version = ENV['NGINX_VERSION'] || ItamaePluginRecipeDaddy::NGINX_VERSION
4
4
  rtmp_version = ENV['NGINX_RTMP_MODULE_VERSION'] || ItamaePluginRecipeDaddy::NGINX_RTMP_MODULE_VERSION
5
+ app_type = ENV['app_type'] || Daddy.config.app_.type
5
6
 
6
7
  # install destination
7
8
  %w{
@@ -60,9 +61,10 @@ execute 'build nginx' do
60
61
  sudo chown -R #{ENV['USER']}:#{ENV['USER']} ./
61
62
  make
62
63
  sudo make install
64
+ sudo touch /opt/nginx/nginx-#{version}/INSTALLED
63
65
  popd
64
66
  EOF
65
- not_if "test -e /opt/nginx/nginx-#{version}"
67
+ not_if "test -e /opt/nginx/nginx-#{version}/INSTALLED"
66
68
  end
67
69
 
68
70
  link 'current' do
@@ -114,10 +116,8 @@ directory '/etc/nginx/conf.d/servers' do
114
116
  mode '755'
115
117
  end
116
118
 
117
- if Daddy.config.app?
118
- if Daddy.config.app.type?
119
- include_recipe File.join(File.dirname(File.dirname(__FILE__)), Daddy.config.app.type, 'install.rb')
120
- end
119
+ if app_type
120
+ include_recipe File.join(File.dirname(File.dirname(__FILE__)), app_type, 'install.rb')
121
121
  end
122
122
 
123
123
  unless ENV['DOCKER']
@@ -0,0 +1 @@
1
+ 4fd376bad78797e7f18094a00f0f1088259326436b537eb5af69b01be2ca1345 nginx-1.16.0.tar.gz
@@ -1,6 +1,6 @@
1
- server_name = ENV['SERVER_NAME'] || Daddy.config.web.server_name
2
- rails_env = ENV['RAILS_ENV'] || Daddy.config.rails_env? ? Daddy.config.rails_env : 'development'
3
- rails_root = ENV['RAILS_ROOT'] || Daddy.config.rails_root? ? Daddy.config.rails_root : File.expand_path('.')
1
+ server_name = ENV['WEB_SERVER_NAME'] || Daddy.config.web.server_name
2
+ app_env = ENV['APPLICATION_ENV'] || Daddy.config.application.env
3
+ app_root = ENV['APPLICATION_ROOT'] || Daddy.config.application.root
4
4
 
5
5
  template "/etc/nginx/conf.d/servers/#{server_name}.conf" do
6
6
  source ::File.join(File.dirname(__FILE__), 'templates', '_passenger.conf.erb')
@@ -8,10 +8,12 @@ template "/etc/nginx/conf.d/servers/#{server_name}.conf" do
8
8
  owner 'root'
9
9
  group 'root'
10
10
  mode '644'
11
- variables server_name: server_name, rails_env: rails_env, rails_root: rails_root
11
+ variables server_name: server_name,
12
+ rails_env: app_env,
13
+ rails_root: app_root
12
14
  end
13
15
 
14
- if rails_root.start_with?("/home/#{ENV['USER']}/")
16
+ if app_root.start_with?("/home/#{ENV['USER']}/")
15
17
  directory "/home/#{ENV['USER']}" do
16
18
  user 'root'
17
19
  owner ENV['USER']
@@ -0,0 +1 @@
1
+ include_recipe 'daddy::postgresql::install'
@@ -0,0 +1,39 @@
1
+ require 'daddy/itamae'
2
+
3
+ case os_version
4
+ when /rhel-7\.(.*?)/
5
+ %w{
6
+ postgresql-devel
7
+ postgresql-server
8
+ }.each do |name|
9
+ package name do
10
+ user 'root'
11
+ end
12
+ end
13
+
14
+ execute 'postgresql-setup initdb && touch /var/lib/pgsql/data/INITIALIZED' do
15
+ user 'root'
16
+ not_if 'test -e /var/lib/pgsql/data/INITIALIZED'
17
+ end
18
+
19
+ else
20
+ raise "unsupported os version #{os_version}"
21
+ end
22
+
23
+ service 'postgresql' do
24
+ user 'root'
25
+ action [:enable]
26
+ end
27
+
28
+ template '/var/lib/pgsql/data/pg_hba.conf' do
29
+ user 'root'
30
+ owner 'postgres'
31
+ group 'postgres'
32
+ mode '600'
33
+ end
34
+
35
+ service 'postgresql' do
36
+ user 'root'
37
+ subscribes :restart, 'template[/var/lib/pgsql/data/pg_hba.conf]'
38
+ action :nothing
39
+ end
@@ -0,0 +1,92 @@
1
+ # PostgreSQL Client Authentication Configuration File
2
+ # ===================================================
3
+ #
4
+ # Refer to the "Client Authentication" section in the PostgreSQL
5
+ # documentation for a complete description of this file. A short
6
+ # synopsis follows.
7
+ #
8
+ # This file controls: which hosts are allowed to connect, how clients
9
+ # are authenticated, which PostgreSQL user names they can use, which
10
+ # databases they can access. Records take one of these forms:
11
+ #
12
+ # local DATABASE USER METHOD [OPTIONS]
13
+ # host DATABASE USER ADDRESS METHOD [OPTIONS]
14
+ # hostssl DATABASE USER ADDRESS METHOD [OPTIONS]
15
+ # hostnossl DATABASE USER ADDRESS METHOD [OPTIONS]
16
+ #
17
+ # (The uppercase items must be replaced by actual values.)
18
+ #
19
+ # The first field is the connection type: "local" is a Unix-domain
20
+ # socket, "host" is either a plain or SSL-encrypted TCP/IP socket,
21
+ # "hostssl" is an SSL-encrypted TCP/IP socket, and "hostnossl" is a
22
+ # plain TCP/IP socket.
23
+ #
24
+ # DATABASE can be "all", "sameuser", "samerole", "replication", a
25
+ # database name, or a comma-separated list thereof. The "all"
26
+ # keyword does not match "replication". Access to replication
27
+ # must be enabled in a separate record (see example below).
28
+ #
29
+ # USER can be "all", a user name, a group name prefixed with "+", or a
30
+ # comma-separated list thereof. In both the DATABASE and USER fields
31
+ # you can also write a file name prefixed with "@" to include names
32
+ # from a separate file.
33
+ #
34
+ # ADDRESS specifies the set of hosts the record matches. It can be a
35
+ # host name, or it is made up of an IP address and a CIDR mask that is
36
+ # an integer (between 0 and 32 (IPv4) or 128 (IPv6) inclusive) that
37
+ # specifies the number of significant bits in the mask. A host name
38
+ # that starts with a dot (.) matches a suffix of the actual host name.
39
+ # Alternatively, you can write an IP address and netmask in separate
40
+ # columns to specify the set of hosts. Instead of a CIDR-address, you
41
+ # can write "samehost" to match any of the server's own IP addresses,
42
+ # or "samenet" to match any address in any subnet that the server is
43
+ # directly connected to.
44
+ #
45
+ # METHOD can be "trust", "reject", "md5", "password", "gss", "sspi",
46
+ # "krb5", "ident", "peer", "pam", "ldap", "radius" or "cert". Note that
47
+ # "password" sends passwords in clear text; "md5" is preferred since
48
+ # it sends encrypted passwords.
49
+ #
50
+ # OPTIONS are a set of options for the authentication in the format
51
+ # NAME=VALUE. The available options depend on the different
52
+ # authentication methods -- refer to the "Client Authentication"
53
+ # section in the documentation for a list of which options are
54
+ # available for which authentication methods.
55
+ #
56
+ # Database and user names containing spaces, commas, quotes and other
57
+ # special characters must be quoted. Quoting one of the keywords
58
+ # "all", "sameuser", "samerole" or "replication" makes the name lose
59
+ # its special character, and just match a database or username with
60
+ # that name.
61
+ #
62
+ # This file is read on server startup and when the postmaster receives
63
+ # a SIGHUP signal. If you edit the file on a running system, you have
64
+ # to SIGHUP the postmaster for the changes to take effect. You can
65
+ # use "pg_ctl reload" to do that.
66
+
67
+ # Put your actual configuration here
68
+ # ----------------------------------
69
+ #
70
+ # If you want to allow non-local connections, you need to add more
71
+ # "host" records. In that case you will also need to make PostgreSQL
72
+ # listen on a non-local interface via the listen_addresses
73
+ # configuration parameter, or via the -i or -h command line switches.
74
+
75
+
76
+
77
+ # TYPE DATABASE USER ADDRESS METHOD
78
+
79
+ # "local" is for Unix domain socket connections only
80
+ local all all peer
81
+ # IPv4 local connections:
82
+ host all all 127.0.0.1/32 trust
83
+ # IPv6 local connections:
84
+ host all all ::1/128 trust
85
+ # Allow replication connections from localhost, by a user with the
86
+ # replication privilege.
87
+ #local replication postgres peer
88
+ #host replication postgres 127.0.0.1/32 ident
89
+ #host replication postgres ::1/128 ident
90
+
91
+ host redmine redmine 127.0.0.1/32 md5
92
+ host redmine redmine ::1/128 md5
@@ -0,0 +1,28 @@
1
+ version = ENV['REDMINE_VERSION'] || ItamaePluginRecipeDaddy::REDMINE_VERSION
2
+
3
+ include_recipe 'daddy::postgresql'
4
+ include_recipe 'daddy::redmine::install'
5
+
6
+ local_ruby_block 'setup redmine database' do
7
+ block do
8
+ at_exit do
9
+ Itamae.logger.info "Run following commands to proceed.\n" + <<-EOF
10
+
11
+ --------------------------------------------------------------------------------
12
+
13
+ sudo -s
14
+ cd /var/lib/pgsql
15
+ sudo -u postgres createuser -P redmine
16
+ sudo -u postgres createdb -E UTF-8 -l ja_JP.UTF-8 -O redmine -T template0 redmine
17
+ exit
18
+ cd /opt/redmine/redmine-#{version}
19
+ sudo vi /opt/redmine/redmine-#{version}/config/database.yml
20
+ sudo vi /opt/redmine/redmine-#{version}/config/configuration.yml
21
+ sudo -u redmine bundle exec rake generate_secret_token
22
+ sudo -u redmine bundle exec rake db:migrate RAILS_ENV=production
23
+
24
+ --------------------------------------------------------------------------------
25
+ EOF
26
+ end
27
+ end
28
+ end
@@ -0,0 +1,81 @@
1
+ version = ENV['REDMINE_VERSION'] || ItamaePluginRecipeDaddy::REDMINE_VERSION
2
+
3
+ %w{
4
+ ImageMagick
5
+ ImageMagick-devel
6
+ ipa-pgothic-fonts
7
+ libcurl-devel
8
+ libffi-devel
9
+ libyaml-devel
10
+ openssl-devel
11
+ readline-devel
12
+ zlib-devel
13
+ }.each do |name|
14
+ package name do
15
+ user 'root'
16
+ end
17
+ end
18
+
19
+ execute "download redmine-#{version}" do
20
+ cwd '/var/daddy/tmp'
21
+ command <<-EOF
22
+ wget http://www.redmine.org/releases/redmine-#{version}.tar.gz
23
+ EOF
24
+ not_if "echo #{::File.read(::File.join(::File.dirname(__FILE__), "redmine-#{version}_sha256sum.txt")).strip} | sha256sum -c"
25
+ end
26
+
27
+ user 'redmine' do
28
+ user 'root'
29
+ system_user true
30
+ home '/opt/redmine/current'
31
+ end
32
+
33
+ directory '/opt/redmine' do
34
+ user 'root'
35
+ owner 'redmine'
36
+ group 'redmine'
37
+ mode '755'
38
+ end
39
+
40
+ execute "build redmine-#{version}" do
41
+ cwd '/var/daddy/tmp'
42
+ command <<-EOF
43
+ set -eu
44
+ rm -Rf redmine-#{version}/
45
+ tar zxf redmine-#{version}.tar.gz
46
+ sudo rm -Rf /opt/redmine/redmine-#{version}/
47
+ sudo mv redmine-#{version} /opt/redmine/
48
+ sudo chown -R redmine:redmine /opt/redmine/redmine-#{version}
49
+ sudo -u redmine touch /opt/redmine/redmine-#{version}/INSTALLED
50
+ EOF
51
+ not_if "test -e /opt/redmine/redmine-#{version}/INSTALLED"
52
+ end
53
+
54
+ %w{
55
+ configuration.yml
56
+ database.yml
57
+ }.each do |name|
58
+ template "/opt/redmine/redmine-#{version}/config/#{name}" do
59
+ user 'root'
60
+ owner 'redmine'
61
+ group 'redmine'
62
+ mode '644'
63
+ end
64
+ end
65
+
66
+ gem_package 'bundler' do
67
+ user 'root'
68
+ version '1.17.3'
69
+ end
70
+
71
+ execute 'bundle _1.17.3_ install --without development test' do
72
+ cwd "/opt/redmine/redmine-#{version}"
73
+ user 'redmine'
74
+ end
75
+
76
+ link 'current' do
77
+ user 'root'
78
+ cwd '/opt/redmine'
79
+ to "redmine-#{version}"
80
+ force true
81
+ end
@@ -0,0 +1 @@
1
+ 30fb5b476ccf9ff3e3a1132b881a9a14e5b3f3c3c736aea4b29cdcc7cf739421 redmine-3.4.10.tar.gz
@@ -0,0 +1,9 @@
1
+ production:
2
+ email_delivery:
3
+ delivery_method: :smtp
4
+ smtp_settings:
5
+ address: "localhost"
6
+ port: 25
7
+ domain: "localhost"
8
+
9
+ rmagick_font_path: /usr/share/fonts/ipa-pgothic/ipagp.ttf
@@ -0,0 +1,6 @@
1
+ production:
2
+ adapter: postgresql
3
+ database: redmine
4
+ host: localhost
5
+ username: redmine
6
+ password: redmine
@@ -1,5 +1,5 @@
1
1
  module ItamaePluginRecipeDaddy
2
- VERSION = '0.1.12'
2
+ VERSION = '0.1.13'
3
3
 
4
4
  CHROME_DRIVER_VERSION = [
5
5
  CHROME_DRIVER_VERSION_MAJOR = '74',
@@ -15,8 +15,8 @@ module ItamaePluginRecipeDaddy
15
15
 
16
16
  NGINX_VERSION = [
17
17
  NGINX_VERSION_MAJOR = '1',
18
- NGINX_VERSION_MINOR = '14',
19
- NGINX_VERSION_PATCH = '2'
18
+ NGINX_VERSION_MINOR = '16',
19
+ NGINX_VERSION_PATCH = '0'
20
20
  ].join('.')
21
21
 
22
22
  NGINX_RTMP_MODULE_VERSION = [
@@ -34,7 +34,7 @@ module ItamaePluginRecipeDaddy
34
34
  PASSENGER_VERSION = [
35
35
  PASSENGER_VERSION_MAJOR = '6',
36
36
  PASSENGER_VERSION_MINOR = '0',
37
- PASSENGER_VERSION_PATCH = '1'
37
+ PASSENGER_VERSION_PATCH = '2'
38
38
  ].join('.')
39
39
 
40
40
  PYTHON_VERSION = [
@@ -43,6 +43,12 @@ module ItamaePluginRecipeDaddy
43
43
  PYTHON_VERSION_PATCH = '6'
44
44
  ].join('.')
45
45
 
46
+ REDMINE_VERSION = [
47
+ REDMINE_VERSION_MAJOR = '3',
48
+ REDMINE_VERSION_MINOR = '4',
49
+ REDMINE_VERSION_PATCH = '10'
50
+ ].join('.')
51
+
46
52
  WKHTMLTOPDF_VERSION = [
47
53
  WKHTMLTOPDF_VERSION_MAJOR = '0',
48
54
  WKHTMLTOPDF_VERSION_MINOR = '12',
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.12
4
+ version: 0.1.13
5
5
  platform: ruby
6
6
  authors:
7
7
  - ichy
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-04-27 00:00:00.000000000 Z
11
+ date: 2019-05-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: itamae
@@ -36,28 +36,28 @@ dependencies:
36
36
  requirements:
37
37
  - - "~>"
38
38
  - !ruby/object:Gem::Version
39
- version: '1.16'
39
+ version: '2.0'
40
40
  type: :development
41
41
  prerelease: false
42
42
  version_requirements: !ruby/object:Gem::Requirement
43
43
  requirements:
44
44
  - - "~>"
45
45
  - !ruby/object:Gem::Version
46
- version: '1.16'
46
+ version: '2.0'
47
47
  - !ruby/object:Gem::Dependency
48
48
  name: rake
49
49
  requirement: !ruby/object:Gem::Requirement
50
50
  requirements:
51
51
  - - "~>"
52
52
  - !ruby/object:Gem::Version
53
- version: '12.0'
53
+ version: '12.3'
54
54
  type: :development
55
55
  prerelease: false
56
56
  version_requirements: !ruby/object:Gem::Requirement
57
57
  requirements:
58
58
  - - "~>"
59
59
  - !ruby/object:Gem::Version
60
- version: '12.0'
60
+ version: '12.3'
61
61
  description: itamae recipe collections
62
62
  email:
63
63
  - ichylinux@gmail.com
@@ -73,6 +73,7 @@ files:
73
73
  - Rakefile
74
74
  - bin/console
75
75
  - bin/setup
76
+ - config/daddy.yml.sample
76
77
  - itamae-plugin-recipe-daddy.gemspec
77
78
  - lib/itamae-plugin-recipe-daddy.rb
78
79
  - lib/itamae/plugin/recipe/daddy/bazel.rb
@@ -93,6 +94,7 @@ files:
93
94
  - lib/itamae/plugin/recipe/daddy/nginx/nginx-1.13.9_sha256sum.txt
94
95
  - lib/itamae/plugin/recipe/daddy/nginx/nginx-1.14.0_sha256sum.txt
95
96
  - lib/itamae/plugin/recipe/daddy/nginx/nginx-1.14.2_sha256sum.txt
97
+ - lib/itamae/plugin/recipe/daddy/nginx/nginx-1.16.0_sha256sum.txt
96
98
  - lib/itamae/plugin/recipe/daddy/nginx/start.rb
97
99
  - lib/itamae/plugin/recipe/daddy/nginx/stop.rb
98
100
  - lib/itamae/plugin/recipe/daddy/nginx/templates/etc/nginx/conf.d/default.conf.erb
@@ -105,11 +107,19 @@ files:
105
107
  - lib/itamae/plugin/recipe/daddy/opencv/opencv-3.4.3_sha256sum.txt
106
108
  - lib/itamae/plugin/recipe/daddy/passenger/install.rb
107
109
  - lib/itamae/plugin/recipe/daddy/passenger/templates/_passenger.conf.erb
110
+ - lib/itamae/plugin/recipe/daddy/postgresql.rb
111
+ - lib/itamae/plugin/recipe/daddy/postgresql/install.rb
112
+ - lib/itamae/plugin/recipe/daddy/postgresql/templates/var/lib/pgsql/data/pg_hba.conf.erb
108
113
  - lib/itamae/plugin/recipe/daddy/python.rb
109
114
  - lib/itamae/plugin/recipe/daddy/python/Python-3.6.3_sha256sum.txt
110
115
  - lib/itamae/plugin/recipe/daddy/python/Python-3.6.6_sha256sum.txt
111
116
  - lib/itamae/plugin/recipe/daddy/python/install.rb
112
117
  - lib/itamae/plugin/recipe/daddy/redis/install.rb
118
+ - lib/itamae/plugin/recipe/daddy/redmine.rb
119
+ - lib/itamae/plugin/recipe/daddy/redmine/install.rb
120
+ - lib/itamae/plugin/recipe/daddy/redmine/redmine-3.4.10_sha256sum.txt
121
+ - lib/itamae/plugin/recipe/daddy/redmine/templates/configuration.yml.erb
122
+ - lib/itamae/plugin/recipe/daddy/redmine/templates/database.yml.erb
113
123
  - lib/itamae/plugin/recipe/daddy/selenium/chrome.rb
114
124
  - lib/itamae/plugin/recipe/daddy/selenium/drivers/chromedriver.rb
115
125
  - lib/itamae/plugin/recipe/daddy/selenium/drivers/chromedriver_linux64-2.35_sha256sum.txt
@@ -147,8 +157,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
147
157
  - !ruby/object:Gem::Version
148
158
  version: '0'
149
159
  requirements: []
150
- rubyforge_project:
151
- rubygems_version: 2.7.7
160
+ rubygems_version: 3.0.3
152
161
  signing_key:
153
162
  specification_version: 4
154
163
  summary: itamae recipe collections