boxgrinder-core 0.3.3 → 0.3.4

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,3 +1,7 @@
1
+ v0.3.4
2
+
3
+ * Version bump.
4
+
1
5
  v0.3.3
2
6
 
3
7
  * [BGBUILD-233] BoxGrinder Build fails to report a missing config file
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{boxgrinder-core}
5
- s.version = "0.3.3"
5
+ s.version = "0.3.4"
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"]
@@ -5,7 +5,7 @@
5
5
 
6
6
  Summary: Core library for BoxGrinder
7
7
  Name: rubygem-%{gemname}
8
- Version: 0.3.3
8
+ Version: 0.3.4
9
9
  Release: 1%{?dist}
10
10
  Group: Development/Languages
11
11
  License: LGPLv3+
@@ -76,12 +76,13 @@ popd
76
76
  %{gemdir}/doc/%{gemname}-%{version}
77
77
 
78
78
  %changelog
79
+ * Tue Jun 28 2011 Marc Savy <msavy@redhat.com> - 0.3.4-1
80
+ - Upstream release: 0.3.4
79
81
 
80
- * Tue Jun 14 2011 Marc Savy <msavy@redhat.com> - 0.3.3-1
82
+ * Tue Jun 28 2011 Marc Savy <msavy@redhat.com> - 0.3.3-1
81
83
  - Upstream release: 0.3.3
82
84
  - [BGBUILD-233] BoxGrinder Build fails to report a missing config file
83
85
 
84
-
85
86
  * Tue May 10 2011 Marek Goldmann <mgoldman@redhat.com> - 0.3.2-1
86
87
  - Upstream release: 0.3.2
87
88
  - [BGBUILD-210] In Fedora 14 parameters are not being expanded, and cause early string truncation.
@@ -220,7 +220,7 @@ module BoxGrinder
220
220
  config.hardware.partitions.should == {"/" => {'size' => '4', 'type' => 'ext4', "options"=>"barrier=0,nodelalloc,nobh,noatime"}, "/home" => {'size' => '2', 'type' => 'ext4'}}
221
221
  end
222
222
 
223
- it "should merge partitions for default fs_types without options for RHEL 5 (ext3)" do
223
+ it "should merge partitions for default fs_types without options for RHEL 5 (ext4)" do
224
224
  config_a = ApplianceConfig.new
225
225
  config_a.name = 'a'
226
226
  config_a.appliances << 'b'
@@ -241,10 +241,10 @@ module BoxGrinder
241
241
 
242
242
  config = @helper.instance_variable_get(:@appliance_config)
243
243
  config.hardware.partitions.size.should == 3
244
- config.hardware.partitions.should == {"/" => {'size' => '4', 'type' => 'ext3'}, "/home" => {'size' => '2', 'type' => 'ext3'}, "/boot" => {'type' => 'ext3', 'size' => 0.1}}
244
+ config.hardware.partitions.should == {"/" => {'size' => '4', 'type' => 'ext4'}, "/home" => {'size' => '2', 'type' => 'ext4'}, "/boot" => {'type' => 'ext3', 'size' => 0.1}}
245
245
  end
246
246
 
247
- it "should merge partitions for default fs_types without options for RHEL 5 (ext3) with /boot partition" do
247
+ it "should merge partitions for default fs_types without options for RHEL 5 (ext4) with /boot partition" do
248
248
  config_a = ApplianceConfig.new
249
249
  config_a.name = 'a'
250
250
  config_a.appliances << 'b'
@@ -265,7 +265,7 @@ module BoxGrinder
265
265
 
266
266
  config = @helper.instance_variable_get(:@appliance_config)
267
267
  config.hardware.partitions.size.should == 2
268
- config.hardware.partitions.should == {"/" => {'size' => '4', 'type' => 'ext3'}, "/boot" => {'size' => '2', 'type' => 'ext3'}}
268
+ config.hardware.partitions.should == {"/" => {'size' => '4', 'type' => 'ext4'}, "/boot" => {'size' => '2', 'type' => 'ext4'}}
269
269
  end
270
270
 
271
271
  it "should merge partitions with different filesystem types" do
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: boxgrinder-core
3
3
  version: !ruby/object:Gem::Version
4
- hash: 21
4
+ hash: 27
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 3
9
- - 3
10
- version: 0.3.3
9
+ - 4
10
+ version: 0.3.4
11
11
  platform: ruby
12
12
  authors:
13
13
  - Marek Goldmann