donce 0.0.1
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 +7 -0
- data/.0pdd.yml +22 -0
- data/.gitattributes +7 -0
- data/.github/workflows/actionlint.yml +42 -0
- data/.github/workflows/codecov.yml +43 -0
- data/.github/workflows/copyrights.yml +35 -0
- data/.github/workflows/markdown-lint.yml +39 -0
- data/.github/workflows/pdd.yml +35 -0
- data/.github/workflows/rake.yml +45 -0
- data/.github/workflows/xcop.yml +35 -0
- data/.github/workflows/yamllint.yml +37 -0
- data/.gitignore +8 -0
- data/.pdd +7 -0
- data/.rubocop.yml +49 -0
- data/.rultor.yml +42 -0
- data/.simplecov +39 -0
- data/.yamllint.yml +29 -0
- data/Gemfile +39 -0
- data/Gemfile.lock +227 -0
- data/LICENSE.txt +21 -0
- data/README.md +51 -0
- data/Rakefile +63 -0
- data/donce.gemspec +49 -0
- data/lib/donce.rb +147 -0
- data/renovate.json +6 -0
- data/test/test__helper.rb +39 -0
- data/test/test_donce.rb +46 -0
- metadata +118 -0
metadata
ADDED
@@ -0,0 +1,118 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: donce
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Yegor Bugayenko
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2025-02-06 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: backtrace
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: os
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: qbash
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
description: A one-function library that helps you build a temporary Docker image,
|
56
|
+
run a temporary Docker container from it, and then clean up, deleting them both.
|
57
|
+
This may be helpful for automated testing, when you test how your code might behave
|
58
|
+
in an isolated environment. This may also be helpful when you need a custom Docker
|
59
|
+
image with a tool inside, but Testcontainers don' have such an image.
|
60
|
+
email: yegor256@gmail.com
|
61
|
+
executables: []
|
62
|
+
extensions: []
|
63
|
+
extra_rdoc_files:
|
64
|
+
- README.md
|
65
|
+
- LICENSE.txt
|
66
|
+
files:
|
67
|
+
- ".0pdd.yml"
|
68
|
+
- ".gitattributes"
|
69
|
+
- ".github/workflows/actionlint.yml"
|
70
|
+
- ".github/workflows/codecov.yml"
|
71
|
+
- ".github/workflows/copyrights.yml"
|
72
|
+
- ".github/workflows/markdown-lint.yml"
|
73
|
+
- ".github/workflows/pdd.yml"
|
74
|
+
- ".github/workflows/rake.yml"
|
75
|
+
- ".github/workflows/xcop.yml"
|
76
|
+
- ".github/workflows/yamllint.yml"
|
77
|
+
- ".gitignore"
|
78
|
+
- ".pdd"
|
79
|
+
- ".rubocop.yml"
|
80
|
+
- ".rultor.yml"
|
81
|
+
- ".simplecov"
|
82
|
+
- ".yamllint.yml"
|
83
|
+
- Gemfile
|
84
|
+
- Gemfile.lock
|
85
|
+
- LICENSE.txt
|
86
|
+
- README.md
|
87
|
+
- Rakefile
|
88
|
+
- donce.gemspec
|
89
|
+
- lib/donce.rb
|
90
|
+
- renovate.json
|
91
|
+
- test/test__helper.rb
|
92
|
+
- test/test_donce.rb
|
93
|
+
homepage: http://github.com/yegor256/donce.rb
|
94
|
+
licenses:
|
95
|
+
- MIT
|
96
|
+
metadata:
|
97
|
+
rubygems_mfa_required: 'true'
|
98
|
+
post_install_message:
|
99
|
+
rdoc_options:
|
100
|
+
- "--charset=UTF-8"
|
101
|
+
require_paths:
|
102
|
+
- lib
|
103
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
104
|
+
requirements:
|
105
|
+
- - ">="
|
106
|
+
- !ruby/object:Gem::Version
|
107
|
+
version: '3.0'
|
108
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
109
|
+
requirements:
|
110
|
+
- - ">="
|
111
|
+
- !ruby/object:Gem::Version
|
112
|
+
version: '0'
|
113
|
+
requirements: []
|
114
|
+
rubygems_version: 3.4.10
|
115
|
+
signing_key:
|
116
|
+
specification_version: 4
|
117
|
+
summary: Builds and starts temporary Docker containers
|
118
|
+
test_files: []
|