public
Description: DBF is a small fast Ruby library for reading dBase, xBase, Clipper and FoxPro database files
Homepage: http://dbf.rubyforge.org
Clone URL: git://github.com/infused/dbf.git
Click here to lend your support to: dbf and make a donation at www.pledgie.com !
infused (author)
Fri Oct 30 00:29:16 -0700 2009
commit  2ff984f950a6e893018512c995bd96f7ede0af9e
tree    32f8c3e0068fb383b7458543c02f03711342577c
parent  356fd7e59927b04b69bc47c6070c1358f325f4c8
dbf / dbf.gemspec
100644 89 lines (84 sloc) 2.847 kb
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
# Generated by jeweler
# DO NOT EDIT THIS FILE
# Instead, edit Jeweler::Tasks in Rakefile, and run `rake gemspec`
# -*- encoding: utf-8 -*-
 
Gem::Specification.new do |s|
  s.name = %q{dbf}
  s.version = "1.0.10"
 
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
  s.authors = ["Keith Morrison"]
  s.date = %q{2009-10-04}
  s.default_executable = %q{dbf}
  s.description = %q{A small fast library for reading dBase, xBase, Clipper and FoxPro database files.}
  s.email = %q{keithm@infused.org}
  s.executables = ["dbf"]
  s.extra_rdoc_files = [
    "README.markdown"
  ]
  s.files = [
    ".autotest",
     "History.txt",
     "README.markdown",
     "Rakefile",
     "VERSION.yml",
     "bin/dbf",
     "dbf.gemspec",
     "lib/dbf.rb",
     "lib/dbf/column.rb",
     "lib/dbf/globals.rb",
     "lib/dbf/record.rb",
     "lib/dbf/table.rb",
     "spec/fixtures/dbase_03.dbf",
     "spec/fixtures/dbase_30.dbf",
     "spec/fixtures/dbase_30.fpt",
     "spec/fixtures/dbase_83.dbf",
     "spec/fixtures/dbase_83.dbt",
     "spec/fixtures/dbase_83_schema.txt",
     "spec/fixtures/dbase_8b.dbf",
     "spec/fixtures/dbase_8b.dbt",
     "spec/fixtures/dbase_f5.dbf",
     "spec/fixtures/dbase_f5.fpt",
     "spec/functional/dbf_shared.rb",
     "spec/functional/format_03_spec.rb",
     "spec/functional/format_30_spec.rb",
     "spec/functional/format_83_spec.rb",
     "spec/functional/format_8b_spec.rb",
     "spec/functional/format_f5_spec.rb",
     "spec/spec_helper.rb",
     "spec/unit/column_spec.rb",
     "spec/unit/record_spec.rb",
     "spec/unit/table_spec.rb"
  ]
  s.homepage = %q{http://github.com/infused/dbf}
  s.rdoc_options = ["--charset=UTF-8"]
  s.require_paths = ["lib"]
  s.rubyforge_project = %q{dbf}
  s.rubygems_version = %q{1.3.5}
  s.summary = %q{Read xBase files}
  s.test_files = [
    "spec/functional/dbf_shared.rb",
     "spec/functional/format_03_spec.rb",
     "spec/functional/format_30_spec.rb",
     "spec/functional/format_83_spec.rb",
     "spec/functional/format_8b_spec.rb",
     "spec/functional/format_f5_spec.rb",
     "spec/spec_helper.rb",
     "spec/unit/column_spec.rb",
     "spec/unit/record_spec.rb",
     "spec/unit/table_spec.rb"
  ]
 
  if s.respond_to? :specification_version then
    current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
    s.specification_version = 3
 
    if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
      s.add_runtime_dependency(%q<activesupport>, [">= 2.1.0"])
      s.add_runtime_dependency(%q<fastercsv>, [">= 1.4.0"])
    else
      s.add_dependency(%q<activesupport>, [">= 2.1.0"])
      s.add_dependency(%q<fastercsv>, [">= 1.4.0"])
    end
  else
    s.add_dependency(%q<activesupport>, [">= 2.1.0"])
    s.add_dependency(%q<fastercsv>, [">= 1.4.0"])
  end
end