forked from adzap/validates_timeliness
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathvalidates_timeliness.gemspec
22 lines (19 loc) · 1.04 KB
/
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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "validates_timeliness/version"
Gem::Specification.new do |s|
s.name = "validates_timeliness"
s.version = ValidatesTimeliness::VERSION
s.authors = ["Adam Meehan"]
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{[email protected]}
s.homepage = %q{http://github.com/adzap/validates_timeliness}
s.license = "MIT"
s.require_paths = ["lib"]
s.files = `git ls-files`.split("\n") - %w{ .gitignore .rspec Gemfile Gemfile.lock autotest/discover.rb Appraisals } - Dir['gemsfiles/*']
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.extra_rdoc_files = ["README.md", "CHANGELOG.md", "LICENSE"]
s.add_runtime_dependency("activemodel", [">= 6.0.0", "< 7"])
s.add_runtime_dependency("timeliness", [">= 0.3.10", "< 1"])
end