secret_keys 1.0.0 → 1.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 +4 -4
- data/CHANGE_LOG.md +7 -1
- data/README.md +2 -0
- data/VERSION +1 -1
- data/secret_keys.gemspec +1 -0
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ea7b02c543a0c676946de57cf6b5614a896dd0306d2a9ca6c970369e29d9eb30
|
|
4
|
+
data.tar.gz: 99635a343094bf346d73368739e1ab66c2bfbe1ecae0f1eda124a9f7c90bd379
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 077fb2e1b46e7e62a9e3f54315e7e6a98bda74256ab16fa550a8a5cbc0efb34937d1359639f6e91d7102801e114cf079f70415ab091670b99b5c4fc9acf8b63a
|
|
7
|
+
data.tar.gz: 3b640dfae9fc3f2ee60763a3bfebb17a12b5a0428743d788d8151c49d7916e2e80249ddcad3e150573d5ae72d9a68c26021b414c1bfb1e15ebfb366ac663c966
|
data/CHANGE_LOG.md
CHANGED
data/README.md
CHANGED
|
@@ -73,6 +73,8 @@ Note that since the hash must be serialized to JSON, only JSON compatible keys a
|
|
|
73
73
|
}
|
|
74
74
|
```
|
|
75
75
|
|
|
76
|
+
This gem is documented using yard. More specific documentation can be found on [rubydoc.info](https://www.rubydoc.info/gems/secret_keys).
|
|
77
|
+
|
|
76
78
|
## Command Line Tool
|
|
77
79
|
|
|
78
80
|
You can use the `secret_keys` command line tool to manage your JSON files.
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.
|
|
1
|
+
1.0.1
|
data/secret_keys.gemspec
CHANGED
|
@@ -9,6 +9,7 @@ Gem::Specification.new do |spec|
|
|
|
9
9
|
spec.license = "MIT"
|
|
10
10
|
spec.metadata["homepage_uri"] = spec.homepage
|
|
11
11
|
spec.metadata["source_code_uri"] = "https://github.com/bdurand/secret_keys/tree/v#{spec.version}"
|
|
12
|
+
spec.metadata["documentation_uri"] = "https://www.rubydoc.info/gems/secret_keys"
|
|
12
13
|
|
|
13
14
|
# Specify which files should be added to the gem when it is released.
|
|
14
15
|
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: secret_keys
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Brian Durand
|
|
@@ -49,7 +49,8 @@ licenses:
|
|
|
49
49
|
- MIT
|
|
50
50
|
metadata:
|
|
51
51
|
homepage_uri: https://github.com/bdurand/secret_keys
|
|
52
|
-
source_code_uri: https://github.com/bdurand/secret_keys/tree/v1.0.
|
|
52
|
+
source_code_uri: https://github.com/bdurand/secret_keys/tree/v1.0.1
|
|
53
|
+
documentation_uri: https://www.rubydoc.info/gems/secret_keys
|
|
53
54
|
post_install_message:
|
|
54
55
|
rdoc_options: []
|
|
55
56
|
require_paths:
|