-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathmarkdoc.gemspec
More file actions
44 lines (37 loc) · 1.23 KB
/
markdoc.gemspec
File metadata and controls
44 lines (37 loc) · 1.23 KB
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
44
# frozen_string_literal: true
require './lib/markdoc/version'
require 'date'
Gem::Specification.new do |s|
s.name = 'markdoc'
s.version = Markdoc::VERSION
s.date = Date.today.to_s
s.summary = 'Markdown to HTML converter with diagrams'
s.description = 'Markdown with support for pseudocode to flowchart and sequence diagram generation'
s.authors = ['Ochirkhuyag.L']
s.email = 'ochkoo@gmail.com'
s.homepage = 'https://github.com/ochko/markdoc'
s.license = 'MIT'
s.required_ruby_version = '>= 2.7.6'
s.add_runtime_dependency 'polyglot', '~> 0.3'
s.add_runtime_dependency 'pygments.rb', '~> 2.3'
s.add_runtime_dependency 'redcarpet', '~> 3.5'
s.add_runtime_dependency 'treetop', '~> 1.6'
s.add_development_dependency('rake', '~> 13.0')
s.executables << 'markdoc'
s.executables << 'pseudo2svg'
s.executables << 'sequence2svg'
s.require_paths = ['lib']
s.files = [
'lib/markdoc.rb',
'lib/markdoc/pseudocode.rb',
'lib/markdoc/pseudocode.treetop',
'lib/markdoc/renderer.rb',
'lib/markdoc/sequence.rb',
'lib/markdoc/version.rb',
'css/style.css',
'css/pygments.css',
'bin/markdoc',
'bin/pseudo2svg',
'bin/sequence2svg'
]
end