boxgrinder-build 0.9.5.1 → 0.9.5.2
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +4 -0
- data/boxgrinder-build.gemspec +1 -1
- data/rubygem-boxgrinder-build.spec +5 -1
- data/spec/plugins/delivery/s3/s3-plugin-spec.rb +2 -1
- metadata +3 -3
data/CHANGELOG
CHANGED
data/boxgrinder-build.gemspec
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
Summary: A tool for creating appliances from simple plain text files
|
7
7
|
Name: rubygem-%{gemname}
|
8
|
-
Version: 0.9.5.
|
8
|
+
Version: 0.9.5.2
|
9
9
|
Release: 1%{?dist}
|
10
10
|
Group: Development/Languages
|
11
11
|
License: LGPLv3+
|
@@ -130,6 +130,10 @@ popd
|
|
130
130
|
%{gemdir}/doc/%{gemname}-%{version}
|
131
131
|
|
132
132
|
%changelog
|
133
|
+
* Sat Aug 27 2011 Marek Goldmann <mgoldman@redhat.com> - 0.9.5.2-1
|
134
|
+
- Upstream release: 0.9.5.2
|
135
|
+
- More mocking in specs preventing remote calls - now for real
|
136
|
+
|
133
137
|
* Sat Aug 27 2011 Marek Goldmann <mgoldman@redhat.com> - 0.9.5.1-1
|
134
138
|
- Upstream release: 0.9.5.1
|
135
139
|
- More mocking in specs preventing remote calls
|
@@ -49,8 +49,9 @@ module BoxGrinder
|
|
49
49
|
@appliance_config.stub!(:os).and_return(OpenCascade.new({:name => 'fedora', :version => '14'}))
|
50
50
|
@appliance_config.stub!(:hardware).and_return(OpenCascade.new({:arch => 'x86_64', :base_arch => 'x86_64'}))
|
51
51
|
|
52
|
-
@plugin = S3Plugin.new
|
52
|
+
@plugin = S3Plugin.new
|
53
53
|
@plugin.stub!(:validate)
|
54
|
+
@plugin.init(@config, @appliance_config, {:class => BoxGrinder::S3Plugin, :type => :delivery, :name => :s3, :full_name => "Amazon Simple Storage Service (Amazon S3)", :types => [:s3, :cloudfront, :ami]}, :log => LogHelper.new(:level => :trace, :type => :stdout), :type => :s3)
|
54
55
|
|
55
56
|
#Set convenient dummies
|
56
57
|
@ec2 = mock(AWS::EC2)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: boxgrinder-build
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 23
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 9
|
9
9
|
- 5
|
10
|
-
-
|
11
|
-
version: 0.9.5.
|
10
|
+
- 2
|
11
|
+
version: 0.9.5.2
|
12
12
|
platform: ruby
|
13
13
|
authors:
|
14
14
|
- Marek Goldmann
|