Sha256: 7d3299bfcab0f0e9de3676eba7706a82462fef212cc36269d8c4d3f6907afc48
Contents?: true
Size: 1.53 KB
Versions: 2
Compression:
Stored size: 1.53 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 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 = %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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
mathematical-1.5.0 | mathematical.gemspec |
mathematical-1.4.2 | mathematical.gemspec |