Sha256: a3c23c11b76ab8d70d2629d50cab69369a9f07c5d5cc1e004968ecb2abce97c7
Contents?: true
Size: 1.36 KB
Versions: 1
Compression:
Stored size: 1.36 KB
Contents
# coding: utf-8 # frozen_string_literal: true lib = File.expand_path("../lib", __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "mathematical/version" Gem::Specification.new do |spec| spec.name = "mathematical" spec.version = Mathematical::VERSION spec.authors = ["Garen Torikian"] spec.email = ["gjtorikian@gmail.com"] spec.summary = "Quickly convert math equations into beautiful SVGs/PNGs/MathML." spec.description = "A very fast way to turn TeX math equations into beautifully rendered SVGs, to embed on the web. This library is mostly written in C and is a general purpose wrapper to GNOME's Lasem." spec.homepage = "https://github.com/gjtorikian/mathematical" spec.license = "MIT" spec.files = ["LICENSE.txt", "README.md", "Rakefile", "mathematical.gemspec"] spec.files += Dir.glob("lib/**/*.rb") spec.files += Dir["ext/**/*"].reject { |f| f =~ /\.svg$|\.mml$|\.png$|\.o$/ } spec.require_paths = ["lib", "ext"] spec.extensions = ["ext/mathematical/extconf.rb"] spec.add_dependency("ruby-enum", ">= 0.4", "< 2.0") spec.add_development_dependency("math-to-itex", "~> 0.3") spec.add_development_dependency("minitest", "~> 5.6") spec.add_development_dependency("nokogiri", "~> 1.10") spec.add_development_dependency("rake-compiler", "~> 1.0") end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
mathematical-1.6.20 | mathematical.gemspec |