forked from zdavatz/spreadsheet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathspreadsheet.gemspec
More file actions
executable file
·24 lines (20 loc) · 959 Bytes
/
Copy pathspreadsheet.gemspec
File metadata and controls
executable file
·24 lines (20 loc) · 959 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# require File.join(File.dirname(__FILE__), 'lib', 'spreadsheet')
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'spreadsheet'
spec = Gem::Specification.new do |s|
s.name = "spreadsheet"
s.version = Spreadsheet::VERSION
s.summary = "The Spreadsheet Library is designed to read and write Spreadsheet Documents"
s.description = "As of version 0.6.0, only Microsoft Excel compatible spreadsheets are supported"
s.author = "Masaomi Hatakeyama, Zeno R.R. Davatz"
s.email = "mhatakeyama@ywesee.com, zdavatz@ywesee.com"
s.platform = Gem::Platform::RUBY
s.license = "GPLv3"
s.files = Dir.glob("{bin,lib,test}/**/*") + Dir.glob("*.txt")
s.test_file = "test/suite.rb"
s.executables << "xlsopcodes"
s.add_dependency "ruby-ole"
s.add_development_dependency "hoe"
s.homepage = "https://github.com/zdavatz/spreadsheet/"
end