bors 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/Gemfile +1 -1
- data/Gemfile.lock +2 -2
- data/README.md +12 -9
- data/VERSION +1 -1
- data/bors.gemspec +5 -5
- data/lib/bors/result/settings.rb +1 -2
- data/lib/bors/result/statistics.rb +1 -2
- metadata +8 -8
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
@@ -3,7 +3,7 @@ GEM
|
|
3
3
|
specs:
|
4
4
|
diff-lcs (1.1.3)
|
5
5
|
git (1.2.5)
|
6
|
-
hashie
|
6
|
+
hashie (1.2.0)
|
7
7
|
jeweler (1.8.4)
|
8
8
|
bundler (~> 1.0)
|
9
9
|
git (>= 1.2.5)
|
@@ -28,7 +28,7 @@ PLATFORMS
|
|
28
28
|
|
29
29
|
DEPENDENCIES
|
30
30
|
bundler
|
31
|
-
hashie
|
31
|
+
hashie
|
32
32
|
jeweler (~> 1.8.4)
|
33
33
|
oj
|
34
34
|
rdoc (~> 3.12)
|
data/README.md
CHANGED
@@ -89,18 +89,21 @@ At the moment caching is not supported from within the tool. You have the option
|
|
89
89
|
|
90
90
|
## Releases
|
91
91
|
|
92
|
+
### 0.0.2
|
93
|
+
* Small bump to remove the dependency on the Hashie pre-release gem.
|
94
|
+
|
92
95
|
### 0.0.1
|
93
96
|
* Added pass through support for Bors options. Not all options are supported yet (see the file lib/command_line.rb for support options) but it's not trivial to add more. This means that simply passing a hash of options when calling the Bors.new object will pass those options directly through to the command line. At the moment, the follow commands are supported with more to come very soon:
|
94
97
|
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
98
|
+
* examples - (path to existing examples or where to create new)
|
99
|
+
* cache_file - (path to existing cache file or where to create a new cache)
|
100
|
+
* create_cache - (true / false to use a cache file)
|
101
|
+
* passes
|
102
|
+
* initial_regressor
|
103
|
+
* final_regressor
|
104
|
+
* predictions
|
105
|
+
* min_prediction
|
106
|
+
* max_prediction
|
104
107
|
|
105
108
|
* Removed inbuilt support of tempfiles and caches. It's assumed now that the program using the library will sort out how to use these files. Instead it is now a required option to pass a path through to a new or existing examples file location when creating a new Bors object. Likewise, you can pass in paths to cache files etc. See the tutorial above.
|
106
109
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.2
|
data/bors.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = "bors"
|
8
|
-
s.version = "0.0.
|
8
|
+
s.version = "0.0.2"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Sam Richardson"]
|
12
|
-
s.date = "2013-01-
|
12
|
+
s.date = "2013-01-25"
|
13
13
|
s.description = "Wrapper for the Vowpal Wabbit library"
|
14
14
|
s.email = "sam@richardson.co.nz"
|
15
15
|
s.extra_rdoc_files = [
|
@@ -59,20 +59,20 @@ Gem::Specification.new do |s|
|
|
59
59
|
|
60
60
|
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
61
61
|
s.add_runtime_dependency(%q<oj>, [">= 0"])
|
62
|
-
s.add_runtime_dependency(%q<hashie
|
62
|
+
s.add_runtime_dependency(%q<hashie>, [">= 0"])
|
63
63
|
s.add_development_dependency(%q<rdoc>, ["~> 3.12"])
|
64
64
|
s.add_development_dependency(%q<jeweler>, ["~> 1.8.4"])
|
65
65
|
s.add_development_dependency(%q<bundler>, [">= 0"])
|
66
66
|
else
|
67
67
|
s.add_dependency(%q<oj>, [">= 0"])
|
68
|
-
s.add_dependency(%q<hashie
|
68
|
+
s.add_dependency(%q<hashie>, [">= 0"])
|
69
69
|
s.add_dependency(%q<rdoc>, ["~> 3.12"])
|
70
70
|
s.add_dependency(%q<jeweler>, ["~> 1.8.4"])
|
71
71
|
s.add_dependency(%q<bundler>, [">= 0"])
|
72
72
|
end
|
73
73
|
else
|
74
74
|
s.add_dependency(%q<oj>, [">= 0"])
|
75
|
-
s.add_dependency(%q<hashie
|
75
|
+
s.add_dependency(%q<hashie>, [">= 0"])
|
76
76
|
s.add_dependency(%q<rdoc>, ["~> 3.12"])
|
77
77
|
s.add_dependency(%q<jeweler>, ["~> 1.8.4"])
|
78
78
|
s.add_dependency(%q<bundler>, [">= 0"])
|
data/lib/bors/result/settings.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bors
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-01-
|
12
|
+
date: 2013-01-25 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: oj
|
@@ -28,21 +28,21 @@ dependencies:
|
|
28
28
|
- !ruby/object:Gem::Version
|
29
29
|
version: '0'
|
30
30
|
- !ruby/object:Gem::Dependency
|
31
|
-
name: hashie
|
31
|
+
name: hashie
|
32
32
|
requirement: !ruby/object:Gem::Requirement
|
33
33
|
none: false
|
34
34
|
requirements:
|
35
|
-
- -
|
35
|
+
- - ! '>='
|
36
36
|
- !ruby/object:Gem::Version
|
37
|
-
version:
|
37
|
+
version: '0'
|
38
38
|
type: :runtime
|
39
39
|
prerelease: false
|
40
40
|
version_requirements: !ruby/object:Gem::Requirement
|
41
41
|
none: false
|
42
42
|
requirements:
|
43
|
-
- -
|
43
|
+
- - ! '>='
|
44
44
|
- !ruby/object:Gem::Version
|
45
|
-
version:
|
45
|
+
version: '0'
|
46
46
|
- !ruby/object:Gem::Dependency
|
47
47
|
name: rdoc
|
48
48
|
requirement: !ruby/object:Gem::Requirement
|
@@ -144,7 +144,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
144
144
|
version: '0'
|
145
145
|
segments:
|
146
146
|
- 0
|
147
|
-
hash:
|
147
|
+
hash: 174562694898033654
|
148
148
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
149
149
|
none: false
|
150
150
|
requirements:
|