-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathapi_postcode_nl.gemspec
42 lines (39 loc) · 1.26 KB
/
api_postcode_nl.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
41
42
require File.join(File.dirname(__FILE__), 'lib/api_postcode_nl/version.rb')
Gem::Specification.new do |s|
s.name = 'api_postcode_nl'
s.version = ApiPostcodeNl::VERSION
if s.respond_to? :required_rubygems_version=
s.required_rubygems_version = Gem::Requirement.new('>= 0')
end
s.require_paths = ['lib']
s.authors = ['rhomeister']
s.date = '2016-11-18'
s.description = 'Retrieve a Dutch address based on housenumber and postcode'
s.email = '[email protected]'
s.extra_rdoc_files = [
'LICENSE.txt',
'README.rdoc'
]
s.files = [
'.document',
'Gemfile',
'LICENSE.txt',
'README.rdoc',
'Rakefile',
'api_postcode_nl.gemspec',
'lib/api_postcode_nl.rb',
'lib/api_postcode_nl/api.rb',
'lib/api_postcode_nl/exceptions.rb',
'lib/api_postcode_nl/version.rb',
'test/helper.rb',
'test/test_api_postcode_nl.rb'
]
s.homepage = 'http://github.com/rhomeister/api_postcode_nl'
s.licenses = ['MIT']
s.rubygems_version = '2.5.1'
s.summary = 'Ruby gem for interfacing with api.postcode.nl'
s.add_runtime_dependency('activesupport', ['>= 2.3.5'])
s.add_development_dependency('minitest', ['~> 5.5'])
s.add_development_dependency('rake', ['~> 12.0'])
s.add_development_dependency('rdoc', ['~> 5.1.0'])
end