polynomials 0.1.0 → 0.1.1
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 +5 -5
- data/VERSION +1 -1
- data/lib/{polynomial.rb → polynomials.rb} +0 -0
- data/polynomial.gemspec +76 -0
- data/polynomials.gemspec +8 -7
- metadata +7 -6
data/Rakefile
CHANGED
@@ -19,11 +19,11 @@ Jeweler::Tasks.new do |gem|
|
|
19
19
|
gem.license = "MIT"
|
20
20
|
gem.summary = %Q{Polyomial calculations library}
|
21
21
|
gem.description = %Q{
|
22
|
-
* Parses
|
23
|
-
* Provides useful methods on top of the
|
24
|
-
**
|
25
|
-
**
|
26
|
-
**
|
22
|
+
* Parses polynomials
|
23
|
+
* Provides useful methods on top of the Polynomial class, like:
|
24
|
+
** Polynomial#local_extremums
|
25
|
+
** Polynomial#nulls
|
26
|
+
** Polynomial#curvature_behaviour
|
27
27
|
* Implements root's finding formulas for quadratic, cubic and quartic functions
|
28
28
|
}
|
29
29
|
gem.email = "manu@korfmann.info"
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.1
|
File without changes
|
data/polynomial.gemspec
ADDED
@@ -0,0 +1,76 @@
|
|
1
|
+
# Generated by jeweler
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
4
|
+
# -*- encoding: utf-8 -*-
|
5
|
+
|
6
|
+
Gem::Specification.new do |s|
|
7
|
+
s.name = %q{polynomial}
|
8
|
+
s.version = "0.1.1"
|
9
|
+
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
+
s.authors = ["Manuel Korfmann"]
|
12
|
+
s.date = %q{2011-05-12}
|
13
|
+
s.description = %q{
|
14
|
+
* Parses polynomials
|
15
|
+
* Provides useful methods on top of the Polynomial class, like:
|
16
|
+
** Polynomial#local_extremums
|
17
|
+
** Polynomial#nulls
|
18
|
+
** Polynomial#curvature_behaviour
|
19
|
+
* Implements root's finding formulas for quadratic, cubic and quartic functions
|
20
|
+
}
|
21
|
+
s.email = %q{manu@korfmann.info}
|
22
|
+
s.extra_rdoc_files = [
|
23
|
+
"LICENSE.txt",
|
24
|
+
"README.rdoc"
|
25
|
+
]
|
26
|
+
s.files = [
|
27
|
+
".document",
|
28
|
+
"Gemfile",
|
29
|
+
"Gemfile.lock",
|
30
|
+
"LICENSE.txt",
|
31
|
+
"README.rdoc",
|
32
|
+
"Rakefile",
|
33
|
+
"VERSION",
|
34
|
+
"lib/core_ext/math.rb",
|
35
|
+
"lib/polynomials.rb",
|
36
|
+
"lib/term.rb",
|
37
|
+
"polynomial.gemspec",
|
38
|
+
"polynomials.gemspec",
|
39
|
+
"test/helper.rb",
|
40
|
+
"test/math_test.rb",
|
41
|
+
"test/polynomial_test.rb",
|
42
|
+
"test/term_test.rb",
|
43
|
+
"test/test_helper.rb"
|
44
|
+
]
|
45
|
+
s.homepage = %q{http://github.com/mkorfmann/polynomials}
|
46
|
+
s.licenses = ["MIT"]
|
47
|
+
s.require_paths = ["lib"]
|
48
|
+
s.rubygems_version = %q{1.3.7}
|
49
|
+
s.summary = %q{Polyomial calculations library}
|
50
|
+
|
51
|
+
if s.respond_to? :specification_version then
|
52
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
53
|
+
s.specification_version = 3
|
54
|
+
|
55
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
56
|
+
s.add_development_dependency(%q<shoulda>, [">= 0"])
|
57
|
+
s.add_development_dependency(%q<bundler>, ["~> 1.0.0"])
|
58
|
+
s.add_development_dependency(%q<jeweler>, ["~> 1.6.0"])
|
59
|
+
s.add_development_dependency(%q<rcov>, [">= 0"])
|
60
|
+
s.add_development_dependency(%q<awesome_print>, [">= 0"])
|
61
|
+
else
|
62
|
+
s.add_dependency(%q<shoulda>, [">= 0"])
|
63
|
+
s.add_dependency(%q<bundler>, ["~> 1.0.0"])
|
64
|
+
s.add_dependency(%q<jeweler>, ["~> 1.6.0"])
|
65
|
+
s.add_dependency(%q<rcov>, [">= 0"])
|
66
|
+
s.add_dependency(%q<awesome_print>, [">= 0"])
|
67
|
+
end
|
68
|
+
else
|
69
|
+
s.add_dependency(%q<shoulda>, [">= 0"])
|
70
|
+
s.add_dependency(%q<bundler>, ["~> 1.0.0"])
|
71
|
+
s.add_dependency(%q<jeweler>, ["~> 1.6.0"])
|
72
|
+
s.add_dependency(%q<rcov>, [">= 0"])
|
73
|
+
s.add_dependency(%q<awesome_print>, [">= 0"])
|
74
|
+
end
|
75
|
+
end
|
76
|
+
|
data/polynomials.gemspec
CHANGED
@@ -5,17 +5,17 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{polynomials}
|
8
|
-
s.version = "0.1.
|
8
|
+
s.version = "0.1.1"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Manuel Korfmann"]
|
12
12
|
s.date = %q{2011-05-12}
|
13
13
|
s.description = %q{
|
14
|
-
* Parses
|
15
|
-
* Provides useful methods on top of the
|
16
|
-
**
|
17
|
-
**
|
18
|
-
**
|
14
|
+
* Parses polynomials
|
15
|
+
* Provides useful methods on top of the Polynomial class, like:
|
16
|
+
** Polynomial#local_extremums
|
17
|
+
** Polynomial#nulls
|
18
|
+
** Polynomial#curvature_behaviour
|
19
19
|
* Implements root's finding formulas for quadratic, cubic and quartic functions
|
20
20
|
}
|
21
21
|
s.email = %q{manu@korfmann.info}
|
@@ -32,8 +32,9 @@ Gem::Specification.new do |s|
|
|
32
32
|
"Rakefile",
|
33
33
|
"VERSION",
|
34
34
|
"lib/core_ext/math.rb",
|
35
|
-
"lib/
|
35
|
+
"lib/polynomials.rb",
|
36
36
|
"lib/term.rb",
|
37
|
+
"polynomial.gemspec",
|
37
38
|
"polynomials.gemspec",
|
38
39
|
"test/helper.rb",
|
39
40
|
"test/math_test.rb",
|
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 1
|
8
|
-
-
|
9
|
-
version: 0.1.
|
8
|
+
- 1
|
9
|
+
version: 0.1.1
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Manuel Korfmann
|
@@ -87,8 +87,8 @@ dependencies:
|
|
87
87
|
prerelease: false
|
88
88
|
version_requirements: *id005
|
89
89
|
description: "\n\
|
90
|
-
* Parses
|
91
|
-
* Provides useful methods on top of the
|
90
|
+
* Parses polynomials\n\
|
91
|
+
* Provides useful methods on top of the Polynomial class, like:\n ** Polynomial#local_extremums\n ** Polynomial#nulls\n ** Polynomial#curvature_behaviour\n\
|
92
92
|
* Implements root's finding formulas for quadratic, cubic and quartic functions\n "
|
93
93
|
email: manu@korfmann.info
|
94
94
|
executables: []
|
@@ -107,8 +107,9 @@ files:
|
|
107
107
|
- Rakefile
|
108
108
|
- VERSION
|
109
109
|
- lib/core_ext/math.rb
|
110
|
-
- lib/
|
110
|
+
- lib/polynomials.rb
|
111
111
|
- lib/term.rb
|
112
|
+
- polynomial.gemspec
|
112
113
|
- polynomials.gemspec
|
113
114
|
- test/helper.rb
|
114
115
|
- test/math_test.rb
|
@@ -129,7 +130,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
129
130
|
requirements:
|
130
131
|
- - ">="
|
131
132
|
- !ruby/object:Gem::Version
|
132
|
-
hash:
|
133
|
+
hash: 1112963547142027231
|
133
134
|
segments:
|
134
135
|
- 0
|
135
136
|
version: "0"
|