Sha256: 38df85fac0e4e32aa348cdcf23b46444c1277fb11cd9e9348b1231ec023d879f

Contents?: true

Size: 1.48 KB

Versions: 1

Compression:

Stored size: 1.48 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,h,l,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_development_dependency 'rake', '~> 0.9'
  spec.add_development_dependency 'rake-compiler', '~> 0.9'
  spec.add_development_dependency 'bundler', '~> 1.5'
  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.3.0 mathematical.gemspec