bosh_cli 1.0.2 → 1.0.3
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/lib/cli/blob_manager.rb +1 -1
- data/lib/cli/version.rb +1 -1
- data/spec/unit/blob_manager_spec.rb +2 -5
- metadata +4 -4
data/lib/cli/blob_manager.rb
CHANGED
data/lib/cli/version.rb
CHANGED
@@ -162,17 +162,14 @@ describe Bosh::Cli::BlobManager do
|
|
162
162
|
}
|
163
163
|
}
|
164
164
|
|
165
|
-
tmp_file = Tempfile.new("mock-blob")
|
166
|
-
Tempfile.stub!(:new).with("bosh-blob").and_return(tmp_file)
|
167
|
-
|
168
165
|
File.open(File.join(@config_dir, "blobs.yml"), "w") do |f|
|
169
166
|
YAML.dump(index, f)
|
170
167
|
end
|
171
168
|
|
172
169
|
@manager = make_manager(@release)
|
173
170
|
@blobstore.should_receive(:get).with("deadbeef",
|
174
|
-
an_instance_of(
|
175
|
-
and_return {
|
171
|
+
an_instance_of(File)).
|
172
|
+
and_return { |_, f | f.write("blob contents") }
|
176
173
|
|
177
174
|
path = @manager.download_blob("foo")
|
178
175
|
File.read(path).should == "blob contents"
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bosh_cli
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.3
|
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: 2012-11-
|
12
|
+
date: 2012-11-27 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: bosh_common
|
@@ -355,7 +355,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
355
355
|
version: '0'
|
356
356
|
segments:
|
357
357
|
- 0
|
358
|
-
hash:
|
358
|
+
hash: 3581265501078885115
|
359
359
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
360
360
|
none: false
|
361
361
|
requirements:
|
@@ -364,7 +364,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
364
364
|
version: '0'
|
365
365
|
segments:
|
366
366
|
- 0
|
367
|
-
hash:
|
367
|
+
hash: 3581265501078885115
|
368
368
|
requirements: []
|
369
369
|
rubyforge_project:
|
370
370
|
rubygems_version: 1.8.24
|