-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathdata_validator.gemspec
More file actions
27 lines (21 loc) · 892 Bytes
/
data_validator.gemspec
File metadata and controls
27 lines (21 loc) · 892 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require 'data_validator/version'
Gem::Specification.new do |s|
s.name = 'data_validator'
s.version = DataValidator::VERSION
s.authors = ['Spring_MT']
s.email = ['today.is.sky.blue.sky@gmail.com']
s.homepage = 'https://github.com/SpringMT/data_validator'
s.summary = %q{DataValidator is validation anywhere}
s.rubyforge_project = 'data_validator'
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_dependency 'activesupport', '~> 3.2.0'
s.add_dependency 'i18n', '~> 0.6'
s.description = <<description
DataValidator has almost active_recorde validation methods.
description
end