more_math 0.0.1 → 0.0.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 CHANGED
@@ -14,7 +14,7 @@ GemHadar do
14
14
  readme 'README.rdoc'
15
15
  title "#{name.camelize} -- More Math in Ruby"
16
16
 
17
- dependency 'spruz', '~>0.2'
17
+ dependency 'tins', '~>0.3'
18
18
 
19
19
  install_library do
20
20
  libdir = CONFIG["sitelibdir"]
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.1
1
+ 0.0.2
@@ -1,5 +1,5 @@
1
1
  require 'more_math'
2
- require 'spruz/memoize'
2
+ require 'tins/memoize'
3
3
 
4
4
  module MoreMath
5
5
  module NumberifyStringFunction
@@ -1,5 +1,5 @@
1
1
  require 'more_math'
2
- require 'spruz/memoize'
2
+ require 'tins/memoize'
3
3
 
4
4
  module MoreMath
5
5
  # This class is used to contain elements and compute various statistical
@@ -1,6 +1,6 @@
1
1
  module MoreMath
2
2
  # MoreMath version
3
- VERSION = '0.0.1'
3
+ VERSION = '0.0.2'
4
4
  VERSION_ARRAY = VERSION.split(/\./).map { |x| x.to_i } # :nodoc:
5
5
  VERSION_MAJOR = VERSION_ARRAY[0] # :nodoc:
6
6
  VERSION_MINOR = VERSION_ARRAY[1] # :nodoc:
@@ -1,35 +1,35 @@
1
1
  # -*- encoding: utf-8 -*-
2
2
 
3
3
  Gem::Specification.new do |s|
4
- s.name = %q{more_math}
5
- s.version = "0.0.1"
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 = %q{2011-07-17}
10
- s.description = %q{Library that provides more mathematical functions/algorithms than standard Ruby.}
11
- s.email = %q{flori@ping.de}
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 = %q{http://flori.github.com/more_math}
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 = %q{1.6.2}
18
- s.summary = %q{Library that provides more mathematics.}
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.5"])
26
- s.add_runtime_dependency(%q<spruz>, ["~> 0.2"])
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.5"])
29
- s.add_dependency(%q<spruz>, ["~> 0.2"])
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.5"])
33
- s.add_dependency(%q<spruz>, ["~> 0.2"])
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
- hash: 29
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
- date: 2011-07-17 00:00:00 +02:00
19
- default_executable:
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
- prerelease: false
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
- hash: 21
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
- requirement: &id002 !ruby/object:Gem::Requirement
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
- hash: 15
46
- segments:
47
- - 0
48
- - 2
49
- version: "0.2"
31
+ - !ruby/object:Gem::Version
32
+ version: '0.3'
50
33
  type: :runtime
51
- version_requirements: *id002
52
- description: Library that provides more mathematical functions/algorithms than standard Ruby.
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
- hash: 3
124
- segments:
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
- hash: 3
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.6.2
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