-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhealth_card.gemspec
29 lines (25 loc) · 1.04 KB
/
health_card.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
Gem::Specification.new do |s|
s.name = 'health_card'
s.version = '0.2.2'
s.date = '2017-02-05'
s.summary = 'Health card validations.'
s.description = 'Services and validations related to government health cards.'
s.authors = ['Simon Bernier']
s.email = 'sbernier@petalmd.com'
s.homepage = 'http://github.com/petalmd/health_card'
s.license = 'MIT'
s.files = %w(
lib/health_card.rb
lib/health_card/errors/invalid_card_value_error.rb
lib/health_card/errors/no_converter_error.rb
lib/health_card/errors/no_validator_error.rb
lib/health_card/helpers/diacritics_helper.rb
lib/health_card/converters/base_converter.rb
lib/health_card/converters/canada/quebec_converter.rb
lib/health_card/converters/canada/ontario_converter.rb
lib/health_card/validators/base_validator.rb
lib/health_card/validators/canada/quebec_validator.rb
lib/health_card/validators/canada/ontario_validator.rb
)
s.add_development_dependency 'rspec', '~> 3.5'
end