fog-maestrodev 1.18.0.20131122203507 → 1.18.0.20131123105121

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.
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- NmY1YmUxY2NiMjM2MGNlMWY4YTliNTZlZWE3ZDU0ZTEzOWVhZDM3YQ==
4
+ ZWFlNzg5MjA1Nzg1MmY5MTZmMWViODM4YmU5YWJhNzNiODFmYWE3ZQ==
5
5
  data.tar.gz: !binary |-
6
- NmVlZDNlZTc5OTc0YjhmNGE1YzNhODU3OWUxZGNhZTAyZTFiYzYzZA==
6
+ MDRkNzcyYjNlZWI3OGNiOGYwZDY5MWNmMGM4YTZkYmI3ODIwODAyOA==
7
7
  !binary "U0hBNTEy":
8
8
  metadata.gz: !binary |-
9
- ZDBlMzk5MGFlMGY2ZjY4ODRhY2U0YjE5MWUxNGY4MzJlNTE2ZTMzMjRmYTFj
10
- MWY0OTMxN2QyYTMwMWNhYzI4NTA5NzU4OGQ1MzU0ZTYzNjhkZGViYmZiNDQw
11
- OGI0MmI1ZTFmNWZiNGIwMWI5MGY3ZTk3ZTBkNDJkY2I1YWY1YTg=
9
+ ZjM4YzljNzdiOTM1NWRhNjA0YTkyNWZmOTM1ODY1ZmMyYjA5MjQ3N2M5NTQ4
10
+ NDI0Y2VkODRlZDg4ZDZjMDFkNmYxMTQwNDI2OGY0ZjJmZDQxZjQ3ZDk4YzI4
11
+ ZTM0ZmM3ZDQ3ZDc1NTQyNjk4YTcxNTQ3YjdkMDIyNDI0NTg3ZDA=
12
12
  data.tar.gz: !binary |-
13
- ZWQ1MzI2OGMzNjkyOWJhYWU2OTk2MzRlMWQwMTY3ZDI2N2ZiMmZhZjUwN2Y1
14
- NzE5NmZhMDhlYTE1YmJmMWUyZjgzOTQyY2JjN2U3YzE2YzY5ZWE3ZTI0MDlh
15
- YmJlMDIwOTUzM2Y4YWU3NjY2MWY0NjE2MmI0NjdjMmMwMjVmMzU=
13
+ MDNiMzA5NTU3MTI3YzFlNDEwZThhODAyZDAwNmNhZTcwZDJmZWU2ZTM2OWQ2
14
+ NjVmNjUxYjA5ODIzZGU2Y2U1ZDU5OTQ3MDg1M2M1MWQ4NTlhODk1NmY4MmYz
15
+ MjI0ZTEwZTBiYzk5Njg3ZWQ5ZDJmYjVhMWQxMWQzZjVhNjliZDU=
data/fog.gemspec CHANGED
@@ -6,8 +6,8 @@ Gem::Specification.new do |s|
6
6
  ## If your rubyforge_project name is different, then edit it and comment out
7
7
  ## the sub! line in the Rakefile
8
8
  s.name = 'fog-maestrodev'
9
- s.version = '1.18.0.20131122203507'
10
- s.date = '2013-11-22'
9
+ s.version = '1.18.0.20131123105121'
10
+ s.date = '2013-11-23'
11
11
  s.rubyforge_project = 'fog'
12
12
 
13
13
  ## Make sure your summary is short. The description may be as long
@@ -0,0 +1,13 @@
1
+ # Get an expiring object http url
2
+ #
3
+ # ==== Parameters
4
+ # * container<~String> - Name of container containing object
5
+ # * object<~String> - Name of object to get expiring url for
6
+ # * expires<~Time> - An expiry time for this url
7
+ #
8
+ # ==== Returns
9
+ # * response<~Excon::Response>:
10
+ # * body<~String> - url for object
11
+ def get_object_http_url(container, object, expires, options = {})
12
+ create_temp_url(container, object, expires, "GET", options.merge(:scheme => "http"))
13
+ end
@@ -18,20 +18,6 @@ module Fog
18
18
  create_temp_url(container, object, expires, "GET", options.merge(:scheme => "https"))
19
19
  end
20
20
 
21
- # Get an expiring object http url
22
- #
23
- # ==== Parameters
24
- # * container<~String> - Name of container containing object
25
- # * object<~String> - Name of object to get expiring url for
26
- # * expires<~Time> - An expiry time for this url
27
- #
28
- # ==== Returns
29
- # * response<~Excon::Response>:
30
- # * body<~String> - url for object
31
- def get_object_http_url(container, object, expires, options = {})
32
- create_temp_url(container, object, expires, "GET", options.merge(:scheme => "http"))
33
- end
34
-
35
21
  # creates a temporary url
36
22
  #
37
23
  # ==== Parameters
@@ -26,6 +26,7 @@ module Fog
26
26
  request :get_container
27
27
  request :get_containers
28
28
  request :get_object
29
+ request :get_object_http_url
29
30
  request :get_object_https_url
30
31
  request :head_container
31
32
  request :head_containers
@@ -35,6 +36,7 @@ module Fog
35
36
  request :put_object_manifest
36
37
  request :put_dynamic_obj_manifest
37
38
  request :put_static_obj_manifest
39
+ request :post_set_meta_temp_url_key
38
40
 
39
41
  class Mock
40
42
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fog-maestrodev
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.18.0.20131122203507
4
+ version: 1.18.0.20131123105121
5
5
  platform: ruby
6
6
  authors:
7
7
  - geemus (Wesley Beary)
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-11-22 00:00:00.000000000 Z
11
+ date: 2013-11-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: builder
@@ -3189,6 +3189,7 @@ files:
3189
3189
  - lib/fog/openstack/requests/storage/get_container.rb
3190
3190
  - lib/fog/openstack/requests/storage/get_containers.rb
3191
3191
  - lib/fog/openstack/requests/storage/get_object.rb
3192
+ - lib/fog/openstack/requests/storage/get_object_http_url.rb
3192
3193
  - lib/fog/openstack/requests/storage/get_object_https_url.rb
3193
3194
  - lib/fog/openstack/requests/storage/head_container.rb
3194
3195
  - lib/fog/openstack/requests/storage/head_containers.rb