hash_key_transformer 0.1.1 → 0.1.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/Gemfile.lock +1 -1
- data/hash_key_transformer.gemspec +2 -2
- data/lib/hash_key_transformer/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8eacb3fdad19cfcb513e3289f527503ba77b9025
|
|
4
|
+
data.tar.gz: 0fed41f86a2efe74b2fd6bce6bf817d68ee5cc84
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c009f91e7ec12dc856cdfd81c6ed88d94a8a7e188704b92e511b90aaa1ea99409bdb6454d15eb2b9354c8dac76655135f6d7e07f798ea13c59d6c9088d08c546
|
|
7
|
+
data.tar.gz: 367e8fa6e1b1c948bc1e2428e85d1597524adbd5073f4d0faf7353dc0f2b3b5febd5668f8af432c60d64555974afce30d43ed88fafb1bdd5fb0c2d229ef93bcd
|
data/Gemfile.lock
CHANGED
|
@@ -9,8 +9,8 @@ Gem::Specification.new do |spec|
|
|
|
9
9
|
spec.authors = ["Kevin Rood"]
|
|
10
10
|
spec.email = ["kevin.rood@accelecode.com"]
|
|
11
11
|
|
|
12
|
-
spec.summary = %q{hash_key_transformer makes it easy to transform a JSON-like data structure from one style of key to another (for example, from camelCase to snake_case).}
|
|
13
|
-
spec.description = %q{hash_key_transformer makes it easy to transform a JSON-like data structure from one style of key to another (for example, from camelCase to snake_case).}
|
|
12
|
+
spec.summary = %q{hash_key_transformer makes it easy to deeply transform a JSON-like data structure from one style of key to another (for example, from camelCase to snake_case).}
|
|
13
|
+
spec.description = %q{hash_key_transformer makes it easy to deeply transform a JSON-like data structure from one style of key to another (for example, from camelCase to snake_case).}
|
|
14
14
|
spec.homepage = "https://github.com/accelecode/hash_key_transformer"
|
|
15
15
|
spec.license = "Apache-2.0"
|
|
16
16
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: hash_key_transformer
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kevin Rood
|
|
@@ -38,8 +38,8 @@ dependencies:
|
|
|
38
38
|
- - "~>"
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
40
|
version: '12.3'
|
|
41
|
-
description: hash_key_transformer makes it easy to transform a JSON-like data
|
|
42
|
-
from one style of key to another (for example, from camelCase to snake_case).
|
|
41
|
+
description: hash_key_transformer makes it easy to deeply transform a JSON-like data
|
|
42
|
+
structure from one style of key to another (for example, from camelCase to snake_case).
|
|
43
43
|
email:
|
|
44
44
|
- kevin.rood@accelecode.com
|
|
45
45
|
executables: []
|
|
@@ -80,6 +80,6 @@ rubyforge_project:
|
|
|
80
80
|
rubygems_version: 2.6.13
|
|
81
81
|
signing_key:
|
|
82
82
|
specification_version: 4
|
|
83
|
-
summary: hash_key_transformer makes it easy to transform a JSON-like data structure
|
|
83
|
+
summary: hash_key_transformer makes it easy to deeply transform a JSON-like data structure
|
|
84
84
|
from one style of key to another (for example, from camelCase to snake_case).
|
|
85
85
|
test_files: []
|