calculus 0.1.4 → 0.1.4.1
Sign up to get free protection for your applications and to get access to all the features.
- data/calculus.gemspec +1 -1
- data/lib/calculus/version.rb +1 -1
- metadata +2 -2
data/calculus.gemspec
CHANGED
@@ -10,7 +10,7 @@ Gem::Specification.new do |s|
|
|
10
10
|
s.email = ["sergey.avseyev@gmail.com"]
|
11
11
|
s.homepage = "http://avsej.net/calculus"
|
12
12
|
s.summary = %q{A ruby parser for TeX equations}
|
13
|
-
s.description = %q{A ruby parser for TeX equations. It parses equations to postfix (reverse polish) notation and can build abstract syntax tree (AST). Also it can render images via latex. Requres modern ruby 1.9.x
|
13
|
+
s.description = %q{A ruby parser for TeX equations. It parses equations to postfix (reverse polish) notation and can build abstract syntax tree (AST). Also it can render images via latex. Requres modern ruby 1.9.x because of using advanced oniguruma regex engine}
|
14
14
|
|
15
15
|
s.has_rdoc = true
|
16
16
|
s.rdoc_options = ['--main', 'README.rdoc']
|
data/lib/calculus/version.rb
CHANGED
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: calculus
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 0.1.4
|
5
|
+
version: 0.1.4.1
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Sergey Avseyev
|
@@ -14,7 +14,7 @@ date: 2011-05-13 00:00:00 +03:00
|
|
14
14
|
default_executable:
|
15
15
|
dependencies: []
|
16
16
|
|
17
|
-
description: A ruby parser for TeX equations. It parses equations to postfix (reverse polish) notation and can build abstract syntax tree (AST). Also it can render images via latex. Requres modern ruby 1.9.x
|
17
|
+
description: A ruby parser for TeX equations. It parses equations to postfix (reverse polish) notation and can build abstract syntax tree (AST). Also it can render images via latex. Requres modern ruby 1.9.x because of using advanced oniguruma regex engine
|
18
18
|
email:
|
19
19
|
- sergey.avseyev@gmail.com
|
20
20
|
executables: []
|