forked from street-address-rb/street-address
-
Notifications
You must be signed in to change notification settings - Fork 0
/
street_address.gemspec
26 lines (22 loc) · 926 Bytes
/
street_address.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
$LOAD_PATH.unshift 'lib'
require 'street_address'
Gem::Specification.new do |s|
s.name = "StreetAddress"
s.licenses = ['MIT']
s.version = StreetAddress::US::VERSION
s.date = Time.now.strftime('%Y-%m-%d')
s.summary = "Parse Addresses into substituent parts. This gem includes US only."
s.authors = ["Derrek Long"]
s.require_paths = ["lib"]
s.email = "[email protected]"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- test/*`.split("\n")
s.homepage = "https://github.com/derrek/street-address"
s.description = <<desc
StreetAddress::US allows you to send any string to parse and if the string is a US address returns an object of the address broken into it's substituent parts.
A port of Geo::StreetAddress::US by Schuyler D. Erle and Tim Bunce.
desc
s.add_development_dependency "bundler"
s.add_development_dependency "rake"
s.add_development_dependency "minitest"
end