-
Notifications
You must be signed in to change notification settings - Fork 23
/
free_zipcode_data.gemspec
40 lines (35 loc) · 1.74 KB
/
free_zipcode_data.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
29
30
31
32
33
34
35
36
37
38
39
40
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'free_zipcode_data/version'
Gem::Specification.new do |spec|
spec.metadata = { 'rubygems_mfa_required' => 'true' }
spec.name = 'free_zipcode_data'
spec.version = FreeZipcodeData::VERSION
spec.authors = ['Chris Blackburn', 'Chris McKnight']
spec.email = ['[email protected]', '[email protected]']
spec.summary = 'Free US and world-wide postal codes in SQLite and CSV format'
spec.description = <<~STRING
Free US and world-wide postal codes in SQLite and CSV format.
Automated zipcode/postal code aggregation and processing for any needs.
STRING
spec.homepage = 'https://github.com/midwire/free_zipcode_data'
spec.license = 'MIT'
spec.required_ruby_version = Gem::Requirement.new(">= #{Bundler.root.join('.ruby-version').read.strip}")
spec.files = `git ls-files -z`.split("\x0")
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.require_paths = ['lib']
spec.add_development_dependency 'bundler'
spec.add_development_dependency 'pry-nav', '~> 0.2'
spec.add_development_dependency 'rake', '~> 13.0'
spec.add_development_dependency 'rspec', '~> 3.7'
spec.add_development_dependency 'rubocop'
spec.add_development_dependency 'ruby-prof', '~> 0.17'
spec.add_development_dependency 'simplecov', '~> 0.16'
spec.add_runtime_dependency 'colored', '~> 1.2'
spec.add_runtime_dependency 'kiba', '~> 4.0'
spec.add_runtime_dependency 'optimist', '~> 3.0'
spec.add_runtime_dependency 'ruby-progressbar', '~> 1.9'
spec.add_runtime_dependency 'rubyzip', '>= 1.2.2'
spec.add_runtime_dependency 'sqlite3', '~> 1.3'
end