skn_utils 3.0.0 → 3.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/README.md +1 -1
- data/lib/skn_utils/version.rb +1 -1
- data/skn_utils.gemspec +10 -3
- metadata +9 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7fe0db5477b549906e45652fb7ead4ac75b227be
|
|
4
|
+
data.tar.gz: caa018ba88a00a513eb445612baba7ce3b5b20c0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7564b414d805436f0419845b9a47da19194d868aa18149893d33cb9cf29569c7842cacdac6533152234f6456d7b875b95561b7c3ff7a2b938d77b20b5d4b7d50
|
|
7
|
+
data.tar.gz: 9d952ba616307c63b09f7980e5c18a60f1b66205dde461898dfd3643f438e43836225fa605f9d91bb00928afc667ffc915677c60245e4f8ef398b009912f868e
|
data/README.md
CHANGED
|
@@ -62,7 +62,7 @@ Ruby Gem containing a Ruby PORO (Plain Old Ruby Object) that can be instantiated
|
|
|
62
62
|
SknUtils::NestedResult # >= V 3.0.0 Primary Key/Value Container with Dot/Hash notiation support.
|
|
63
63
|
|
|
64
64
|
|
|
65
|
-
*** <= V 2.0.6 Depreciated,
|
|
65
|
+
*** <= V 2.0.6 Depreciated, HAS been removed ***
|
|
66
66
|
|
|
67
67
|
Inherit from NestedResultBase or instantiate an pre-built Class:
|
|
68
68
|
SknUtils::ResultBean # => Not Serializable and follows hash values only.
|
data/lib/skn_utils/version.rb
CHANGED
data/skn_utils.gemspec
CHANGED
|
@@ -8,15 +8,22 @@ Gem::Specification.new do |spec|
|
|
|
8
8
|
spec.version = SknUtils::VERSION
|
|
9
9
|
spec.author = 'James Scott Jr'
|
|
10
10
|
spec.email = 'skoona@gmail.com'
|
|
11
|
-
spec.summary =
|
|
11
|
+
spec.summary = <<-EOF
|
|
12
12
|
SknUtils contains a small collection of Ruby utilities, the first being a NestedResult a key/value container.
|
|
13
13
|
EOF
|
|
14
14
|
|
|
15
|
-
spec.description =
|
|
16
|
-
The intent of NestedResult class is to be a container of data results or key/value pairs,
|
|
15
|
+
spec.description = <<-EOF
|
|
16
|
+
The intent of the NestedResult class is to be a container of data results or key/value pairs,
|
|
17
|
+
with easy access to its contents, and on-demand transformation back to the hash (#to_hash).
|
|
18
|
+
|
|
17
19
|
Review the RSpec tests, and or review the README for more details.
|
|
18
20
|
EOF
|
|
21
|
+
spec.post_install_message = <<-EOF
|
|
22
|
+
This version does not include ResultBean, PageControls, or ValueBean classes.
|
|
23
|
+
SknUtils::NestedResult class replaces those original classes and their function.
|
|
19
24
|
|
|
25
|
+
Please update your existing code to make the above change or use the prior version 2.0.7
|
|
26
|
+
EOF
|
|
20
27
|
spec.homepage = "https://github.com/skoona/skn_utils"
|
|
21
28
|
spec.license = "MIT"
|
|
22
29
|
spec.platform = Gem::Platform::RUBY
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: skn_utils
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.
|
|
4
|
+
version: 3.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- James Scott Jr
|
|
@@ -80,9 +80,10 @@ dependencies:
|
|
|
80
80
|
- - ">="
|
|
81
81
|
- !ruby/object:Gem::Version
|
|
82
82
|
version: '0'
|
|
83
|
-
description:
|
|
84
|
-
|
|
85
|
-
|
|
83
|
+
description: "The intent of the NestedResult class is to be a container of data results
|
|
84
|
+
or key/value pairs, \nwith easy access to its contents, and on-demand transformation
|
|
85
|
+
back to the hash (#to_hash).\n\nReview the RSpec tests, and or review the README
|
|
86
|
+
for more details.\n"
|
|
86
87
|
email: skoona@gmail.com
|
|
87
88
|
executables: []
|
|
88
89
|
extensions: []
|
|
@@ -117,7 +118,10 @@ homepage: https://github.com/skoona/skn_utils
|
|
|
117
118
|
licenses:
|
|
118
119
|
- MIT
|
|
119
120
|
metadata: {}
|
|
120
|
-
post_install_message:
|
|
121
|
+
post_install_message: "This version does not include ResultBean, PageControls, or
|
|
122
|
+
ValueBean classes. \nSknUtils::NestedResult class replaces those original classes
|
|
123
|
+
and their function. \n\nPlease update your existing code to make the above change
|
|
124
|
+
or use the prior version 2.0.7\n"
|
|
121
125
|
rdoc_options: []
|
|
122
126
|
require_paths:
|
|
123
127
|
- lib
|