This commit is contained in:
Yessiest 2025-03-07 23:19:18 +00:00
parent 9ac12573a3
commit 4a3c55f00f
5 changed files with 22 additions and 22 deletions

View File

@ -1,3 +1,3 @@
# rubymark
Modular, compliant markdown parser in Ruby
Modular, compliant Markdown parser in Ruby

0
bin/mmmdpp Executable file → Normal file
View File

BIN
mmmd-0.1.0.gem Normal file

Binary file not shown.

21
mmmd.gemspec Normal file
View File

@ -0,0 +1,21 @@
# frozen_string_literal: true
Gem::Specification.new do |spec|
spec.name = "mmmd"
spec.version = "0.1.0"
spec.summary = "Modular, compliant Markdown processor"
spec.description = <<~DESC
MMMD (short for Mark My Manuscript Down) is a Markdown processor
(as in "parser and translator") with a CLI interface utility and
multiple modes of output (currently HTML and terminal).
DESC
spec.authors = ["Yessiest"]
spec.license = "AGPL-3.0-or-later"
spec.email = "yessiest@text.512mb.org"
spec.homepage = "https://adastra7.net/git/Yessiest/rubymark"
spec.files = Dir["lib/**/*"]
spec.bindir = Dir["bin/"]
spec.executables << "mmmdpp"
spec.extra_rdoc_files = Dir["*.md"]
spec.required_ruby_version = ">= 3.0.0"
end

View File

@ -1,21 +0,0 @@
# frozen_string_literal: true
Gem::Specification.new do |s|
s.name = 'rbmark'
s.version = '0.5'
s.summary = <<~SUMMARY
Modular, extensible, HTML-agnostic Markdown parser
SUMMARY
s.description = <<~TEXT
RBMark is a Markdown parser that represents Markdown in a DOM-like
object structure, allowing for other interfaces to produce more
complex translators from Markdown to any given format.
TEXT
s.authors = ['yessiest']
s.email = 'yessiest@text.512mb.org'
s.license = 'Apache-2.0'
s.homepage = 'https://adastra7.net/git/Yessiest/rubymark'
s.files = Dir['lib/**/*.rb'] + Dir['bin/*']
s.required_ruby_version = '>= 3.0.0'
s.executables = ['mdpp']
end