extmath 2.3.0
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/Changelog +1 -0
- data/LICENSE +340 -0
- data/README +12 -0
- data/doc/about.txt +20 -0
- data/doc/documentation.txt +494 -0
- data/doc/remarks.txt +25 -0
- data/doc/usage_example.txt +452 -0
- data/lib/extmath.rb +804 -0
- data/test.rb +622 -0
- metadata +75 -0
metadata
ADDED
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: extmath
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
hash: 3
|
|
5
|
+
prerelease: false
|
|
6
|
+
segments:
|
|
7
|
+
- 2
|
|
8
|
+
- 3
|
|
9
|
+
- 0
|
|
10
|
+
version: 2.3.0
|
|
11
|
+
platform: ruby
|
|
12
|
+
authors:
|
|
13
|
+
- Josef Schugt
|
|
14
|
+
autorequire:
|
|
15
|
+
bindir: bin
|
|
16
|
+
cert_chain: []
|
|
17
|
+
|
|
18
|
+
date: 2003-08-29 00:00:00 +02:00
|
|
19
|
+
default_executable:
|
|
20
|
+
dependencies: []
|
|
21
|
+
|
|
22
|
+
description: " Extmath is a library that extends Ruby's built-in math library. This gem reflects the current version (2.3.0) of the extmath library originally written by Josef Schugt.\n"
|
|
23
|
+
email: jupp@rubyforge.net
|
|
24
|
+
executables: []
|
|
25
|
+
|
|
26
|
+
extensions: []
|
|
27
|
+
|
|
28
|
+
extra_rdoc_files: []
|
|
29
|
+
|
|
30
|
+
files:
|
|
31
|
+
- README
|
|
32
|
+
- Changelog
|
|
33
|
+
- LICENSE
|
|
34
|
+
- test.rb
|
|
35
|
+
- lib/extmath.rb
|
|
36
|
+
- doc/about.txt
|
|
37
|
+
- doc/documentation.txt
|
|
38
|
+
- doc/remarks.txt
|
|
39
|
+
- doc/usage_example.txt
|
|
40
|
+
has_rdoc: true
|
|
41
|
+
homepage: http://extmath.rubyforge.org/
|
|
42
|
+
licenses: []
|
|
43
|
+
|
|
44
|
+
post_install_message:
|
|
45
|
+
rdoc_options: []
|
|
46
|
+
|
|
47
|
+
require_paths:
|
|
48
|
+
- lib
|
|
49
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
50
|
+
none: false
|
|
51
|
+
requirements:
|
|
52
|
+
- - ">="
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
hash: 3
|
|
55
|
+
segments:
|
|
56
|
+
- 0
|
|
57
|
+
version: "0"
|
|
58
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
59
|
+
none: false
|
|
60
|
+
requirements:
|
|
61
|
+
- - ">="
|
|
62
|
+
- !ruby/object:Gem::Version
|
|
63
|
+
hash: 3
|
|
64
|
+
segments:
|
|
65
|
+
- 0
|
|
66
|
+
version: "0"
|
|
67
|
+
requirements: []
|
|
68
|
+
|
|
69
|
+
rubyforge_project: extmath
|
|
70
|
+
rubygems_version: 1.3.7
|
|
71
|
+
signing_key:
|
|
72
|
+
specification_version: 3
|
|
73
|
+
summary: Extmath is a library that extends Ruby's built-in math library.
|
|
74
|
+
test_files: []
|
|
75
|
+
|