-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
RbST.gemspec
43 lines (42 loc) · 1.26 KB
/
RbST.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
32
33
34
35
36
37
38
39
40
41
42
43
# frozen_string_literal: true
Gem::Specification.new do |s|
s.name = 'RbST'
s.version = '0.6.5'
s.licenses = ['MIT']
s.summary = "A Ruby gem for processing reStructuredText via Python's Docutils."
s.description = "A Ruby gem for processing reStructuredText via Python's Docutils."
s.authors = ['William Melody']
s.email = '[email protected]'
s.date = '2020-04-16'
s.extra_rdoc_files = [
'LICENSE',
'README.md'
]
s.files = [
'.document',
'Gemfile',
'Gemfile.lock',
'LICENSE',
'README.md',
'Rakefile',
'RbST.gemspec',
'lib/rbst.rb',
'lib/rst2parts/__init__.py',
'lib/rst2parts/rst2html.py',
'lib/rst2parts/rst2latex.py',
'lib/rst2parts/transform.py',
'test/files/test.html',
'test/files/test.latex',
'test/files/test.rst',
'test/helper.rb',
'test/test_rbst.rb'
]
s.homepage = 'http://github.com/xwmx/rbst'
s.require_paths = ['lib']
s.add_development_dependency('minitest', '~> 5')
s.add_development_dependency('mocha', '~> 1', '>= 0')
s.add_development_dependency('rake', '~> 12', '>= 12.3.3')
s.add_development_dependency('rdoc', '~> 6', '>= 0')
s.add_development_dependency('rubocop', '~> 0', '>= 0.49.0')
s.required_ruby_version = '>= 2.3'
end