forked from scottwillson/tabular
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tabular.gemspec
42 lines (38 loc) · 1.11 KB
/
tabular.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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
$:.push File.expand_path("../lib", __FILE__)
require "tabular/version"
Gem::Specification.new do |s|
s.name = "tabular"
s.version = Tabular::VERSION
s.authors = ["Scott Willson"]
s.description = "Tabular is a Ruby library for reading, writing, and manipulating CSV, tab-delimited and Excel data."
s.email = "[email protected]"
s.extra_rdoc_files = [
"LICENSE",
"README"
]
s.files = [
"Gemfile",
"Gemfile.lock",
"LICENSE",
"README",
"Rakefile",
"lib/tabular/tables/file_reading.rb",
"lib/tabular.rb",
"lib/tabular/blank.rb",
"lib/tabular/column.rb",
"lib/tabular/column_mapper.rb",
"lib/tabular/columns.rb",
"lib/tabular/keys.rb",
"lib/tabular/renderer.rb",
"lib/tabular/row.rb",
"lib/tabular/table.rb",
"lib/tabular/version.rb",
"lib/tabular/zero.rb",
"tabular.gemspec"
]
s.homepage = "http://github.com/scottwillson/tabular"
s.require_paths = ["lib"]
s.summary = "Read, write, and manipulate CSV, tab-delimited and Excel data"
s.add_development_dependency "roo", "~> 1.3"
s.add_development_dependency "roo-xls"
end