-
Notifications
You must be signed in to change notification settings - Fork 9
/
census_api.gemspec
32 lines (29 loc) · 1.29 KB
/
census_api.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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'census_api/version'
Gem::Specification.new do |gem|
gem.name = 'census_api'
gem.version = CensusApi::VERSION
gem.authors = ['Ty Rauber']
gem.license = 'MIT'
gem.email = ['[email protected]']
gem.description = 'A Ruby Gem for querying the US Census Bureau API'
gem.summary = 'A Ruby Wrapper for the US Census Bureau API,
providing the ability to query both the SF1 and ACS5
datasets.'
gem.homepage = 'https://github.com/tyrauber/census_api.git'
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.executables = `git ls-files -- bin/*`.split("\n")
.map { |f| File.basename(f) }
gem.require_paths = ['lib']
gem.add_runtime_dependency 'http'
gem.add_development_dependency 'bundler', '~> 2.0.1'
gem.add_development_dependency 'rake'
gem.add_development_dependency 'rspec'
gem.add_development_dependency 'webmock', '>= 3.4.2'
gem.add_development_dependency 'vcr', '>= 4.0'
gem.add_development_dependency 'rubocop'
gem.add_development_dependency 'rest-client'
end