mirror of
https://github.com/ditkrg/validates_timeliness.git
synced 2026-01-22 13:56:48 +00:00
22 lines
1016 B
Ruby
22 lines
1016 B
Ruby
# -*- 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{adam.meehan@gmail.com}
|
|
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 Travis.yml } - Dir['gemsfiles/*']
|
|
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
|
s.extra_rdoc_files = ["README.rdoc", "CHANGELOG.rdoc", "LICENSE"]
|
|
|
|
s.add_runtime_dependency(%q<timeliness>, [">= 0.3.10", "< 1"])
|
|
end
|