forked from gjtorikian/mathematical
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mathematical.gemspec
32 lines (28 loc) · 1.5 KB
/
mathematical.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# 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 = ['[email protected]']
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