encrypted_credentials 0.1.2 → 0.1.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.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/encrypted_credentials.gemspec +2 -2
- data/lib/encrypted_credentials/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ab39bf18059cdbb329a5d514d5a298be009fd79966fde2517df9426330f6849e
|
|
4
|
+
data.tar.gz: 5b871bbbfe63ee62f7a590b9340f3e18fe05406a1c4016a393836b70b532c63d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: '0962af05421e0ffb95b1ef43d937446cd5eaeded29e1b6a518f0c5c22363820442f0f87188cdec24965e130c05cc545483c92a924434115556dd58166e493dcf'
|
|
7
|
+
data.tar.gz: 91e0f81196155eb7842b8b60826fd0b1d771f54df8cd35563c2b7df025f7ee4888f1faf07caeb782b81b63bf457f411989661b8b45498e14d07f336a9d9ea432
|
data/README.md
CHANGED
|
@@ -58,7 +58,7 @@ File.write('credentials.yml.enc', rails_compatible_encrypted_data)
|
|
|
58
58
|
|
|
59
59
|
## Contributing
|
|
60
60
|
|
|
61
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/EugZol/
|
|
61
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/EugZol/encrypted_credentials.
|
|
62
62
|
|
|
63
63
|
## License
|
|
64
64
|
|
|
@@ -8,8 +8,8 @@ Gem::Specification.new do |spec|
|
|
|
8
8
|
spec.authors = ["Eugene Zolotarev", "Hodlex Ltd."]
|
|
9
9
|
spec.email = ["eugzol@gmail.com", "cto@hodlhodl.com"]
|
|
10
10
|
|
|
11
|
-
spec.summary = "
|
|
12
|
-
spec.homepage = "https://github.com/EugZol/
|
|
11
|
+
spec.summary = "Lightweight credentials encoder/decoder, compatible with Rails credentials"
|
|
12
|
+
spec.homepage = "https://github.com/EugZol/encrypted_credentials"
|
|
13
13
|
spec.license = "MIT"
|
|
14
14
|
spec.required_ruby_version = ">= 2.4.0"
|
|
15
15
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: encrypted_credentials
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Eugene Zolotarev
|
|
@@ -38,12 +38,12 @@ files:
|
|
|
38
38
|
- lib/encrypted_credentials.rb
|
|
39
39
|
- lib/encrypted_credentials/coder.rb
|
|
40
40
|
- lib/encrypted_credentials/version.rb
|
|
41
|
-
homepage: https://github.com/EugZol/
|
|
41
|
+
homepage: https://github.com/EugZol/encrypted_credentials
|
|
42
42
|
licenses:
|
|
43
43
|
- MIT
|
|
44
44
|
metadata:
|
|
45
|
-
homepage_uri: https://github.com/EugZol/
|
|
46
|
-
source_code_uri: https://github.com/EugZol/
|
|
45
|
+
homepage_uri: https://github.com/EugZol/encrypted_credentials
|
|
46
|
+
source_code_uri: https://github.com/EugZol/encrypted_credentials
|
|
47
47
|
post_install_message:
|
|
48
48
|
rdoc_options: []
|
|
49
49
|
require_paths:
|
|
@@ -62,5 +62,5 @@ requirements: []
|
|
|
62
62
|
rubygems_version: 3.1.6
|
|
63
63
|
signing_key:
|
|
64
64
|
specification_version: 4
|
|
65
|
-
summary:
|
|
65
|
+
summary: Lightweight credentials encoder/decoder, compatible with Rails credentials
|
|
66
66
|
test_files: []
|