accumulators 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/Gemfile +0 -1
- data/Gemfile.lock +0 -13
- data/Rakefile +0 -3
- data/VERSION +1 -1
- data/accumulators.gemspec +73 -0
- metadata +10 -22
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
|
@@ -1,23 +1,12 @@
|
|
|
1
1
|
GEM
|
|
2
2
|
remote: http://rubygems.org/
|
|
3
3
|
specs:
|
|
4
|
-
builder (2.1.2)
|
|
5
|
-
cucumber (0.9.4)
|
|
6
|
-
builder (~> 2.1.2)
|
|
7
|
-
diff-lcs (~> 1.1.2)
|
|
8
|
-
gherkin (~> 2.2.9)
|
|
9
|
-
json (~> 1.4.6)
|
|
10
|
-
term-ansicolor (~> 1.0.5)
|
|
11
4
|
diff-lcs (1.1.2)
|
|
12
|
-
gherkin (2.2.9)
|
|
13
|
-
json (~> 1.4.6)
|
|
14
|
-
term-ansicolor (~> 1.0.5)
|
|
15
5
|
git (1.2.5)
|
|
16
6
|
jeweler (1.5.1)
|
|
17
7
|
bundler (~> 1.0.0)
|
|
18
8
|
git (>= 1.2.5)
|
|
19
9
|
rake
|
|
20
|
-
json (1.4.6)
|
|
21
10
|
rake (0.8.7)
|
|
22
11
|
rcov (0.9.9)
|
|
23
12
|
rspec (2.1.0)
|
|
@@ -28,14 +17,12 @@ GEM
|
|
|
28
17
|
rspec-expectations (2.1.0)
|
|
29
18
|
diff-lcs (~> 1.1.2)
|
|
30
19
|
rspec-mocks (2.1.0)
|
|
31
|
-
term-ansicolor (1.0.5)
|
|
32
20
|
|
|
33
21
|
PLATFORMS
|
|
34
22
|
ruby
|
|
35
23
|
|
|
36
24
|
DEPENDENCIES
|
|
37
25
|
bundler (~> 1.0.0)
|
|
38
|
-
cucumber
|
|
39
26
|
jeweler (~> 1.5.1)
|
|
40
27
|
rcov
|
|
41
28
|
rspec (~> 2.1.0)
|
data/Rakefile
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.1
|
|
@@ -0,0 +1,73 @@
|
|
|
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{accumulators}
|
|
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 = ["Gavin Heavyside"]
|
|
12
|
+
s.date = %q{2010-11-27}
|
|
13
|
+
s.description = %q{Statistical accumulators for Ruby}
|
|
14
|
+
s.email = %q{gavin@heavyside.co.uk}
|
|
15
|
+
s.extra_rdoc_files = [
|
|
16
|
+
"LICENSE.txt",
|
|
17
|
+
"README.rdoc"
|
|
18
|
+
]
|
|
19
|
+
s.files = [
|
|
20
|
+
".document",
|
|
21
|
+
".rspec",
|
|
22
|
+
"Gemfile",
|
|
23
|
+
"Gemfile.lock",
|
|
24
|
+
"LICENSE.txt",
|
|
25
|
+
"README.rdoc",
|
|
26
|
+
"Rakefile",
|
|
27
|
+
"VERSION",
|
|
28
|
+
"accumulators.gemspec",
|
|
29
|
+
"autotest/discover.rb",
|
|
30
|
+
"features/accumulators.feature",
|
|
31
|
+
"features/step_definitions/accumulators_steps.rb",
|
|
32
|
+
"features/support/env.rb",
|
|
33
|
+
"lib/accumulators.rb",
|
|
34
|
+
"lib/accumulators/count.rb",
|
|
35
|
+
"lib/accumulators/mean.rb",
|
|
36
|
+
"spec/accumulators/count_spec.rb",
|
|
37
|
+
"spec/accumulators/mean_spec.rb",
|
|
38
|
+
"spec/spec_helper.rb"
|
|
39
|
+
]
|
|
40
|
+
s.homepage = %q{http://github.com/hgavin/accumulators}
|
|
41
|
+
s.licenses = ["MIT"]
|
|
42
|
+
s.require_paths = ["lib"]
|
|
43
|
+
s.rubygems_version = %q{1.3.7}
|
|
44
|
+
s.summary = %q{Statiscal accumulators for Ruby}
|
|
45
|
+
s.test_files = [
|
|
46
|
+
"spec/accumulators/count_spec.rb",
|
|
47
|
+
"spec/accumulators/mean_spec.rb",
|
|
48
|
+
"spec/spec_helper.rb"
|
|
49
|
+
]
|
|
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<rspec>, ["~> 2.1.0"])
|
|
57
|
+
s.add_development_dependency(%q<bundler>, ["~> 1.0.0"])
|
|
58
|
+
s.add_development_dependency(%q<jeweler>, ["~> 1.5.1"])
|
|
59
|
+
s.add_development_dependency(%q<rcov>, [">= 0"])
|
|
60
|
+
else
|
|
61
|
+
s.add_dependency(%q<rspec>, ["~> 2.1.0"])
|
|
62
|
+
s.add_dependency(%q<bundler>, ["~> 1.0.0"])
|
|
63
|
+
s.add_dependency(%q<jeweler>, ["~> 1.5.1"])
|
|
64
|
+
s.add_dependency(%q<rcov>, [">= 0"])
|
|
65
|
+
end
|
|
66
|
+
else
|
|
67
|
+
s.add_dependency(%q<rspec>, ["~> 2.1.0"])
|
|
68
|
+
s.add_dependency(%q<bundler>, ["~> 1.0.0"])
|
|
69
|
+
s.add_dependency(%q<jeweler>, ["~> 1.5.1"])
|
|
70
|
+
s.add_dependency(%q<rcov>, [">= 0"])
|
|
71
|
+
end
|
|
72
|
+
end
|
|
73
|
+
|
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
|
- Gavin Heavyside
|
|
@@ -32,22 +32,9 @@ dependencies:
|
|
|
32
32
|
type: :development
|
|
33
33
|
prerelease: false
|
|
34
34
|
version_requirements: *id001
|
|
35
|
-
- !ruby/object:Gem::Dependency
|
|
36
|
-
name: cucumber
|
|
37
|
-
requirement: &id002 !ruby/object:Gem::Requirement
|
|
38
|
-
none: false
|
|
39
|
-
requirements:
|
|
40
|
-
- - ">="
|
|
41
|
-
- !ruby/object:Gem::Version
|
|
42
|
-
segments:
|
|
43
|
-
- 0
|
|
44
|
-
version: "0"
|
|
45
|
-
type: :development
|
|
46
|
-
prerelease: false
|
|
47
|
-
version_requirements: *id002
|
|
48
35
|
- !ruby/object:Gem::Dependency
|
|
49
36
|
name: bundler
|
|
50
|
-
requirement: &
|
|
37
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
|
51
38
|
none: false
|
|
52
39
|
requirements:
|
|
53
40
|
- - ~>
|
|
@@ -59,10 +46,10 @@ dependencies:
|
|
|
59
46
|
version: 1.0.0
|
|
60
47
|
type: :development
|
|
61
48
|
prerelease: false
|
|
62
|
-
version_requirements: *
|
|
49
|
+
version_requirements: *id002
|
|
63
50
|
- !ruby/object:Gem::Dependency
|
|
64
51
|
name: jeweler
|
|
65
|
-
requirement: &
|
|
52
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
|
66
53
|
none: false
|
|
67
54
|
requirements:
|
|
68
55
|
- - ~>
|
|
@@ -74,10 +61,10 @@ dependencies:
|
|
|
74
61
|
version: 1.5.1
|
|
75
62
|
type: :development
|
|
76
63
|
prerelease: false
|
|
77
|
-
version_requirements: *
|
|
64
|
+
version_requirements: *id003
|
|
78
65
|
- !ruby/object:Gem::Dependency
|
|
79
66
|
name: rcov
|
|
80
|
-
requirement: &
|
|
67
|
+
requirement: &id004 !ruby/object:Gem::Requirement
|
|
81
68
|
none: false
|
|
82
69
|
requirements:
|
|
83
70
|
- - ">="
|
|
@@ -87,7 +74,7 @@ dependencies:
|
|
|
87
74
|
version: "0"
|
|
88
75
|
type: :development
|
|
89
76
|
prerelease: false
|
|
90
|
-
version_requirements: *
|
|
77
|
+
version_requirements: *id004
|
|
91
78
|
description: Statistical accumulators for Ruby
|
|
92
79
|
email: gavin@heavyside.co.uk
|
|
93
80
|
executables: []
|
|
@@ -106,6 +93,7 @@ files:
|
|
|
106
93
|
- README.rdoc
|
|
107
94
|
- Rakefile
|
|
108
95
|
- VERSION
|
|
96
|
+
- accumulators.gemspec
|
|
109
97
|
- autotest/discover.rb
|
|
110
98
|
- features/accumulators.feature
|
|
111
99
|
- features/step_definitions/accumulators_steps.rb
|
|
@@ -130,7 +118,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
130
118
|
requirements:
|
|
131
119
|
- - ">="
|
|
132
120
|
- !ruby/object:Gem::Version
|
|
133
|
-
hash:
|
|
121
|
+
hash: 3832926264692213424
|
|
134
122
|
segments:
|
|
135
123
|
- 0
|
|
136
124
|
version: "0"
|