forked from infused/dbf
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdbf.gemspec
More file actions
28 lines (23 loc) · 903 Bytes
/
dbf.gemspec
File metadata and controls
28 lines (23 loc) · 903 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
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require 'dbf/version'
Gem::Specification.new do |s|
s.name = 'dbf'
s.version = DBF::VERSION
s.authors = ['Keith Morrison']
s.email = 'keithm@infused.org'
s.homepage = 'http://github.com/infused/dbf'
s.summary = 'Read xBase files'
s.description = 'A small fast library for reading dBase, xBase, Clipper and FoxPro database files.'
s.executables = ['dbf']
s.rdoc_options = ['--charset=UTF-8']
s.extra_rdoc_files = ['README.md', 'CHANGELOG.md', 'MIT-LICENSE']
s.files = Dir['[A-Z]*', '{bin,docs,lib,spec}/**/*']
s.test_files = Dir.glob('spec/**/*_spec.rb')
s.require_paths = ['lib']
s.required_rubygems_version = '>= 1.3.0'
s.add_dependency 'fastercsv', '1.5.4'
s.add_development_dependency 'rspec', '2.6.0'
# s.add_development_dependency 'metric_fu', '2.0.1'
end