Sha256: f2f4f76c45f7c25a6fd6380c68f8d5ea20e5483bc73dea13262250b74a952135

Contents?: true

Size: 974 Bytes

Versions: 1

Compression:

Stored size: 974 Bytes

Contents

$:.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{aquasync@gmail.com}
	s.homepage = %q{https://github.com/aquasync/ruby-ole}
	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.has_rdoc = true
	s.extra_rdoc_files = ['README.rdoc', 'ChangeLog']
	s.rdoc_options += [
		'--main', 'README.rdoc',
		'--title', "#{PKG_NAME} documentation",
		'--tab-width', '2'
	]
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ruby-ole-1.2.13 ruby-ole.gemspec