-
Notifications
You must be signed in to change notification settings - Fork 3
/
fencer.gemspec
22 lines (19 loc) · 962 Bytes
/
fencer.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/fencer/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Dan Cheail"]
gem.email = ["[email protected]"]
gem.description = %q{Fixed-length/delimited record parser DSL}
gem.summary = %q{Fencer makes working with fixed-length and delimited
text-based records simpler by providing a flexible DSL
for defining field lengths and transformations}
gem.homepage = "https://github.com/undumb/fencer"
gem.files = `git ls-files`.split($\) - %w(Gemfile .gitignore)
# gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "fencer"
gem.require_paths = ["lib"]
gem.version = Fencer::VERSION
gem.add_development_dependency "rspec", "~> 2.10"
gem.add_development_dependency "rake"
end