|
| 1 | +# frozen_string_literal: true |
| 2 | +# coding: utf-8 |
| 3 | + |
| 4 | +lib = File.expand_path('../lib', __FILE__) |
| 5 | +$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) |
| 6 | +require 'free_zipcode_data/version' |
| 7 | + |
| 8 | +Gem::Specification.new do |spec| |
| 9 | + spec.name = 'free_zipcode_data' |
| 10 | + spec.version = FreeZipcodeData::VERSION |
| 11 | + spec.authors = ['Chris Blackburn', 'Chris McKnight'] |
| 12 | + spec.email = ['87a1779b@opayq.com'] |
| 13 | + spec.summary = 'Free US postal codes in CSV and SQLite3 format.' |
| 14 | + spec.description = spec.summary |
| 15 | + spec.homepage = 'https://github.com/midwire/free_zipcode_data' |
| 16 | + spec.license = 'MIT' |
| 17 | + |
| 18 | + spec.required_ruby_version = '>= 2.3.0' |
| 19 | + spec.files = `git ls-files -z`.split("\x0") |
| 20 | + spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } |
| 21 | + spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) |
| 22 | + spec.require_paths = ['lib'] |
| 23 | + |
| 24 | + spec.add_development_dependency 'bundler', '~> 1.16' |
| 25 | + spec.add_development_dependency 'pry-nav', '~> 0.2' |
| 26 | + spec.add_development_dependency 'rake', '~> 12.0' |
| 27 | + spec.add_development_dependency 'rspec', '~> 3.7' |
| 28 | + spec.add_development_dependency 'rubocop' |
| 29 | + spec.add_development_dependency 'simplecov' |
| 30 | + |
| 31 | + spec.add_runtime_dependency 'colored', '~> 1.2' |
| 32 | + spec.add_runtime_dependency 'kiba', '~> 2.0' |
| 33 | + spec.add_runtime_dependency 'rubyzip', '~> 1.2' |
| 34 | + spec.add_runtime_dependency 'sqlite3', '~> 1.3' |
| 35 | + spec.add_runtime_dependency 'trollop', '~> 2.1' |
| 36 | +end |
0 commit comments