forked from utahstreetlabs/activevalidators
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathactivevalidators.gemspec
More file actions
30 lines (26 loc) · 1.26 KB
/
activevalidators.gemspec
File metadata and controls
30 lines (26 loc) · 1.26 KB
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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
Gem::Specification.new do |s|
s.name = "activevalidators"
s.version = '1.5.1.3.copious'
s.platform = Gem::Platform::RUBY
s.authors = ["Franck Verrot", "Paco Guzmán", "Oriol Gual", "Garrett Bjerkhoel", "Renato Riccieri Santos Zannon", "Brian Moseley"]
s.email = ["[email protected]"]
s.homepage = "http://github.com/cesario/activevalidators"
s.summary = %q{Collection of ActiveModel/ActiveRecord validations}
s.description = %q{ActiveValidators is a collection of ActiveModel/ActiveRecord validations}
s.add_development_dependency "bundler"
s.add_development_dependency "rspec"
s.add_development_dependency "rspec-core"
s.add_development_dependency "rspec-expectations"
s.add_development_dependency "stickler"
s.add_dependency 'rake' , '~> 0.9.2'
s.add_dependency 'activerecord' , '~> 3.0.0'
s.add_dependency 'activemodel' , '~> 3.0.0'
s.add_dependency 'mail' , '~> 2.2.15'
s.add_dependency 'date_validator', '~> 0.6.1'
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.require_paths = ["lib"]
end