forked from BMorearty/whiny_validation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwhiny_validation.gemspec
22 lines (18 loc) · 965 Bytes
/
whiny_validation.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 -*-
require File.expand_path('../lib/whiny_validation/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Brian Morearty"]
gem.email = ["[email protected]"]
gem.description = %q{When an ActiveRecord/Mongoid model won't save because it's invalid, this gem writes the validation error messages to the log.}
gem.summary = %q{Write ActiveRecord/Mongoid validation error messages to the log}
gem.homepage = "https://github.com/BMorearty/whiny_validation"
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 = "whiny_validation"
gem.require_paths = ["lib"]
gem.version = WhinyValidation::VERSION
gem.add_dependency 'activesupport'
gem.add_development_dependency 'rake'
gem.add_development_dependency 'activerecord'
end