-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathzip-codes.gemspec
More file actions
28 lines (19 loc) · 929 Bytes
/
zip-codes.gemspec
File metadata and controls
28 lines (19 loc) · 929 Bytes
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', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'zip-codes/version'
Gem::Specification.new do |spec|
spec.name = 'zip-codes'
spec.version = ZipCodes::VERSION
spec.date = '2022-04-20'
spec.authors = ['Michał Duda', 'Third Party Transportation Systems LLC']
spec.email = ['michal.duda@monterail.com', 'hello@next-tms.com']
spec.description = 'Retrieve city, state, and time zone for a given ZIP code 🎉'
spec.summary = "Retrieve city, state, and time zone for a given ZIP code for those times when API's just aren’t doable 🎉"
spec.homepage = 'https://github.com/next-tms/zip-codes'
spec.license = 'MIT'
spec.files = Dir['lib/**/*']
spec.require_paths = ['lib']
spec.add_dependency 'activesupport', '>= 6.0.0'
spec.add_dependency 'fastcsv', '~> 0.0.6'
end