-
Notifications
You must be signed in to change notification settings - Fork 3
/
govkit-ca.gemspec
29 lines (25 loc) · 1.18 KB
/
govkit-ca.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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/gov_kit-ca/version', __FILE__)
Gem::Specification.new do |s|
s.name = "govkit-ca"
s.version = GovKit::CA::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Open North"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/opennorth/govkit-ca"
s.summary = %q{Easy access to Canadian civic data around the web}
s.description = %q{GovKit-CA lets you quickly get encapsulated Ruby objects for Canadian civic data.}
s.license = 'MIT'
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_runtime_dependency('faraday')
s.add_runtime_dependency('httparty', '~> 0.10.0')
s.add_runtime_dependency('nokogiri', '~> 1.6')
s.add_development_dependency('coveralls')
s.add_development_dependency('json', '~> 1.8') # to silence coveralls warning
s.add_development_dependency('rake')
s.add_development_dependency('rspec', '~> 3.1')
s.add_development_dependency('mime-types', '~> 1.16')
end