ectoplasm 1.2.1 → 1.2.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/.github/workflows/build.yml +27 -0
- data/.github/workflows/gem-push.yml +44 -0
- data/.rubocop.yml +4522 -0
- data/CHANGELOG.md +12 -0
- data/Gemfile +5 -1
- data/LICENSE.txt +674 -21
- data/lib/ectoplasm.rb +2 -2
- metadata +6 -3
data/lib/ectoplasm.rb
CHANGED
@@ -4,7 +4,7 @@ module Ectoplasm
|
|
4
4
|
module Version
|
5
5
|
MAJOR = 1
|
6
6
|
MINOR = 2
|
7
|
-
TINY =
|
7
|
+
TINY = 2
|
8
8
|
end
|
9
9
|
|
10
10
|
VERSION = [Version::MAJOR, Version::MINOR, Version::TINY].compact * '.'
|
@@ -215,7 +215,7 @@ module Ectoplasm
|
|
215
215
|
|
216
216
|
|
217
217
|
class ::OpenStruct
|
218
|
-
def obfuscate! secure_keys = ['password', 'secret', 'token', 'secure']
|
218
|
+
def obfuscate! secure_keys = ['password', 'secret', 'token', 'secure', 'pass', 'key', 'cert']
|
219
219
|
OpenStruct.new(self.to_h.obfuscate! secure_keys)
|
220
220
|
end
|
221
221
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ectoplasm
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.2.
|
4
|
+
version: 1.2.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Christian Neubauer
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-08-01 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: Adds some extension methods to build in types to add prettier console
|
14
14
|
output
|
@@ -18,7 +18,10 @@ executables: []
|
|
18
18
|
extensions: []
|
19
19
|
extra_rdoc_files: []
|
20
20
|
files:
|
21
|
+
- ".github/workflows/build.yml"
|
22
|
+
- ".github/workflows/gem-push.yml"
|
21
23
|
- ".gitignore"
|
24
|
+
- ".rubocop.yml"
|
22
25
|
- CHANGELOG.md
|
23
26
|
- Gemfile
|
24
27
|
- LICENSE.txt
|
@@ -50,7 +53,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
50
53
|
- !ruby/object:Gem::Version
|
51
54
|
version: '0'
|
52
55
|
requirements: []
|
53
|
-
rubygems_version: 3.
|
56
|
+
rubygems_version: 3.3.7
|
54
57
|
signing_key:
|
55
58
|
specification_version: 4
|
56
59
|
summary: A helper library for console output
|