-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathalso_validates.gemspec
More file actions
19 lines (17 loc) · 951 Bytes
/
also_validates.gemspec
File metadata and controls
19 lines (17 loc) · 951 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/also_validates/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Noah Davis"]
gem.email = ["noahd1@yahoo.com"]
gem.description = %q{An ActiveModel validator that validates associated models, copying any errors from composed models up to their parent.}
gem.summary = %q{An ActiveModel validator that validates associated models, copying any errors from composed models up to their parent.}
gem.homepage = "http://www.github.com/noahd/also_validates"
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "also_validates"
gem.require_paths = ["lib"]
gem.add_dependency(%q<activemodel>, [">= 3.0.0"])
gem.version = AlsoValidates::VERSION
gem.license = "MIT"
end