Sha256: 4e23a0ef45f62cb1379d3206be0bc7a19b5e26f3e05da715fc31ed0b34100e0e

Contents?: true

Size: 1.02 KB

Versions: 2

Compression:

Stored size: 1.02 KB

Contents

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'math-to-itex/version'

Gem::Specification.new do |spec|
  spec.name          = "math-to-itex"
  spec.version       = MathToItex::VERSION
  spec.authors       = ["Garen Torikian"]
  spec.email         = ["gjtorikian@gmail.com"]
  spec.summary       = %q{Turn math syntaxes into itex equations.}
  spec.description   = %q{Pass in a string and turn all math equations into itex equations. Or, pass in a block manipulate multiple matches.}
  spec.homepage      = "https://github.com/gjtorikian/math-to-itex"
  spec.license       = "MIT"
  spec.required_ruby_version = '>= 2.0'

  spec.files         = %w(LICENSE.txt README.md Rakefile math-to-itex.gemspec)
  spec.files         += Dir.glob("lib/**/*")
  spec.executables   = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
  spec.test_files    = spec.files.grep(%r{^(test|spec|features)/})
  spec.require_paths = ["lib"]

  spec.add_development_dependency "rake"
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
math-to-itex-0.3.0 math-to-itex.gemspec
math-to-itex-0.2.0 math-to-itex.gemspec