more_math 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +1 -1
- data/VERSION +1 -1
- data/lib/more_math/numberify_string_function.rb +1 -1
- data/lib/more_math/sequence.rb +1 -1
- data/lib/more_math/version.rb +1 -1
- data/more_math.gemspec +14 -14
- metadata +38 -64
data/Rakefile
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.2
|
data/lib/more_math/sequence.rb
CHANGED
data/lib/more_math/version.rb
CHANGED
data/more_math.gemspec
CHANGED
@@ -1,35 +1,35 @@
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
|
-
s.name =
|
5
|
-
s.version = "0.0.
|
4
|
+
s.name = "more_math"
|
5
|
+
s.version = "0.0.2"
|
6
6
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
8
8
|
s.authors = ["Florian Frank"]
|
9
|
-
s.date =
|
10
|
-
s.description =
|
11
|
-
s.email =
|
9
|
+
s.date = "2011-09-25"
|
10
|
+
s.description = "Library that provides more mathematical functions/algorithms than standard Ruby."
|
11
|
+
s.email = "flori@ping.de"
|
12
12
|
s.extra_rdoc_files = ["README.rdoc", "lib/more_math/cantor_pairing_function.rb", "lib/more_math/version.rb", "lib/more_math/functions.rb", "lib/more_math/sequence.rb", "lib/more_math/linear_regression.rb", "lib/more_math/string_numeral.rb", "lib/more_math/histogram.rb", "lib/more_math/constants/functions_constants.rb", "lib/more_math/numberify_string_function.rb", "lib/more_math/distributions.rb", "lib/more_math/exceptions.rb", "lib/more_math/newton_bisection.rb", "lib/more_math/continued_fraction.rb", "lib/more_math.rb"]
|
13
13
|
s.files = [".gitignore", ".travis.yml", "CHANGES", "Gemfile", "LICENSE", "README.rdoc", "Rakefile", "VERSION", "lib/more_math.rb", "lib/more_math/cantor_pairing_function.rb", "lib/more_math/constants/functions_constants.rb", "lib/more_math/continued_fraction.rb", "lib/more_math/distributions.rb", "lib/more_math/exceptions.rb", "lib/more_math/functions.rb", "lib/more_math/histogram.rb", "lib/more_math/linear_regression.rb", "lib/more_math/newton_bisection.rb", "lib/more_math/numberify_string_function.rb", "lib/more_math/sequence.rb", "lib/more_math/string_numeral.rb", "lib/more_math/version.rb", "more_math.gemspec", "tests/test_analysis.rb", "tests/test_cantor_pairing_function.rb", "tests/test_continued_fraction.rb", "tests/test_distribution.rb", "tests/test_functions.rb", "tests/test_histogram.rb", "tests/test_newton_bisection.rb", "tests/test_numberify_string_function.rb"]
|
14
|
-
s.homepage =
|
14
|
+
s.homepage = "http://flori.github.com/more_math"
|
15
15
|
s.rdoc_options = ["--title", "MoreMath -- More Math in Ruby", "--main", "README.rdoc"]
|
16
16
|
s.require_paths = ["lib"]
|
17
|
-
s.rubygems_version =
|
18
|
-
s.summary =
|
17
|
+
s.rubygems_version = "1.8.10"
|
18
|
+
s.summary = "Library that provides more mathematics."
|
19
19
|
s.test_files = ["tests/test_cantor_pairing_function.rb", "tests/test_continued_fraction.rb", "tests/test_newton_bisection.rb", "tests/test_analysis.rb", "tests/test_functions.rb", "tests/test_distribution.rb", "tests/test_histogram.rb", "tests/test_numberify_string_function.rb"]
|
20
20
|
|
21
21
|
if s.respond_to? :specification_version then
|
22
22
|
s.specification_version = 3
|
23
23
|
|
24
24
|
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
25
|
-
s.add_development_dependency(%q<gem_hadar>, ["~> 0.0
|
26
|
-
s.add_runtime_dependency(%q<
|
25
|
+
s.add_development_dependency(%q<gem_hadar>, ["~> 0.1.0"])
|
26
|
+
s.add_runtime_dependency(%q<tins>, ["~> 0.3"])
|
27
27
|
else
|
28
|
-
s.add_dependency(%q<gem_hadar>, ["~> 0.0
|
29
|
-
s.add_dependency(%q<
|
28
|
+
s.add_dependency(%q<gem_hadar>, ["~> 0.1.0"])
|
29
|
+
s.add_dependency(%q<tins>, ["~> 0.3"])
|
30
30
|
end
|
31
31
|
else
|
32
|
-
s.add_dependency(%q<gem_hadar>, ["~> 0.0
|
33
|
-
s.add_dependency(%q<
|
32
|
+
s.add_dependency(%q<gem_hadar>, ["~> 0.1.0"])
|
33
|
+
s.add_dependency(%q<tins>, ["~> 0.3"])
|
34
34
|
end
|
35
35
|
end
|
metadata
CHANGED
@@ -1,61 +1,44 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: more_math
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.2
|
5
5
|
prerelease:
|
6
|
-
segments:
|
7
|
-
- 0
|
8
|
-
- 0
|
9
|
-
- 1
|
10
|
-
version: 0.0.1
|
11
6
|
platform: ruby
|
12
|
-
authors:
|
7
|
+
authors:
|
13
8
|
- Florian Frank
|
14
9
|
autorequire:
|
15
10
|
bindir: bin
|
16
11
|
cert_chain: []
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
dependencies:
|
21
|
-
- !ruby/object:Gem::Dependency
|
12
|
+
date: 2011-09-25 00:00:00.000000000Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
22
15
|
name: gem_hadar
|
23
|
-
|
24
|
-
requirement: &id001 !ruby/object:Gem::Requirement
|
16
|
+
requirement: &2160789860 !ruby/object:Gem::Requirement
|
25
17
|
none: false
|
26
|
-
requirements:
|
18
|
+
requirements:
|
27
19
|
- - ~>
|
28
|
-
- !ruby/object:Gem::Version
|
29
|
-
|
30
|
-
segments:
|
31
|
-
- 0
|
32
|
-
- 0
|
33
|
-
- 5
|
34
|
-
version: 0.0.5
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: 0.1.0
|
35
22
|
type: :development
|
36
|
-
version_requirements: *id001
|
37
|
-
- !ruby/object:Gem::Dependency
|
38
|
-
name: spruz
|
39
23
|
prerelease: false
|
40
|
-
|
24
|
+
version_requirements: *2160789860
|
25
|
+
- !ruby/object:Gem::Dependency
|
26
|
+
name: tins
|
27
|
+
requirement: &2160789420 !ruby/object:Gem::Requirement
|
41
28
|
none: false
|
42
|
-
requirements:
|
29
|
+
requirements:
|
43
30
|
- - ~>
|
44
|
-
- !ruby/object:Gem::Version
|
45
|
-
|
46
|
-
segments:
|
47
|
-
- 0
|
48
|
-
- 2
|
49
|
-
version: "0.2"
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: '0.3'
|
50
33
|
type: :runtime
|
51
|
-
|
52
|
-
|
34
|
+
prerelease: false
|
35
|
+
version_requirements: *2160789420
|
36
|
+
description: Library that provides more mathematical functions/algorithms than standard
|
37
|
+
Ruby.
|
53
38
|
email: flori@ping.de
|
54
39
|
executables: []
|
55
|
-
|
56
40
|
extensions: []
|
57
|
-
|
58
|
-
extra_rdoc_files:
|
41
|
+
extra_rdoc_files:
|
59
42
|
- README.rdoc
|
60
43
|
- lib/more_math/cantor_pairing_function.rb
|
61
44
|
- lib/more_math/version.rb
|
@@ -71,7 +54,7 @@ extra_rdoc_files:
|
|
71
54
|
- lib/more_math/newton_bisection.rb
|
72
55
|
- lib/more_math/continued_fraction.rb
|
73
56
|
- lib/more_math.rb
|
74
|
-
files:
|
57
|
+
files:
|
75
58
|
- .gitignore
|
76
59
|
- .travis.yml
|
77
60
|
- CHANGES
|
@@ -103,44 +86,35 @@ files:
|
|
103
86
|
- tests/test_histogram.rb
|
104
87
|
- tests/test_newton_bisection.rb
|
105
88
|
- tests/test_numberify_string_function.rb
|
106
|
-
has_rdoc: true
|
107
89
|
homepage: http://flori.github.com/more_math
|
108
90
|
licenses: []
|
109
|
-
|
110
91
|
post_install_message:
|
111
|
-
rdoc_options:
|
92
|
+
rdoc_options:
|
112
93
|
- --title
|
113
94
|
- MoreMath -- More Math in Ruby
|
114
95
|
- --main
|
115
96
|
- README.rdoc
|
116
|
-
require_paths:
|
97
|
+
require_paths:
|
117
98
|
- lib
|
118
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
99
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
119
100
|
none: false
|
120
|
-
requirements:
|
121
|
-
- -
|
122
|
-
- !ruby/object:Gem::Version
|
123
|
-
|
124
|
-
|
125
|
-
- 0
|
126
|
-
version: "0"
|
127
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
101
|
+
requirements:
|
102
|
+
- - ! '>='
|
103
|
+
- !ruby/object:Gem::Version
|
104
|
+
version: '0'
|
105
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
128
106
|
none: false
|
129
|
-
requirements:
|
130
|
-
- -
|
131
|
-
- !ruby/object:Gem::Version
|
132
|
-
|
133
|
-
segments:
|
134
|
-
- 0
|
135
|
-
version: "0"
|
107
|
+
requirements:
|
108
|
+
- - ! '>='
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '0'
|
136
111
|
requirements: []
|
137
|
-
|
138
112
|
rubyforge_project:
|
139
|
-
rubygems_version: 1.
|
113
|
+
rubygems_version: 1.8.10
|
140
114
|
signing_key:
|
141
115
|
specification_version: 3
|
142
116
|
summary: Library that provides more mathematics.
|
143
|
-
test_files:
|
117
|
+
test_files:
|
144
118
|
- tests/test_cantor_pairing_function.rb
|
145
119
|
- tests/test_continued_fraction.rb
|
146
120
|
- tests/test_newton_bisection.rb
|