daddy 0.8.0 → 0.9.3

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.
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.8.0
4
+ version: 0.9.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - ichy
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-05-12 00:00:00.000000000 Z
11
+ date: 2021-01-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: docker-api
@@ -164,6 +164,20 @@ dependencies:
164
164
  - - ">="
165
165
  - !ruby/object:Gem::Version
166
166
  version: '0'
167
+ - !ruby/object:Gem::Dependency
168
+ name: faraday_middleware
169
+ requirement: !ruby/object:Gem::Requirement
170
+ requirements:
171
+ - - ">="
172
+ - !ruby/object:Gem::Version
173
+ version: '0'
174
+ type: :development
175
+ prerelease: false
176
+ version_requirements: !ruby/object:Gem::Requirement
177
+ requirements:
178
+ - - ">="
179
+ - !ruby/object:Gem::Version
180
+ version: '0'
167
181
  - !ruby/object:Gem::Dependency
168
182
  name: rails
169
183
  requirement: !ruby/object:Gem::Requirement
@@ -286,13 +300,11 @@ files:
286
300
  - itamae/cookbooks/mongodb/install.rb
287
301
  - itamae/cookbooks/netdata/install.rb
288
302
  - itamae/cookbooks/netdata/netdata-installer.sh
289
- - itamae/cookbooks/nginx.rb
290
303
  - itamae/cookbooks/nginx/config/gitbucket.rb
291
304
  - itamae/cookbooks/nginx/config/jenkins.rb
292
305
  - itamae/cookbooks/nginx/config/templates/unicorn.conf.erb
293
306
  - itamae/cookbooks/obs_studio/install.rb
294
307
  - itamae/cookbooks/phantomjs/install.rb
295
- - itamae/cookbooks/redmine.rb
296
308
  - itamae/cookbooks/sbt/install.rb
297
309
  - itamae/cookbooks/tensorflow/install.rb
298
310
  - itamae/cookbooks/trac/install.rb
@@ -316,6 +328,9 @@ files:
316
328
  - itamae/environments/ruby/ruby-2.5.3.tar.gz_sha256sum.txt
317
329
  - itamae/environments/ruby/ruby-2.5.5.tar.gz_sha256sum.txt
318
330
  - itamae/environments/ruby/ruby-2.6.3.tar.gz_sha256sum.txt
331
+ - itamae/environments/ruby/ruby-2.6.5.tar.gz_sha256sum.txt
332
+ - itamae/environments/ruby/ruby-2.6.6.tar.gz_sha256sum.txt
333
+ - itamae/environments/ruby/ruby-2.7.2.tar.gz_sha256sum.txt
319
334
  - itamae/locale/en.yml
320
335
  - itamae/locale/ja.yml
321
336
  - itamae/templates/etc/god/master.conf.erb
@@ -349,7 +364,6 @@ files:
349
364
  - lib/daddy/cucumber/step_definitions/fill_in.rb
350
365
  - lib/daddy/cucumber/step_definitions/select.rb
351
366
  - lib/daddy/git.rb
352
- - lib/daddy/helpers/html_helper.rb
353
367
  - lib/daddy/http_client.rb
354
368
  - lib/daddy/itamae.rb
355
369
  - lib/daddy/itamae/config.rb
@@ -451,7 +465,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
451
465
  - !ruby/object:Gem::Version
452
466
  version: '0'
453
467
  requirements: []
454
- rubygems_version: 3.0.3
468
+ rubygems_version: 3.1.4
455
469
  signing_key:
456
470
  specification_version: 4
457
471
  summary: My rails dad
@@ -1,5 +0,0 @@
1
- require 'daddy/itamae'
2
-
3
- include_recipe 'daddy::nginx::stop'
4
- include_recipe 'daddy::nginx::install'
5
- include_recipe 'daddy::nginx::start'
@@ -1,6 +0,0 @@
1
- require 'daddy/itamae'
2
-
3
- include_recipe 'daddy::nginx::stop'
4
- include_recipe 'daddy::nginx::install'
5
- include_recipe 'daddy::redmine::install'
6
- include_recipe 'daddy::nginx::start'
@@ -1,14 +0,0 @@
1
- module Daddy
2
- module Helpers
3
-
4
- module HtmlHelper
5
-
6
- def html_line_break(s)
7
- ret = html_escape(s)
8
- ret.gsub(/\r\n|\r|\n/, "<br/>").html_safe
9
- end
10
-
11
- end
12
-
13
- end
14
- end