-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathruby-ole.gemspec
32 lines (27 loc) · 1000 Bytes
/
ruby-ole.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
$:.unshift File.dirname(__FILE__) + '/lib'
require 'ole/storage/version'
PKG_NAME = 'ruby-ole'
PKG_VERSION = Ole::Storage::VERSION
Gem::Specification.new do |s|
s.name = PKG_NAME
s.version = PKG_VERSION
s.summary = %q{Ruby OLE library.}
s.description = %q{A library for easy read/write access to OLE compound documents for Ruby.}
s.authors = ['Charles Lowe']
s.email = %q{[email protected]}
s.homepage = %q{https://github.com/aquasync/ruby-ole}
s.metadata = {'homepage_uri' => s.homepage}
s.license = 'MIT'
s.executables = ['oletool']
s.files = ['README.rdoc', 'COPYING', 'Rakefile', 'ChangeLog', 'ruby-ole.gemspec']
s.files += Dir.glob('lib/**/*.rb')
s.files += Dir.glob('test/{test_*.rb,*.doc,oleWithDirs.ole,test_SummaryInformation}')
s.files += Dir.glob('bin/*')
s.test_files = Dir.glob('test/test_*.rb')
s.extra_rdoc_files = ['README.rdoc', 'ChangeLog']
s.rdoc_options += [
'--main', 'README.rdoc',
'--title', "#{PKG_NAME} documentation",
'--tab-width', '2'
]
end