daddy 0.9.7 → 0.9.9

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: 843d1f8c36f53d4bf57dbe550f473830a8a0d5b5c0bb633f5c03dd1108819a46
4
- data.tar.gz: 5ab2d651823ef638689b29ead92f5b82a983c08b7cb1cc4dfd114dae6681b256
3
+ metadata.gz: f451138129cb80811278f5485a593a98c389a8427f1e8eefec2785165e43bc2a
4
+ data.tar.gz: 9cea4f7ef25a65f50139818127195ec769c1b35bd3c8d44c57c2a45443a88db5
5
5
  SHA512:
6
- metadata.gz: 512884706d3897482b8a6edb93f528ad2f359f8655c1b1bfd2d33fad09bd9bc326a77df7026e1ba8ac80cf32a6fa7c4530eca4427f414170d8d938b38c23ef9c
7
- data.tar.gz: 4473aa2d2fa6ae59302ac706ead914f80518bcb6a1d0d89eb089a6072c8ad909a1e1fb225e34e85bbb443c2f8009c30a824dff40743540aac08777b5c2d9ee7d
6
+ metadata.gz: 4fdfdaf67a3ca79c3ddaa9d2ae5c9a8ac36757984959c2e511605553c6bfae0111bf61b754e0d4a30771395382aba4813d6e9e7204159cfcc2ad6ff54019084f
7
+ data.tar.gz: e30649c6b86bc94b23d908d2eab3cf4e7319d7fbfbb582d3db3f03d8de571034a0f8507538070b2e63318460c2003de040c6d89acc08332c6cc837bedb130434
@@ -27,8 +27,8 @@ end
27
27
 
28
28
  {
29
29
  'rubygems-update' => nil,
30
- 'bundler' => '2.3.4',
31
- 'itamae' => '1.12.5',
30
+ 'bundler' => '2.3.26',
31
+ 'itamae' => '1.14.1',
32
32
  'daddy' => nil
33
33
  }.each do |name, version|
34
34
  gem_package name do
@@ -50,12 +50,7 @@ module Daddy
50
50
  end
51
51
 
52
52
  def ssl_options
53
- daddy_dir = File.expand_path('../../..', __FILE__)
54
- ca_path = File.join(daddy_dir, 'ssl')
55
-
56
53
  {
57
- ca_path: ca_path,
58
- ca_file: File.join(ca_path, 'cert.pem'),
59
54
  verify: @options.fetch(:verify_ssl, true)
60
55
  }
61
56
  end
data/lib/daddy/version.rb CHANGED
@@ -2,6 +2,6 @@ module Daddy
2
2
  VERSION = [
3
3
  VERSION_MAJOR = '0',
4
4
  VERSION_MINOR = '9',
5
- VERSION_REVISION = '7'
5
+ VERSION_REVISION = '9'
6
6
  ].join('.')
7
7
  end
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.9.7
4
+ version: 0.9.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - ichy
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-06-07 00:00:00.000000000 Z
11
+ date: 2024-11-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: docker-api
@@ -359,7 +359,6 @@ files:
359
359
  - lib/daddy/cucumber/helpers/assert.rb
360
360
  - lib/daddy/cucumber/helpers/html.rb
361
361
  - lib/daddy/cucumber/helpers/pause.rb
362
- - lib/daddy/cucumber/helpers/puts.rb
363
362
  - lib/daddy/cucumber/helpers/table.rb
364
363
  - lib/daddy/cucumber/hooks/fixtures.rb
365
364
  - lib/daddy/cucumber/rails.rb
@@ -439,7 +438,6 @@ files:
439
438
  - lib/tasks/trac.rake
440
439
  - lib/tasks/unicorn.rake
441
440
  - lib/tasks/vsftpd.rake
442
- - ssl/cert.pem
443
441
  - templates/Gemfile.erb
444
442
  - templates/app/controllers/controller.rb.erb
445
443
  - templates/app/views/_form.html.erb
@@ -469,7 +467,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
469
467
  - !ruby/object:Gem::Version
470
468
  version: '0'
471
469
  requirements: []
472
- rubygems_version: 3.2.16
470
+ rubygems_version: 3.4.22
473
471
  signing_key:
474
472
  specification_version: 4
475
473
  summary: My rails dad
@@ -1,13 +0,0 @@
1
- module Daddy
2
- module Cucumber
3
- module Puts
4
-
5
- def pre(string)
6
- puts "<pre>#{string}</pre>"
7
- end
8
-
9
- end
10
- end
11
- end
12
-
13
- World(Daddy::Cucumber::Puts)