forked from monterail/zip-codes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzip-codes.gemspec
26 lines (21 loc) · 974 Bytes
/
zip-codes.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
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'zip-codes'
Gem::Specification.new do |spec|
spec.name = 'zip-codes'
spec.version = ZipCodes::VERSION
spec.authors = ['Michał Duda']
spec.email = ['[email protected]']
spec.description = %s(Simple gem to get city, state, and time zone for a given zip code)
spec.summary = %s(Gem to identify zip codes inside US)
spec.homepage = 'https://github.com/monterail/zip-codes'
spec.license = 'MIT'
spec.files = `git ls-files`.split($RS)
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.require_paths = ['lib']
spec.required_ruby_version = '>= 3.0.0'
spec.add_development_dependency 'rake', '~> 13.0.0'
spec.add_development_dependency 'rubocop', '~> 1.39.0'
spec.add_development_dependency 'rubocop-rake', '~> 0.6.0'
end