forked from recrack/ruby-hwp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathruby-hwp.gemspec
More file actions
28 lines (22 loc) · 971 Bytes
/
ruby-hwp.gemspec
File metadata and controls
28 lines (22 loc) · 971 Bytes
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
Kernel.load File.dirname(__FILE__) + '/lib/hwp/version.rb'
PKG_NAME = 'ruby-hwp'
PKG_VERSION = HWP::VERSION
Gem::Specification.new do |spec|
spec.name = PKG_NAME
spec.version = PKG_VERSION
spec.summary = 'Ruby HWP library'
spec.description = 'A library for easy read access to HWP documents for Ruby, 한글과컴퓨터의 글 문서 파일(.hwp) 공개 문서를 참고하여 개발하였습니다.'
spec.required_ruby_version = '>= 1.9.1'
spec.requirements << 'ruby-ole 1.2.9 or higher'
spec.requirements << 'builder 2.1.2 or higher'
spec.add_dependency('ruby-ole', '>= 1.2.9')
spec.add_dependency('builder', '>= 2.1.2')
spec.files = ['README.rdoc', 'Rakefile', 'ruby-hwp.gemspec'] +
spec.files += Dir.glob('lib/**/*.rb')
spec.files += Dir.glob('bin/*')
spec.executables = ['hwp2txt', 'hwp2html', 'hv']
spec.has_rdoc = false
spec.author = 'Hodong Kim'
spec.email = 'cogniti@gmail.com'
spec.homepage = 'http://github.com/cogniti/ruby-hwp'
end