/ caramelize.gemspec
caramelize.gemspec
 1  # frozen_string_literal: true
 2  
 3  lib = File.expand_path("lib", __dir__)
 4  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
 5  require "caramelize/version"
 6  
 7  Gem::Specification.new do |spec|
 8    spec.name = "caramelize"
 9    spec.version = Caramelize::VERSION
10    spec.license = "MIT"
11    spec.authors = ["Daniel Senff"]
12    spec.email = ["mail@danielsenff.de"]
13    spec.homepage = "http://github.com/Dahie/caramelize"
14    spec.summary = "Flexible and modular wiki conversion tool"
15    spec.description = "With Caramelize you can migrate any wiki to git-based Gollum wiki repositories."
16  
17    spec.files = `git ls-files -z`.split("\x0")
18    spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
19    spec.require_paths = ["lib"]
20    spec.required_ruby_version = ">= 3"
21  
22    spec.add_dependency("base64")
23    spec.add_dependency("bigdecimal")
24    spec.add_dependency("commander")
25    spec.add_dependency("gollum-lib")
26    spec.add_dependency("mysql2")
27    spec.add_dependency("ostruct")
28    spec.add_dependency("paru")
29    spec.add_dependency("rdoc")
30    spec.add_dependency("ruby-progressbar")
31  
32    spec.metadata["rubygems_mfa_required"] = "true"
33  end