-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathhash_kit.gemspec
More file actions
31 lines (25 loc) · 1.04 KB
/
hash_kit.gemspec
File metadata and controls
31 lines (25 loc) · 1.04 KB
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
29
30
31
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$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.required_ruby_version = '>= 3.0.0'
spec.add_development_dependency 'benchmark-ips', '~> 2.0'
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'
end