Sha256: 0e0555d59839ae2de7322bbfcaacf6eb4ee5c2e06e0979d8cc18530561fcdeec

Contents?: true

Size: 1.59 KB

Versions: 1

Compression:

Stored size: 1.59 KB

Contents

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'skn_utils/version'

Gem::Specification.new do |spec|
  spec.name          = 'skn_utils'
  spec.version       = SknUtils::VERSION
  spec.author        = 'James Scott Jr'
  spec.email         = 'skoona@gmail.com'  
  spec.summary       = <<-EOF
SknUtils contains a small collection of Ruby utilities, the first being a NestedResult a key/value container.
EOF

  spec.description   = <<-EOF
The intent of the 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).

Review the RSpec tests, and or review the README for more details.
EOF
  spec.post_install_message = <<-EOF
This version does not include ResultBean, PageControls, or ValueBean classes.  
SknUtils::NestedResult class replaces those original classes and their function.  

Please update your existing code to make the above change or use the prior version 2.0.6
EOF
  spec.homepage      = "https://github.com/skoona/skn_utils"
  spec.license       = "MIT"
  spec.platform      = Gem::Platform::RUBY
  spec.files         = `git ls-files -z`.split("\x0")
  spec.executables   = []
  spec.test_files    = spec.files.grep(%r{^(spec)/})
  spec.require_paths = ['lib']
  
  spec.add_development_dependency "bundler", ">= 0"
  spec.add_development_dependency "rake", ">= 0"
  spec.add_development_dependency "rspec", '~> 3.0'
  spec.add_development_dependency "pry", ">= 0"
  spec.add_development_dependency "simplecov", ">= 0"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
skn_utils-3.0.2 skn_utils.gemspec