forked from appfolio/validates_timeliness
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathae-validates_timeliness.gemspec
25 lines (21 loc) · 1.06 KB
/
ae-validates_timeliness.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "ae-validates_timeliness/version"
Gem::Specification.new do |s|
s.name = "ae-validates_timeliness"
s.version = ValidatesTimeliness::VERSION
s.authors = ["Paul Kmiec"]
s.summary = %q{Date and time validation plugin for Rails which allows custom formats}
s.description = %q{Adds validation methods to ActiveModel for validating dates and times. Works with multiple ORMS.}
s.email = %q{paul.kmiec@appfolio.com}
s.homepage = %q{http://github.com/appfolio/validates_timeliness}
s.files = Dir['**/*'].reject{ |f| f[%r{^pkg/}] || f[%r{^spec/}] }
s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_runtime_dependency(%q<rails>, ["~> 4.0"])
s.add_runtime_dependency(%q<timeliness>, ["~> 0.3.7"])
s.add_development_dependency "coveralls"
s.add_development_dependency "rspec", "~> 3.0"
s.add_development_dependency "rspec-rails", "~> 3.0"
s.add_development_dependency "rspec-collection_matchers"
end