-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpostoffice.gemspec
28 lines (22 loc) · 986 Bytes
/
postoffice.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
Gem::Specification.new do |s|
s.name = 'postoffice'
s.version = '0.0.9'
s.date = '2013-01-05'
s.summary = 'Rails gem to validate format of various world postal codes, and more.'
s.description = 'Implements an ActiveModel::EachValidator that can be added to your models in a single line, to validate the format of various world postal codes. More features for working with addresses to come.'
s.authors = ['Christopher Butcher']
s.email = 'cbutcher@gmail.com'
s.homepage = 'https://github.com/chrisbutcher/postoffice'
s.license = 'Creative Commons Attribution-ShareAlike 3.0'
s.files = ['README.md',
'LICENSE',
'COUNTRYCODES.md',
'Rakefile',
'init.rb',
'lib/postoffice.rb',
'test/postcode_validator_test.rb',
'test/test_helper.rb']
s.require_paths << 'lib'
s.test_files = ['test/postcode_validator_test.rb']
s.has_rdoc = true
end