boxgrinder-core 0.0.20 → 0.0.21

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/CHANGELOG CHANGED
@@ -1,4 +1,8 @@
1
1
 
2
+ v0.0.21
3
+
4
+ * Return nil if key is not found in OpenHash
5
+
2
6
  v0.0.20
3
7
 
4
8
  * Cleanup in ApplianceConfig
data/Manifest CHANGED
@@ -0,0 +1,29 @@
1
+ CHANGELOG
2
+ LICENSE
3
+ Manifest
4
+ README
5
+ Rakefile
6
+ lib/boxgrinder-core.rb
7
+ lib/boxgrinder-core/defaults.rb
8
+ lib/boxgrinder-core/helpers/appliance-config-helper.rb
9
+ lib/boxgrinder-core/helpers/appliance-helper.rb
10
+ lib/boxgrinder-core/helpers/exec-helper.rb
11
+ lib/boxgrinder-core/helpers/log-helper.rb
12
+ lib/boxgrinder-core/helpers/queue-helper.rb
13
+ lib/boxgrinder-core/models/appliance-config.rb
14
+ lib/boxgrinder-core/models/config.rb
15
+ lib/boxgrinder-core/models/task.rb
16
+ lib/boxgrinder-core/validators/appliance-config-validator.rb
17
+ lib/boxgrinder-core/validators/errors.rb
18
+ lib/openhash/openhash.rb
19
+ spec/Rakefile
20
+ spec/helpers/appliance-config-helper-spec.rb
21
+ spec/helpers/appliance-helper-spec.rb
22
+ spec/helpers/exec-helper-spec.rb
23
+ spec/helpers/log-helper-spec.rb
24
+ spec/helpers/queue-helper-spec.rb
25
+ spec/rspec/rspec-config-helper.rb
26
+ spec/rspec/src/appliances/ephemeral-repo.appl
27
+ spec/rspec/src/appliances/full.appl
28
+ spec/rspec/src/appliances/repo.appl
29
+ spec/validators/appliance-config-validator-spec.rb
@@ -2,11 +2,11 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{boxgrinder-core}
5
- s.version = "0.0.20"
5
+ s.version = "0.0.21"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Marek Goldmann"]
9
- s.date = %q{2010-07-21}
9
+ s.date = %q{2010-08-08}
10
10
  s.description = %q{Core files for BoxGrinder.}
11
11
  s.email = %q{info@boxgrinder.org}
12
12
  s.extra_rdoc_files = ["CHANGELOG", "LICENSE", "README", "lib/boxgrinder-core.rb", "lib/boxgrinder-core/defaults.rb", "lib/boxgrinder-core/helpers/appliance-config-helper.rb", "lib/boxgrinder-core/helpers/appliance-helper.rb", "lib/boxgrinder-core/helpers/exec-helper.rb", "lib/boxgrinder-core/helpers/log-helper.rb", "lib/boxgrinder-core/helpers/queue-helper.rb", "lib/boxgrinder-core/models/appliance-config.rb", "lib/boxgrinder-core/models/config.rb", "lib/boxgrinder-core/models/task.rb", "lib/boxgrinder-core/validators/appliance-config-validator.rb", "lib/boxgrinder-core/validators/errors.rb", "lib/openhash/openhash.rb"]
@@ -85,7 +85,7 @@ class OpenHash < Hash
85
85
  if key?(key)
86
86
  self[key]
87
87
  else
88
- super(s, *a, &b)
88
+ nil # super(s, *a, &b)
89
89
  end
90
90
  end
91
91
  end
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 0
8
- - 20
9
- version: 0.0.20
8
+ - 21
9
+ version: 0.0.21
10
10
  platform: ruby
11
11
  authors:
12
12
  - Marek Goldmann
@@ -14,7 +14,7 @@ autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
16
 
17
- date: 2010-07-21 00:00:00 +02:00
17
+ date: 2010-08-08 00:00:00 +02:00
18
18
  default_executable:
19
19
  dependencies: []
20
20