-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmarkbridge.gemspec
More file actions
27 lines (21 loc) · 1.01 KB
/
markbridge.gemspec
File metadata and controls
27 lines (21 loc) · 1.01 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
# frozen_string_literal: true
require_relative "lib/markbridge/version"
Gem::Specification.new do |spec|
spec.name = "markbridge"
spec.version = Markbridge::VERSION
spec.authors = ["Discourse Team"]
spec.summary =
"Converts BBCode, HTML, MediaWiki, and TextFormatter markup to Discourse-flavored Markdown"
spec.description =
"Markbridge parses multiple markup formats (BBCode, HTML, MediaWiki wikitext, " \
"s9e/TextFormatter XML) into a shared AST and renders them as Discourse-flavored " \
"Markdown. Built for forum migrations to Discourse, with extensible parsers and renderers."
spec.homepage = "https://github.com/discourse/markbridge"
spec.license = "MIT"
spec.required_ruby_version = ">= 3.2.0"
spec.metadata["allowed_push_host"] = "https://rubygems.org"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/discourse/markbridge"
spec.files = Dir["lib/**/*.rb", "sig/**/*.rbs", "LICENSE.txt"]
spec.require_paths = ["lib"]
end