-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathvalidation_rage.gemspec
More file actions
21 lines (19 loc) · 927 Bytes
/
Copy pathvalidation_rage.gemspec
File metadata and controls
21 lines (19 loc) · 927 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/validation_rage/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Michael Bumann"]
gem.email = ["michael@railslove.com"]
gem.description = %q{log active model validation errors to get better insights in the usability of your forms}
gem.summary = %q{log active model validation errors to get better insights in the usability of your forms}
gem.homepage = ""
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 = "validation_rage"
gem.require_paths = ["lib"]
gem.version = ValidationRage::VERSION
gem.add_development_dependency 'rake'
gem.add_development_dependency 'mocha'
gem.add_dependency 'activesupport'
gem.add_dependency 'json'
end