frikandel 3.0.1 → 3.0.2
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 +4 -4
- data/.devcontainer/Dockerfile +31 -0
- data/.devcontainer/base.Dockerfile +43 -0
- data/.devcontainer/devcontainer.json +40 -0
- data/.github/workflows/ci.yml +10 -2
- data/README.md +1 -2
- data/frikandel.gemspec +1 -0
- data/lib/frikandel/version.rb +1 -1
- data/spec/dummy/log/test.log +1469 -0
- metadata +9 -3
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: frikandel
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Taktsoft
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-11-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -135,6 +135,9 @@ executables: []
|
|
135
135
|
extensions: []
|
136
136
|
extra_rdoc_files: []
|
137
137
|
files:
|
138
|
+
- ".devcontainer/Dockerfile"
|
139
|
+
- ".devcontainer/base.Dockerfile"
|
140
|
+
- ".devcontainer/devcontainer.json"
|
138
141
|
- ".github/workflows/ci.yml"
|
139
142
|
- ".gitignore"
|
140
143
|
- ".rspec"
|
@@ -193,6 +196,7 @@ files:
|
|
193
196
|
- spec/dummy/config/locales/en.yml
|
194
197
|
- spec/dummy/config/routes.rb
|
195
198
|
- spec/dummy/lib/assets/.keep
|
199
|
+
- spec/dummy/log/test.log
|
196
200
|
- spec/dummy/public/404.html
|
197
201
|
- spec/dummy/public/422.html
|
198
202
|
- spec/dummy/public/500.html
|
@@ -204,7 +208,8 @@ files:
|
|
204
208
|
homepage: https://github.com/taktsoft/frikandel
|
205
209
|
licenses:
|
206
210
|
- MIT
|
207
|
-
metadata:
|
211
|
+
metadata:
|
212
|
+
rubygems_mfa_required: 'true'
|
208
213
|
post_install_message:
|
209
214
|
rdoc_options: []
|
210
215
|
require_paths:
|
@@ -257,6 +262,7 @@ test_files:
|
|
257
262
|
- spec/dummy/config/locales/en.yml
|
258
263
|
- spec/dummy/config/routes.rb
|
259
264
|
- spec/dummy/config.ru
|
265
|
+
- spec/dummy/log/test.log
|
260
266
|
- spec/dummy/public/404.html
|
261
267
|
- spec/dummy/public/422.html
|
262
268
|
- spec/dummy/public/500.html
|