forked from franckverrot/activevalidators
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathactivevalidators.gemspec
34 lines (31 loc) · 1.69 KB
/
activevalidators.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
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = 'activevalidators'
s.version = '2.1.1.pre1'
s.platform = Gem::Platform::RUBY
s.authors = ['Franck Verrot', 'Paco Guzmán', 'Oriol Gual', 'Garrett Bjerkhoel', 'Renato Riccieri Santos Zannon', 'Brian Moseley', 'Serj L aka Loremaster']
s.email = ['franck@verrot.fr']
s.homepage = 'http://github.com/franckverrot/activevalidators'
s.summary = %q{Collection of ActiveModel/ActiveRecord validations}
s.description = %q{ActiveValidators is a collection of ActiveModel/ActiveRecord validations}
s.license = 'MIT'
s.add_development_dependency 'bundler'
s.add_development_dependency 'minitest', '~> 4.2.0' # Rails fixes this...
s.add_dependency 'rake' , '>= 0.8.7'
s.add_dependency 'activemodel' , '>= 3.0.0'
s.add_dependency 'phony' , '>= 1.9.0'
s.add_dependency 'countries' , '~> 0.9.3'
s.add_dependency 'mail'
s.add_dependency 'date_validator'
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.post_install_message = """
######################################################################
# ActiveValidators #
######################################################################
# #
# Version 3 of ActiveValidators will require you to manually require #
# all the validators used by your application. #
# #
######################################################################"""
end