symbolic 0.3.1 → 0.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/Rakefile +11 -2
- metadata +11 -2
data/Rakefile
CHANGED
|
@@ -5,9 +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.2'
|
|
9
9
|
gem.summary = 'Symbolic math for ruby'
|
|
10
|
-
gem.description =
|
|
10
|
+
gem.description = <<TEXT
|
|
11
|
+
Symbolic math for ruby.
|
|
12
|
+
|
|
13
|
+
This gem can help you
|
|
14
|
+
- if you want to get a simplified form of a big equation
|
|
15
|
+
- if you want to speed up similar calculations
|
|
16
|
+
- if you need an abstraction layer for math
|
|
17
|
+
|
|
18
|
+
Symbolic doesn't have any external dependencies. It uses only pure ruby (less than 400 LOC (lines of code)).
|
|
19
|
+
TEXT
|
|
11
20
|
gem.email = "ravwar@gmail.com"
|
|
12
21
|
gem.homepage = "http://github.com/brainopia/symbolic"
|
|
13
22
|
gem.authors = ["brainopia"]
|
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.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- brainopia
|
|
@@ -22,7 +22,16 @@ dependencies:
|
|
|
22
22
|
- !ruby/object:Gem::Version
|
|
23
23
|
version: 1.2.9
|
|
24
24
|
version:
|
|
25
|
-
description:
|
|
25
|
+
description: |
|
|
26
|
+
Symbolic math for ruby.
|
|
27
|
+
|
|
28
|
+
This gem can help you
|
|
29
|
+
- if you want to get a simplified form of a big equation
|
|
30
|
+
- if you want to speed up similar calculations
|
|
31
|
+
- if you need an abstraction layer for math
|
|
32
|
+
|
|
33
|
+
Symbolic doesn't have any external dependencies. It uses only pure ruby (less than 400 LOC (lines of code)).
|
|
34
|
+
|
|
26
35
|
email: ravwar@gmail.com
|
|
27
36
|
executables: []
|
|
28
37
|
|