-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathhash_kit.gemspec
28 lines (23 loc) · 974 Bytes
/
hash_kit.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# 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 = ['[email protected]']
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