bors 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
data/Gemfile CHANGED
@@ -1,7 +1,7 @@
1
1
  source "http://rubygems.org"
2
2
 
3
3
  gem 'oj'
4
- gem "hashie-pre", "~> 2.0.0.beta"
4
+ gem "hashie"
5
5
 
6
6
  group :development do
7
7
  gem "rdoc", "~> 3.12"
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-pre (2.0.0.beta)
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-pre (~> 2.0.0.beta)
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
- ** examples - (path to existing examples or where to create new)
96
- ** cache_file - (path to existing cache file or where to create a new cache)
97
- ** create_cache - (true / false to use a cache file)
98
- ** passes
99
- ** initial_regressor
100
- ** final_regressor
101
- ** predictions
102
- ** min_prediction
103
- ** max_prediction
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
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.1"
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-24"
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-pre>, ["~> 2.0.0.beta"])
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-pre>, ["~> 2.0.0.beta"])
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-pre>, ["~> 2.0.0.beta"])
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"])
@@ -3,8 +3,7 @@ require 'oj'
3
3
 
4
4
  class Bors
5
5
  class Result
6
- class Settings < Hash
7
- include Hashie::Extensions::MethodAccess
6
+ class Settings < Hashie::Mash
8
7
 
9
8
  SPLIT_SETTINGS_LINE = /\s=\s/
10
9
 
@@ -3,8 +3,7 @@ require 'oj'
3
3
 
4
4
  class Bors
5
5
  class Result
6
- class Statistics < Hash
7
- include Hashie::Extensions::MethodAccess
6
+ class Statistics < Hashie::Mash
8
7
 
9
8
  SPLIT_SETTINGS_LINE = /\s=\s/
10
9
 
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.1
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-24 00:00:00.000000000 Z
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-pre
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: 2.0.0.beta
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: 2.0.0.beta
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: 4017178711172066788
147
+ hash: 174562694898033654
148
148
  required_rubygems_version: !ruby/object:Gem::Requirement
149
149
  none: false
150
150
  requirements: