forked from infused/dbf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dbf.gemspec
22 lines (21 loc) · 825 Bytes
/
dbf.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
lib = File.expand_path('../lib/', __FILE__)
$LOAD_PATH.unshift lib unless $LOAD_PATH.include?(lib)
require 'dbf/version'
Gem::Specification.new do |s|
s.name = 'dbf'
s.version = DBF::VERSION
s.authors = ['Keith Morrison']
s.email = '[email protected]'
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.license = 'MIT'
s.bindir = 'bin'
s.executables = ['dbf']
s.rdoc_options = ['--charset=UTF-8']
s.extra_rdoc_files = ['README.md', 'CHANGELOG.md', 'LICENSE']
s.files = Dir['[A-Z]*', '{bin,docs,lib,spec}/**/*', 'dbf.gemspec']
s.test_files = Dir.glob('spec/**/*_spec.rb')
s.require_paths = ['lib']
s.required_rubygems_version = Gem::Requirement.new('>= 1.3.0')
end