# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'fbo/version' Gem::Specification.new do |spec| spec.name = 'fbo' spec.version = FBO::VERSION spec.authors = ['Chris Kottom'] spec.email = ['chris@chriskottom.com'] spec.summary = 'Parse and process FBO bulk listings' spec.description = <<-EOF The FBO gem manages the process of downloading and parsing file-based notice information from the Federal Business Opportunities (https://www.fbo.gov/) application / database. The FBO feed files include new and updated opportunities, information about awarded contracts, and other details concerning the offer and disposition of federal government contracts and tenders. EOF spec.homepage = 'https://github.com/chriskottom/fbo' spec.license = 'MIT' spec.files = `git ls-files`.split($/) spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) spec.require_paths = ['lib'] spec.add_runtime_dependency 'treetop', '~> 1' spec.add_development_dependency 'bundler', '~> 1' spec.add_development_dependency 'rake', '~> 12' spec.add_development_dependency 'minitest', '~> 5' spec.add_development_dependency 'mocha', '~> 1.3' spec.add_development_dependency 'fivemat', '~> 1.3' spec.add_development_dependency 'minitest-rg', '~> 5' end