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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 844322f953a82a82dba511528598cfd9f7cd16407a5ed8e3a5d8d38f0ece3a7b
4
- data.tar.gz: f7037b05c2682ac281a9597a95de8ca8fe3c9064e61151992a9ad511025f0c39
3
+ metadata.gz: b3ec5607c29923a8ef6ccb8e880c75780adb8dc4ed40f32b938601b17d2acd88
4
+ data.tar.gz: 7925a5d3ce2fbefcfa44005730968105b47af93cec4dc76d6dcb8f9c7b22aba5
5
5
  SHA512:
6
- metadata.gz: 46501563a71f56b65567d4cc74e8c07a51428c080114bf6ed51d3a947110a024eca3995041056097a8b1d852418c0134dff5e56fb271478c81ca737e6d8c33ba
7
- data.tar.gz: e7069b715a4167e6ff4021e260b6324c6e4414c8483045bd8828d3409dee963dc38189bc3085703e980bfc86cedfa42ebb7684987ea09e6c8e00cb99882a3f36
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 = "View keys at every nesting level, "
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")
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Hashlation
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.1"
5
5
  end
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.0
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: 'View keys at every nesting level, '
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: []