hashlation 0.1.0 → 0.1.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/.idea/.DS_Store +0 -0
- data/hashlation.gemspec +5 -2
- data/lib/hashlation/version.rb +1 -1
- metadata +6 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b3ec5607c29923a8ef6ccb8e880c75780adb8dc4ed40f32b938601b17d2acd88
|
|
4
|
+
data.tar.gz: 7925a5d3ce2fbefcfa44005730968105b47af93cec4dc76d6dcb8f9c7b22aba5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b7fa942c882b82fbb703a6abf5120e7261f1e50024630748b767e78fe7fbb4d77a38d649f5520d116ddc52a413fd01696b129b3fbd1c608c6154e532b34fb9cd
|
|
7
|
+
data.tar.gz: 399d3a0325b7c6b1395f6976d20df5bde8662ddc35f885e305e8eb7b25c27b1feaa9514951b0a0508982d0feec6c6210b9865c90207c2df7bfcd5029c13031cc
|
data/.idea/.DS_Store
CHANGED
|
Binary file
|
data/hashlation.gemspec
CHANGED
|
@@ -8,8 +8,11 @@ Gem::Specification.new do |spec|
|
|
|
8
8
|
spec.authors = ["rharris389"]
|
|
9
9
|
spec.email = ["56176404+rharris389@users.noreply.github.com"]
|
|
10
10
|
|
|
11
|
-
spec.summary = "Simple/Lightweight hash parsing gem.
|
|
12
|
-
spec.description = "
|
|
11
|
+
spec.summary = "Simple/Lightweight hash parsing gem."
|
|
12
|
+
spec.description = "Quickly parses hashes into objects for cleaner navigation of large response objects.
|
|
13
|
+
Hashlation::Simple.new(hash_object) will handle most common string and symbol keys.
|
|
14
|
+
Certain characters in a key, such as a leading Integer or a ':' will not translate with Simple.
|
|
15
|
+
These must be processed with the Hashlation::Complex.new(hash_object) method. Name credit to my wife."
|
|
13
16
|
spec.homepage = "https://github.com/rharris389/hashlation"
|
|
14
17
|
spec.license = "MIT"
|
|
15
18
|
spec.required_ruby_version = Gem::Requirement.new(">= 2.4.0")
|
data/lib/hashlation/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: hashlation
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- rharris389
|
|
@@ -10,7 +10,11 @@ bindir: exe
|
|
|
10
10
|
cert_chain: []
|
|
11
11
|
date: 2022-05-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
|
-
description:
|
|
13
|
+
description: |-
|
|
14
|
+
Quickly parses hashes into objects for cleaner navigation of large response objects.
|
|
15
|
+
Hashlation::Simple.new(hash_object) will handle most common string and symbol keys.
|
|
16
|
+
Certain characters in a key, such as a leading Integer or a ':' will not translate with Simple.
|
|
17
|
+
These must be processed with the Hashlation::Complex.new(hash_object) method. Name credit to my wife.
|
|
14
18
|
email:
|
|
15
19
|
- 56176404+rharris389@users.noreply.github.com
|
|
16
20
|
executables: []
|