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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7bf64e0d7a57214a2195f952bb5b5ecf723210ee
4
- data.tar.gz: 14abf27a51c90ac5617ed05533cf6cab3205e425
3
+ metadata.gz: 7fe0db5477b549906e45652fb7ead4ac75b227be
4
+ data.tar.gz: caa018ba88a00a513eb445612baba7ce3b5b20c0
5
5
  SHA512:
6
- metadata.gz: 16506a2525da4abaa56589af2b191cb3205872e8f5983d19a97d1b83fe32b260225a5d001ebda1a2360d8363636a5c6d2b3ba7f0fa1a69cf358544f176fd170a
7
- data.tar.gz: 25246180c86f60110a9098df8761cea4d0df6de2bd4ed66073bb58ab7e9b1dbd0bebad195992b6e11ceff9748c6d70aa633d327af31a39605b61711b81e4c6ea
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, will be removed in next release ***
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.
@@ -3,7 +3,7 @@ module SknUtils
3
3
  class Version
4
4
  MAJOR = 3
5
5
  MINOR = 0
6
- PATCH = 0
6
+ PATCH = 1
7
7
 
8
8
  def self.to_s
9
9
  [MAJOR, MINOR, PATCH].join('.')
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 = <<EOF
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 = <<EOF
16
- The intent of NestedResult class is to be a container of data results or key/value pairs, with easy access to its contents, and on-demand transformation back to the hash (#to_hash).
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.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
- The intent of NestedResult class is to be a container of data results or key/value pairs, with easy access to its contents, and on-demand transformation back to the hash (#to_hash).
85
- Review the RSpec tests, and or review the README for more details.
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