forked from dj2/Ruby-RTF
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathruby-rtf.gemspec
More file actions
Latest commit
30 lines (21 loc) · 715 Bytes
/
Copy pathruby-rtf.gemspec
File metadata and controls
30 lines (21 loc) · 715 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
29
30
$: << "./lib"
require'ruby-rtf/version'
Gem::Specification.newdo |s|
s.name='ruby-rtf'
s.version=RubyRTF::VERSION
s.authors='dan sinclair'
s.email='dj2@everburning.com'
s.homepage='http://github.com/dj2/ruby-rtf'
s.summary='Library for working with RTF files'
s.description=s.summary
s.add_development_dependency'infinity_test'
s.add_development_dependency'rspec','>2.0'
s.add_development_dependency'metric_fu'
s.add_development_dependency'yard'
s.add_development_dependency'bluecloth'
s.bindir='bin'
s.executables << 'rtf_parse'
s.files=`git ls-files`.split("\n")
s.test_files=`git ls-files -- spec/*`.split("\n")
s.require_paths=['lib']
end