Sage/hash_kit

View on GitHub
hash_kit.gemspec

Summary

Maintainability
Test Coverage
# frozen_string_literal: true

lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'hash_kit/version'

Gem::Specification.new do |spec|
  spec.name          = 'hash_kit'
  spec.version       = HashKit::VERSION
  spec.authors       = ['Sage One']
  spec.email         = ['vaughan.britton@sage.com']

  spec.summary       = 'Toolkit for working with Hashes'
  spec.description   = 'Toolkit for working with Hashes'
  spec.homepage      = 'https://github.com/sage/hash_kit'
  spec.license       = 'MIT'

  spec.files         = Dir.glob('{bin,lib}/**/**/**')
  spec.bindir        = 'exe'
  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ['lib']

  spec.add_development_dependency 'bundler'
  spec.add_development_dependency 'pry'
  spec.add_development_dependency 'rake'
  spec.add_development_dependency 'rspec'
  spec.add_development_dependency 'simplecov', '~> 0.21'
end