forked from roo-rb/roo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
23 lines (19 loc) · 851 Bytes
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
require 'jeweler'
Jeweler::Tasks.new do |gem|
# gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
gem.name = "roo"
gem.summary = "Roo can access the contents of various spreadsheet files."
gem.description = "Roo can access the contents of various spreadsheet files. It can handle\n* OpenOffice\n* Excel\n* Google spreadsheets\n* Excelx\n* LibreOffice\n* CSV"
gem.email = "[email protected]"
gem.homepage = "http://github.com/Empact/roo"
gem.authors = ['Thomas Preymesser', 'Hugh McGowan', 'Ben Woosley']
gem.license = 'MIT'
gem.required_ruby_version = '>= 1.9.0'
gem.test_files = FileList["{spec,test}/**/*.*"]
end
require 'rake/testtask'
Rake::TestTask.new do |t|
t.libs << "test"
t.test_files = FileList['test/test*.rb']
t.verbose = true
end