-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvalidation_issues.gemspec
More file actions
23 lines (18 loc) · 974 Bytes
/
validation_issues.gemspec
File metadata and controls
23 lines (18 loc) · 974 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "validation_issues/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "validation_issues"
s.version = ValidationIssues::VERSION
s.authors = ["David Henner"]
s.email = ["drhenner@gmail.com"]
s.homepage = "http://www.ror-e.com"
s.summary = "To ensure Validations that continue to have issues are addressed by developers."
s.description = "To ensure Validations that continue to have issues are addressed by developers. This is done by logging the failure. When a specific failure continues to be an issue, a developer can look into the problem."
s.files = Dir["{app,config,db,lib}/**/*"] + ["MIT-LICENSE", "Rakefile", "README.rdoc"]
s.test_files = Dir["test/**/*"]
s.add_dependency "rails", ">= 3.2.6"
# s.add_dependency "jquery-rails"
s.add_development_dependency "sqlite3"
end