Sha256: 6db2d0196cee8d1a9ad25d400fb71f9a6699cacb89ad986bc19c0482e7bb747c
Contents?: true
Size: 1.54 KB
Versions: 1
Compression:
Stored size: 1.54 KB
Contents
# coding: utf-8 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 LaTeX 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 = %w(LICENSE.txt README.md Rakefile mathematical.gemspec) spec.files += Dir.glob('lib/**/*.rb') spec.files += Dir.glob('ext/**/*.{a,c,cmake,h,l,pc.in,txt,y}') spec.files += Dir.glob('ext/**/extconf.rb') spec.files += Dir.glob('ext/**/Makefile') spec.test_files = Dir.glob('test/**/*') spec.require_paths = %w(lib ext) spec.extensions = ['ext/mathematical/extconf.rb'] spec.add_dependency 'ruby-enum', '~> 0.4' spec.add_development_dependency 'rake', '~> 0.9' spec.add_development_dependency 'rake-compiler', '~> 0.9' spec.add_development_dependency 'bundler', '~> 1.2' spec.add_development_dependency 'minitest', '~> 5.6' spec.add_development_dependency 'math-to-itex', '~> 0.3' spec.add_development_dependency 'nokogiri', '~> 1.6' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
mathematical-1.4.1 | mathematical.gemspec |