Sha256: 58f496fe93499af47cfad2f92315ca38154e956bcb2bc35c00126fdc8169463e

Contents?: true

Size: 1.5 KB

Versions: 13

Compression:

Stored size: 1.5 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['ext/**/*'].reject { |f| f =~ /\.svg$|\.mml$|\.png$|\.o$/ }
  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', '~> 1.0'
  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'
  spec.add_development_dependency 'pry-byebug', '~> 3.4.0'
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
mathematical-1.6.12 mathematical.gemspec
mathematical-1.6.11 mathematical.gemspec
mathematical-1.6.10 mathematical.gemspec
mathematical-1.6.9 mathematical.gemspec
mathematical-1.6.8 mathematical.gemspec
mathematical-1.6.7 mathematical.gemspec
mathematical-1.6.6 mathematical.gemspec
mathematical-1.6.5 mathematical.gemspec
mathematical-1.6.4 mathematical.gemspec
mathematical-1.6.3 mathematical.gemspec
mathematical-1.6.2 mathematical.gemspec
mathematical-1.6.1 mathematical.gemspec
mathematical-1.6.0 mathematical.gemspec