symbolic 0.3.2 → 0.3.3
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +3 -1
- metadata +3 -1
data/Rakefile
CHANGED
@@ -5,16 +5,18 @@ begin
|
|
5
5
|
require 'jeweler'
|
6
6
|
Jeweler::Tasks.new do |gem|
|
7
7
|
gem.name = "symbolic"
|
8
|
-
gem.version = '0.3.
|
8
|
+
gem.version = '0.3.3'
|
9
9
|
gem.summary = 'Symbolic math for ruby'
|
10
10
|
gem.description = <<TEXT
|
11
11
|
Symbolic math for ruby.
|
12
12
|
|
13
|
+
|
13
14
|
This gem can help you
|
14
15
|
- if you want to get a simplified form of a big equation
|
15
16
|
- if you want to speed up similar calculations
|
16
17
|
- if you need an abstraction layer for math
|
17
18
|
|
19
|
+
|
18
20
|
Symbolic doesn't have any external dependencies. It uses only pure ruby (less than 400 LOC (lines of code)).
|
19
21
|
TEXT
|
20
22
|
gem.email = "ravwar@gmail.com"
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: symbolic
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- brainopia
|
@@ -25,11 +25,13 @@ dependencies:
|
|
25
25
|
description: |
|
26
26
|
Symbolic math for ruby.
|
27
27
|
|
28
|
+
|
28
29
|
This gem can help you
|
29
30
|
- if you want to get a simplified form of a big equation
|
30
31
|
- if you want to speed up similar calculations
|
31
32
|
- if you need an abstraction layer for math
|
32
33
|
|
34
|
+
|
33
35
|
Symbolic doesn't have any external dependencies. It uses only pure ruby (less than 400 LOC (lines of code)).
|
34
36
|
|
35
37
|
email: ravwar@gmail.com
|