-
Notifications
You must be signed in to change notification settings - Fork 0
/
csv-check.gemspec
25 lines (21 loc) · 1.04 KB
/
csv-check.gemspec
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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'csv-check/version'
Gem::Specification.new do |gem|
gem.name = "csv-check"
gem.version = CsvCheck::VERSION
gem.authors = ["rory"]
gem.email = ["[email protected]"]
gem.description = %q{Lets you verify that cells in a CSV files match formats you expect}
gem.summary = %q{Allows you to specify formats (integer, float, string, date (with checking aginst date format strings) for columns in CSV data, both std in and files)}
gem.homepage = "http://github.com/rorygibson/csv-check"
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.require_paths = ["lib"]
gem.add_dependency "fastercsv", ">= 0"
gem.add_development_dependency "rspec", "~> 2.6"
gem.add_development_dependency "cucumber"
gem.add_development_dependency "aruba"
end