forked from hmcgowan/parseexcel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
executable file
·33 lines (27 loc) · 1006 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
24
25
26
27
28
29
30
31
32
33
$:.unshift('lib')
require 'rake/testtask'
begin
require 'jeweler'
Jeweler::Tasks.new do |s|
s.name = 'parseexcel'
s.rubyforge_project = 'parseexcel'
s.platform = Gem::Platform::CURRENT
s.email = '[email protected]'
s.homepage = "http://raa.ruby-lang.org/project/parseexcel/"
s.summary = "parseexcel"
s.description = "Spreadsheet::ParseExcel - Get information from an Excel file."
s.authors = ['Hannes Wyss']
s.files = FileList[ "{lib,test}/**/*"]
s.has_rdoc = true
s.extra_rdoc_files = ["README", "COPYING"]
s.rdoc_options = ["--main","README"]
end
rescue LoadError
puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
end
Rake::TestTask.new do |t|
t.libs << "test"
t.test_files = FileList['test/test*.rb']
t.verbose = true
end
task :default => :test