deltacloud-core 1.0.4 → 1.0.5
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +2 -2
- data/config/drivers/aruba.yaml +3 -3
- data/deltacloud-core.gemspec +2 -2
- data/lib/cimi/collections/address_templates.rb +1 -2
- data/lib/cimi/collections/addresses.rb +1 -2
- data/lib/cimi/collections/base.rb +1 -1
- data/lib/cimi/collections/credentials.rb +2 -3
- data/lib/cimi/collections/forwarding_group_templates.rb +1 -2
- data/lib/cimi/collections/forwarding_groups.rb +1 -2
- data/lib/cimi/collections/machine_configurations.rb +1 -2
- data/lib/cimi/collections/machine_images.rb +1 -2
- data/lib/cimi/collections/machines.rb +9 -9
- data/lib/cimi/collections/network_configurations.rb +1 -2
- data/lib/cimi/collections/network_port_configurations.rb +1 -2
- data/lib/cimi/collections/network_port_templates.rb +1 -2
- data/lib/cimi/collections/network_ports.rb +1 -2
- data/lib/cimi/collections/network_templates.rb +1 -2
- data/lib/cimi/collections/networks.rb +2 -3
- data/lib/cimi/collections/volume_configurations.rb +1 -2
- data/lib/cimi/collections/volume_images.rb +1 -2
- data/lib/cimi/collections/volumes.rb +3 -4
- data/lib/cimi/helpers/cimi_helper.rb +7 -2
- data/lib/cimi/models.rb +6 -10
- data/lib/cimi/models/base.rb +48 -35
- data/lib/cimi/models/cloud_entry_point.rb +22 -1
- data/lib/cimi/models/collection.rb +42 -5
- data/lib/cimi/models/credential.rb +1 -1
- data/lib/cimi/models/disk.rb +39 -10
- data/lib/cimi/models/machine.rb +39 -22
- data/lib/cimi/models/machine_configuration.rb +4 -5
- data/lib/cimi/models/machine_image.rb +1 -1
- data/lib/cimi/models/machine_volume.rb +1 -1
- data/lib/cimi/models/network.rb +6 -3
- data/lib/cimi/models/network_port.rb +13 -2
- data/lib/cimi/models/schema.rb +66 -5
- data/lib/cimi/models/volume.rb +17 -16
- data/lib/cimi/models/volume_configuration.rb +7 -10
- data/lib/cimi/models/volume_image.rb +1 -1
- data/lib/deltacloud/collections/base.rb +1 -1
- data/lib/deltacloud/collections/firewalls.rb +2 -2
- data/lib/deltacloud/collections/load_balancers.rb +8 -2
- data/lib/deltacloud/core_ext.rb +1 -0
- data/lib/deltacloud/core_ext/base.rb +30 -0
- data/lib/deltacloud/drivers.rb +1 -1
- data/lib/deltacloud/drivers/base_driver.rb +1 -1
- data/lib/deltacloud/drivers/condor/condor_driver.rb +1 -1
- data/lib/deltacloud/drivers/exceptions.rb +24 -14
- data/lib/deltacloud/drivers/features.rb +3 -3
- data/lib/deltacloud/drivers/fgcp/fgcp_driver.rb +163 -92
- data/lib/deltacloud/drivers/mock/data/images/img1.yml +1 -0
- data/lib/deltacloud/drivers/mock/data/images/img2.yml +1 -0
- data/lib/deltacloud/drivers/mock/data/images/img3.yml +1 -0
- data/lib/deltacloud/drivers/mock/mock_client.rb +4 -4
- data/lib/deltacloud/drivers/mock/mock_driver.rb +16 -16
- data/lib/deltacloud/drivers/openstack/openstack_driver.rb +25 -9
- data/lib/deltacloud/drivers/rhevm/rhevm_driver.rb +2 -1
- data/lib/deltacloud/drivers/terremark/terremark_driver.rb +1 -1
- data/lib/deltacloud/drivers/vsphere/vsphere_driver.rb +2 -0
- data/lib/deltacloud/helpers/deltacloud_helper.rb +29 -8
- data/lib/deltacloud/models/image.rb +1 -0
- data/lib/deltacloud/models/instance_profile.rb +4 -0
- data/lib/deltacloud/version.rb +1 -1
- data/lib/ec2/query_parser.rb +1 -1
- data/lib/sinatra/rack_accept.rb +5 -1
- data/lib/sinatra/rack_logger.rb +9 -2
- data/tests/cimi/collections/machine_images_test.rb +23 -6
- data/tests/cimi/collections/machines_test.rb +39 -0
- data/tests/cimi/model/collection_spec.rb +109 -0
- data/tests/cimi/{spec/cimi/model → model}/credential_spec.rb +1 -1
- data/tests/cimi/{spec/cimi/model → model}/machine_configuration_spec.rb +1 -1
- data/tests/cimi/{spec/cimi/model → model}/machine_image_spec.rb +1 -1
- data/tests/cimi/{spec/cimi/model → model}/machine_spec.rb +1 -1
- data/tests/cimi/{spec/cimi/model → model}/machine_template_spec.rb +1 -1
- data/tests/cimi/{spec/cimi/model → model}/schema_spec.rb +1 -1
- data/tests/cimi/{spec/cimi/model → model}/volume_configuration_spec.rb +1 -1
- data/tests/cimi/{spec/cimi/model → model}/volume_image_spec.rb +1 -1
- data/tests/cimi/{spec/cimi/model → model}/volume_spec.rb +1 -1
- data/tests/cimi/{spec/cimi/model → model}/volume_template_spec.rb +1 -1
- data/tests/cimi/{spec/spec_helper.rb → spec_helper.rb} +7 -4
- data/tests/drivers/base/exceptions_test.rb +8 -8
- data/tests/drivers/ec2/buckets_test.rb +1 -1
- data/tests/drivers/ec2/images_test.rb +1 -1
- data/tests/drivers/ec2/instance_test.rb +1 -1
- data/tests/drivers/ec2/keys_test.rb +2 -2
- data/tests/drivers/ec2/realms_test.rb +1 -1
- data/tests/drivers/ec2/storage_snapshots_test.rb +1 -1
- data/tests/drivers/gogrid/hardware_profiles_test.rb +1 -1
- data/tests/drivers/gogrid/images_test.rb +1 -1
- data/tests/drivers/gogrid/instances_test.rb +1 -1
- data/tests/drivers/gogrid/realms_test.rb +1 -1
- data/tests/drivers/mock/images_test.rb +7 -2
- data/tests/drivers/mock/instances_test.rb +1 -1
- data/tests/drivers/mock/keys_test.rb +2 -2
- data/tests/drivers/mock/realms_test.rb +1 -1
- data/tests/drivers/mock/storage_snapshots_test.rb +1 -1
- data/tests/drivers/mock/storage_volumes_test.rb +1 -1
- data/tests/drivers/openstack/hardware_profiles_test.rb +3 -3
- data/tests/drivers/openstack/images_test.rb +1 -1
- data/tests/drivers/openstack/instances_test.rb +1 -1
- data/tests/drivers/openstack/keys_test.rb +2 -2
- data/tests/drivers/openstack/realms_test.rb +1 -1
- data/tests/drivers/rhevm/common.rb +3 -3
- data/tests/drivers/rhevm/images_test.rb +13 -13
- data/tests/drivers/rhevm/instance_test.rb +22 -22
- data/tests/drivers/rhevm/provider_test.rb +3 -3
- data/tests/drivers/rhevm/realms_test.rb +7 -7
- data/tests/test_helper.rb +0 -5
- data/views/api/show.xml.haml +6 -3
- data/views/errors/401.html.haml +0 -16
- data/views/errors/404.html.haml +2 -3
- data/views/errors/500.html.haml +6 -5
- data/views/images/show.html.haml +5 -1
- data/views/images/show.xml.haml +8 -3
- data/views/instances/new.html.haml +1 -1
- data/views/instances/show.xml.haml +1 -1
- data/views/load_balancers/show.html.haml +1 -1
- metadata +761 -778
- data/lib/cimi/models/disk_collection.rb +0 -37
- data/lib/cimi/models/machine_volume_collection.rb +0 -34
- data/lib/cimi/models/network_port_collection.rb +0 -51
- data/lib/cimi/models/network_port_configuration_collection.rb +0 -35
- data/lib/cimi/models/network_port_template_collection.rb +0 -37
data/views/errors/500.html.haml
CHANGED
@@ -18,11 +18,12 @@
|
|
18
18
|
%li
|
19
19
|
%pre= bt @error.backtrace
|
20
20
|
|
21
|
-
|
22
|
-
%
|
23
|
-
|
24
|
-
%
|
25
|
-
%
|
21
|
+
- if @error.backtrace
|
22
|
+
%div{ 'data-role' => :collapsible, 'data-collapsed' => "true"}
|
23
|
+
%h3 Backtrace
|
24
|
+
%ul{ :'data-role' => :listview , :'data-inset' => :true, :'data-divider-theme' => 'e'}
|
25
|
+
%li
|
26
|
+
%pre= h @error.backtrace.join("\n")
|
26
27
|
|
27
28
|
%div{ 'data-role' => :collapsible, 'data-collapsed' => "true"}
|
28
29
|
%h3 Parameters
|
data/views/images/show.html.haml
CHANGED
@@ -17,6 +17,10 @@
|
|
17
17
|
%li{ :'data-role' => 'list-divider'} State
|
18
18
|
%li
|
19
19
|
%p{ :'data-role' => 'fieldcontain'}=@image.state
|
20
|
+
- if @image.creation_time
|
21
|
+
%li{ :'data-role' => 'list-divider'} Creation Time
|
22
|
+
%li
|
23
|
+
%p{ :'data-role' => 'fieldcontain'}=@image.creation_time
|
20
24
|
%li{ :'data-role' => 'list-divider'} Architecture
|
21
25
|
%li
|
22
26
|
%p{ :'data-role' => 'fieldcontain'}=@image.architecture
|
@@ -25,7 +29,7 @@
|
|
25
29
|
%li
|
26
30
|
%div{ :'data-role' => 'controlgroup', :'data-type' => "horizontal" }
|
27
31
|
- @image.hardware_profiles.each do |hwp|
|
28
|
-
%a{ :href => url_for("hardware_profiles/#{hwp.
|
32
|
+
%a{ :href => url_for("hardware_profiles/#{hwp.id}"), :'data-role' => "button", :'data-ajax' => 'false'} #{hwp.name}
|
29
33
|
%li{ :'data-role' => 'list-divider'} Actions
|
30
34
|
%li
|
31
35
|
%div{ :'data-role' => 'controlgroup', :'data-type' => "horizontal" }
|
data/views/images/show.xml.haml
CHANGED
@@ -1,9 +1,14 @@
|
|
1
1
|
- unless defined?(partial)
|
2
2
|
!!! XML
|
3
3
|
%image{:href => image_url(@image.id), :id => @image.id}
|
4
|
-
|
5
|
-
|
6
|
-
|
4
|
+
%name=@image.name
|
5
|
+
%description=@image.description
|
6
|
+
%owner_id=@image.owner_id
|
7
|
+
%architecture=@image.architecture
|
8
|
+
- if @image.state
|
9
|
+
%state=@image.state
|
10
|
+
- if @image.creation_time
|
11
|
+
%creation_time=@image.creation_time
|
7
12
|
- if @image.hardware_profiles
|
8
13
|
%hardware_profiles
|
9
14
|
- @image.hardware_profiles.each do |profile|
|
@@ -89,7 +89,7 @@
|
|
89
89
|
%h3 Instance profile
|
90
90
|
%fieldset{ :'data-role' => :fieldcontain}
|
91
91
|
- @hardware_profiles.each do |profile|
|
92
|
-
%input{ :type => :radio, :name => 'hwp_id', :value => profile.
|
92
|
+
%input{ :type => :radio, :name => 'hwp_id', :value => profile.id, :id => profile.name, :'data-theme' => 'b'}/
|
93
93
|
%label{ :for => profile.name, :onclick => "expandHWP('#{profile.name}');"}=profile.name
|
94
94
|
%div{ :'data-role' => :fieldcontain, :id => "property_container_#{profile.name}", :class => 'hwp_properties'}
|
95
95
|
|
@@ -26,7 +26,7 @@
|
|
26
26
|
%link{:rel => 'run', :method => :post, :href => "#{run_instance_url(@instance.id)};id=#{@instance.id}"}
|
27
27
|
- if @instance.can_create_image?
|
28
28
|
%link{:rel => 'create_image', :method => :post, :href => "#{create_image_url};instance_id=#{@instance.id}"}
|
29
|
-
- if @instance.
|
29
|
+
- if @instance.launch_time
|
30
30
|
%launch_time<
|
31
31
|
=@instance.launch_time
|
32
32
|
- if @instance.public_addresses
|
@@ -21,7 +21,7 @@
|
|
21
21
|
%a{ :href => instance_url(instance[:id]), :'data-ajax' => 'false'}
|
22
22
|
%h3=instance[:name]
|
23
23
|
=link_to_action "UnRegister", url_for("load_balancers/#{@load_balancer.id}/unregister?instance_id=#{instance[:id]}"), :post
|
24
|
-
%li{ :'data-role' => 'list-divider'}
|
24
|
+
%li{ :'data-role' => 'list-divider'} Unregistered Instances
|
25
25
|
- @unregistered_instances.each do |instance|
|
26
26
|
%li
|
27
27
|
%a{:href => instance_url(instance[:id]), :'data-ajax' => 'false'}
|
metadata
CHANGED
@@ -1,998 +1,981 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: deltacloud-core
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.5
|
5
5
|
prerelease:
|
6
|
-
segments:
|
7
|
-
- 1
|
8
|
-
- 0
|
9
|
-
- 4
|
10
|
-
version: 1.0.4
|
11
6
|
platform: ruby
|
12
|
-
authors:
|
7
|
+
authors:
|
13
8
|
- The Apache Software Foundation
|
14
9
|
autorequire:
|
15
10
|
bindir: bin
|
16
11
|
cert_chain: []
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
- !ruby/object:Gem::Dependency
|
21
|
-
requirement: &id001 !ruby/object:Gem::Requirement
|
22
|
-
none: false
|
23
|
-
requirements:
|
24
|
-
- - ">="
|
25
|
-
- !ruby/object:Gem::Version
|
26
|
-
hash: 49
|
27
|
-
segments:
|
28
|
-
- 0
|
29
|
-
- 8
|
30
|
-
- 7
|
31
|
-
version: 0.8.7
|
32
|
-
version_requirements: *id001
|
12
|
+
date: 2012-11-12 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
33
15
|
name: rake
|
34
|
-
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ! '>='
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: 0.8.7
|
35
22
|
type: :runtime
|
36
|
-
- !ruby/object:Gem::Dependency
|
37
|
-
requirement: &id002 !ruby/object:Gem::Requirement
|
38
|
-
none: false
|
39
|
-
requirements:
|
40
|
-
- - ">="
|
41
|
-
- !ruby/object:Gem::Version
|
42
|
-
hash: 37
|
43
|
-
segments:
|
44
|
-
- 2
|
45
|
-
- 2
|
46
|
-
- 17
|
47
|
-
version: 2.2.17
|
48
|
-
version_requirements: *id002
|
49
|
-
name: haml
|
50
23
|
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ! '>='
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: 0.8.7
|
30
|
+
- !ruby/object:Gem::Dependency
|
31
|
+
name: haml
|
32
|
+
requirement: !ruby/object:Gem::Requirement
|
33
|
+
none: false
|
34
|
+
requirements:
|
35
|
+
- - ! '>='
|
36
|
+
- !ruby/object:Gem::Version
|
37
|
+
version: 2.2.17
|
51
38
|
type: :runtime
|
52
|
-
- !ruby/object:Gem::Dependency
|
53
|
-
requirement: &id003 !ruby/object:Gem::Requirement
|
54
|
-
none: false
|
55
|
-
requirements:
|
56
|
-
- - ">="
|
57
|
-
- !ruby/object:Gem::Version
|
58
|
-
hash: 27
|
59
|
-
segments:
|
60
|
-
- 1
|
61
|
-
- 3
|
62
|
-
- 0
|
63
|
-
version: 1.3.0
|
64
|
-
version_requirements: *id003
|
65
|
-
name: sinatra
|
66
39
|
prerelease: false
|
40
|
+
version_requirements: !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
42
|
+
requirements:
|
43
|
+
- - ! '>='
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
version: 2.2.17
|
46
|
+
- !ruby/object:Gem::Dependency
|
47
|
+
name: sinatra
|
48
|
+
requirement: !ruby/object:Gem::Requirement
|
49
|
+
none: false
|
50
|
+
requirements:
|
51
|
+
- - ! '>='
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: 1.3.0
|
67
54
|
type: :runtime
|
68
|
-
- !ruby/object:Gem::Dependency
|
69
|
-
requirement: &id004 !ruby/object:Gem::Requirement
|
70
|
-
none: false
|
71
|
-
requirements:
|
72
|
-
- - ">="
|
73
|
-
- !ruby/object:Gem::Version
|
74
|
-
hash: 1
|
75
|
-
segments:
|
76
|
-
- 1
|
77
|
-
- 0
|
78
|
-
- 11
|
79
|
-
version: 1.0.11
|
80
|
-
version_requirements: *id004
|
81
|
-
name: sinatra-rabbit
|
82
55
|
prerelease: false
|
56
|
+
version_requirements: !ruby/object:Gem::Requirement
|
57
|
+
none: false
|
58
|
+
requirements:
|
59
|
+
- - ! '>='
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: 1.3.0
|
62
|
+
- !ruby/object:Gem::Dependency
|
63
|
+
name: sinatra-rabbit
|
64
|
+
requirement: !ruby/object:Gem::Requirement
|
65
|
+
none: false
|
66
|
+
requirements:
|
67
|
+
- - ! '>='
|
68
|
+
- !ruby/object:Gem::Version
|
69
|
+
version: 1.0.11
|
83
70
|
type: :runtime
|
84
|
-
- !ruby/object:Gem::Dependency
|
85
|
-
requirement: &id005 !ruby/object:Gem::Requirement
|
86
|
-
none: false
|
87
|
-
requirements:
|
88
|
-
- - ">="
|
89
|
-
- !ruby/object:Gem::Version
|
90
|
-
hash: 3
|
91
|
-
segments:
|
92
|
-
- 0
|
93
|
-
version: "0"
|
94
|
-
version_requirements: *id005
|
95
|
-
name: crack
|
96
71
|
prerelease: false
|
72
|
+
version_requirements: !ruby/object:Gem::Requirement
|
73
|
+
none: false
|
74
|
+
requirements:
|
75
|
+
- - ! '>='
|
76
|
+
- !ruby/object:Gem::Version
|
77
|
+
version: 1.0.11
|
78
|
+
- !ruby/object:Gem::Dependency
|
79
|
+
name: crack
|
80
|
+
requirement: !ruby/object:Gem::Requirement
|
81
|
+
none: false
|
82
|
+
requirements:
|
83
|
+
- - ! '>='
|
84
|
+
- !ruby/object:Gem::Version
|
85
|
+
version: '0'
|
97
86
|
type: :runtime
|
98
|
-
- !ruby/object:Gem::Dependency
|
99
|
-
requirement: &id006 !ruby/object:Gem::Requirement
|
100
|
-
none: false
|
101
|
-
requirements:
|
102
|
-
- - ">="
|
103
|
-
- !ruby/object:Gem::Version
|
104
|
-
hash: 23
|
105
|
-
segments:
|
106
|
-
- 1
|
107
|
-
- 0
|
108
|
-
- 0
|
109
|
-
version: 1.0.0
|
110
|
-
version_requirements: *id006
|
111
|
-
name: rack
|
112
87
|
prerelease: false
|
88
|
+
version_requirements: !ruby/object:Gem::Requirement
|
89
|
+
none: false
|
90
|
+
requirements:
|
91
|
+
- - ! '>='
|
92
|
+
- !ruby/object:Gem::Version
|
93
|
+
version: '0'
|
94
|
+
- !ruby/object:Gem::Dependency
|
95
|
+
name: rack
|
96
|
+
requirement: !ruby/object:Gem::Requirement
|
97
|
+
none: false
|
98
|
+
requirements:
|
99
|
+
- - ! '>='
|
100
|
+
- !ruby/object:Gem::Version
|
101
|
+
version: 1.0.0
|
113
102
|
type: :runtime
|
114
|
-
- !ruby/object:Gem::Dependency
|
115
|
-
requirement: &id007 !ruby/object:Gem::Requirement
|
116
|
-
none: false
|
117
|
-
requirements:
|
118
|
-
- - ">="
|
119
|
-
- !ruby/object:Gem::Version
|
120
|
-
hash: 3
|
121
|
-
segments:
|
122
|
-
- 0
|
123
|
-
version: "0"
|
124
|
-
version_requirements: *id007
|
125
|
-
name: rack-accept
|
126
103
|
prerelease: false
|
104
|
+
version_requirements: !ruby/object:Gem::Requirement
|
105
|
+
none: false
|
106
|
+
requirements:
|
107
|
+
- - ! '>='
|
108
|
+
- !ruby/object:Gem::Version
|
109
|
+
version: 1.0.0
|
110
|
+
- !ruby/object:Gem::Dependency
|
111
|
+
name: rack-accept
|
112
|
+
requirement: !ruby/object:Gem::Requirement
|
113
|
+
none: false
|
114
|
+
requirements:
|
115
|
+
- - ! '>='
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: '0'
|
127
118
|
type: :runtime
|
128
|
-
- !ruby/object:Gem::Dependency
|
129
|
-
requirement: &id008 !ruby/object:Gem::Requirement
|
130
|
-
none: false
|
131
|
-
requirements:
|
132
|
-
- - ">="
|
133
|
-
- !ruby/object:Gem::Version
|
134
|
-
hash: 1
|
135
|
-
segments:
|
136
|
-
- 1
|
137
|
-
- 1
|
138
|
-
- 9
|
139
|
-
version: 1.1.9
|
140
|
-
version_requirements: *id008
|
141
|
-
name: json
|
142
119
|
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
none: false
|
122
|
+
requirements:
|
123
|
+
- - ! '>='
|
124
|
+
- !ruby/object:Gem::Version
|
125
|
+
version: '0'
|
126
|
+
- !ruby/object:Gem::Dependency
|
127
|
+
name: json
|
128
|
+
requirement: !ruby/object:Gem::Requirement
|
129
|
+
none: false
|
130
|
+
requirements:
|
131
|
+
- - ! '>='
|
132
|
+
- !ruby/object:Gem::Version
|
133
|
+
version: 1.1.9
|
143
134
|
type: :runtime
|
144
|
-
- !ruby/object:Gem::Dependency
|
145
|
-
requirement: &id009 !ruby/object:Gem::Requirement
|
146
|
-
none: false
|
147
|
-
requirements:
|
148
|
-
- - ">="
|
149
|
-
- !ruby/object:Gem::Version
|
150
|
-
hash: 15
|
151
|
-
segments:
|
152
|
-
- 2
|
153
|
-
- 0
|
154
|
-
- 0
|
155
|
-
version: 2.0.0
|
156
|
-
version_requirements: *id009
|
157
|
-
name: net-ssh
|
158
135
|
prerelease: false
|
136
|
+
version_requirements: !ruby/object:Gem::Requirement
|
137
|
+
none: false
|
138
|
+
requirements:
|
139
|
+
- - ! '>='
|
140
|
+
- !ruby/object:Gem::Version
|
141
|
+
version: 1.1.9
|
142
|
+
- !ruby/object:Gem::Dependency
|
143
|
+
name: net-ssh
|
144
|
+
requirement: !ruby/object:Gem::Requirement
|
145
|
+
none: false
|
146
|
+
requirements:
|
147
|
+
- - ! '>='
|
148
|
+
- !ruby/object:Gem::Version
|
149
|
+
version: 2.0.0
|
159
150
|
type: :runtime
|
160
|
-
- !ruby/object:Gem::Dependency
|
161
|
-
requirement: &id010 !ruby/object:Gem::Requirement
|
162
|
-
none: false
|
163
|
-
requirements:
|
164
|
-
- - ">="
|
165
|
-
- !ruby/object:Gem::Version
|
166
|
-
hash: 21
|
167
|
-
segments:
|
168
|
-
- 1
|
169
|
-
- 2
|
170
|
-
- 5
|
171
|
-
version: 1.2.5
|
172
|
-
version_requirements: *id010
|
173
|
-
name: thin
|
174
151
|
prerelease: false
|
152
|
+
version_requirements: !ruby/object:Gem::Requirement
|
153
|
+
none: false
|
154
|
+
requirements:
|
155
|
+
- - ! '>='
|
156
|
+
- !ruby/object:Gem::Version
|
157
|
+
version: 2.0.0
|
158
|
+
- !ruby/object:Gem::Dependency
|
159
|
+
name: thin
|
160
|
+
requirement: !ruby/object:Gem::Requirement
|
161
|
+
none: false
|
162
|
+
requirements:
|
163
|
+
- - ! '>='
|
164
|
+
- !ruby/object:Gem::Version
|
165
|
+
version: 1.2.5
|
175
166
|
type: :runtime
|
176
|
-
- !ruby/object:Gem::Dependency
|
177
|
-
requirement: &id011 !ruby/object:Gem::Requirement
|
178
|
-
none: false
|
179
|
-
requirements:
|
180
|
-
- - ">="
|
181
|
-
- !ruby/object:Gem::Version
|
182
|
-
hash: 1
|
183
|
-
segments:
|
184
|
-
- 1
|
185
|
-
- 4
|
186
|
-
- 3
|
187
|
-
version: 1.4.3
|
188
|
-
version_requirements: *id011
|
189
|
-
name: nokogiri
|
190
167
|
prerelease: false
|
168
|
+
version_requirements: !ruby/object:Gem::Requirement
|
169
|
+
none: false
|
170
|
+
requirements:
|
171
|
+
- - ! '>='
|
172
|
+
- !ruby/object:Gem::Version
|
173
|
+
version: 1.2.5
|
174
|
+
- !ruby/object:Gem::Dependency
|
175
|
+
name: nokogiri
|
176
|
+
requirement: !ruby/object:Gem::Requirement
|
177
|
+
none: false
|
178
|
+
requirements:
|
179
|
+
- - ! '>='
|
180
|
+
- !ruby/object:Gem::Version
|
181
|
+
version: 1.4.3
|
191
182
|
type: :runtime
|
192
|
-
- !ruby/object:Gem::Dependency
|
193
|
-
requirement: &id012 !ruby/object:Gem::Requirement
|
194
|
-
none: false
|
195
|
-
requirements:
|
196
|
-
- - ">="
|
197
|
-
- !ruby/object:Gem::Version
|
198
|
-
hash: 3
|
199
|
-
segments:
|
200
|
-
- 0
|
201
|
-
version: "0"
|
202
|
-
version_requirements: *id012
|
203
|
-
name: require_relative
|
204
183
|
prerelease: false
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
hash: 7
|
213
|
-
segments:
|
214
|
-
- 0
|
215
|
-
- 0
|
216
|
-
- 12
|
217
|
-
version: 0.0.12
|
218
|
-
version_requirements: *id013
|
184
|
+
version_requirements: !ruby/object:Gem::Requirement
|
185
|
+
none: false
|
186
|
+
requirements:
|
187
|
+
- - ! '>='
|
188
|
+
- !ruby/object:Gem::Version
|
189
|
+
version: 1.4.3
|
190
|
+
- !ruby/object:Gem::Dependency
|
219
191
|
name: rbovirt
|
220
|
-
|
192
|
+
requirement: !ruby/object:Gem::Requirement
|
193
|
+
none: false
|
194
|
+
requirements:
|
195
|
+
- - ! '>='
|
196
|
+
- !ruby/object:Gem::Version
|
197
|
+
version: 0.0.13
|
221
198
|
type: :runtime
|
222
|
-
- !ruby/object:Gem::Dependency
|
223
|
-
requirement: &id014 !ruby/object:Gem::Requirement
|
224
|
-
none: false
|
225
|
-
requirements:
|
226
|
-
- - ">="
|
227
|
-
- !ruby/object:Gem::Version
|
228
|
-
hash: 19
|
229
|
-
segments:
|
230
|
-
- 2
|
231
|
-
- 5
|
232
|
-
- 4
|
233
|
-
version: 2.5.4
|
234
|
-
version_requirements: *id014
|
235
|
-
name: aws
|
236
199
|
prerelease: false
|
200
|
+
version_requirements: !ruby/object:Gem::Requirement
|
201
|
+
none: false
|
202
|
+
requirements:
|
203
|
+
- - ! '>='
|
204
|
+
- !ruby/object:Gem::Version
|
205
|
+
version: 0.0.13
|
206
|
+
- !ruby/object:Gem::Dependency
|
207
|
+
name: aws
|
208
|
+
requirement: !ruby/object:Gem::Requirement
|
209
|
+
none: false
|
210
|
+
requirements:
|
211
|
+
- - ! '>='
|
212
|
+
- !ruby/object:Gem::Version
|
213
|
+
version: 2.5.4
|
237
214
|
type: :runtime
|
238
|
-
- !ruby/object:Gem::Dependency
|
239
|
-
requirement: &id015 !ruby/object:Gem::Requirement
|
240
|
-
none: false
|
241
|
-
requirements:
|
242
|
-
- - ">="
|
243
|
-
- !ruby/object:Gem::Version
|
244
|
-
hash: 19
|
245
|
-
segments:
|
246
|
-
- 1
|
247
|
-
- 1
|
248
|
-
- 0
|
249
|
-
version: 1.1.0
|
250
|
-
version_requirements: *id015
|
251
|
-
name: waz-storage
|
252
215
|
prerelease: false
|
216
|
+
version_requirements: !ruby/object:Gem::Requirement
|
217
|
+
none: false
|
218
|
+
requirements:
|
219
|
+
- - ! '>='
|
220
|
+
- !ruby/object:Gem::Version
|
221
|
+
version: 2.5.4
|
222
|
+
- !ruby/object:Gem::Dependency
|
223
|
+
name: waz-storage
|
224
|
+
requirement: !ruby/object:Gem::Requirement
|
225
|
+
none: false
|
226
|
+
requirements:
|
227
|
+
- - ! '>='
|
228
|
+
- !ruby/object:Gem::Version
|
229
|
+
version: 1.1.0
|
253
230
|
type: :runtime
|
254
|
-
- !ruby/object:Gem::Dependency
|
255
|
-
requirement: &id016 !ruby/object:Gem::Requirement
|
256
|
-
none: false
|
257
|
-
requirements:
|
258
|
-
- - ">="
|
259
|
-
- !ruby/object:Gem::Version
|
260
|
-
hash: 3
|
261
|
-
segments:
|
262
|
-
- 0
|
263
|
-
version: "0"
|
264
|
-
version_requirements: *id016
|
265
|
-
name: cloudservers
|
266
231
|
prerelease: false
|
232
|
+
version_requirements: !ruby/object:Gem::Requirement
|
233
|
+
none: false
|
234
|
+
requirements:
|
235
|
+
- - ! '>='
|
236
|
+
- !ruby/object:Gem::Version
|
237
|
+
version: 1.1.0
|
238
|
+
- !ruby/object:Gem::Dependency
|
239
|
+
name: cloudservers
|
240
|
+
requirement: !ruby/object:Gem::Requirement
|
241
|
+
none: false
|
242
|
+
requirements:
|
243
|
+
- - ! '>='
|
244
|
+
- !ruby/object:Gem::Version
|
245
|
+
version: '0'
|
267
246
|
type: :runtime
|
268
|
-
- !ruby/object:Gem::Dependency
|
269
|
-
requirement: &id017 !ruby/object:Gem::Requirement
|
270
|
-
none: false
|
271
|
-
requirements:
|
272
|
-
- - ">="
|
273
|
-
- !ruby/object:Gem::Version
|
274
|
-
hash: 3
|
275
|
-
segments:
|
276
|
-
- 0
|
277
|
-
version: "0"
|
278
|
-
version_requirements: *id017
|
279
|
-
name: cloudfiles
|
280
247
|
prerelease: false
|
248
|
+
version_requirements: !ruby/object:Gem::Requirement
|
249
|
+
none: false
|
250
|
+
requirements:
|
251
|
+
- - ! '>='
|
252
|
+
- !ruby/object:Gem::Version
|
253
|
+
version: '0'
|
254
|
+
- !ruby/object:Gem::Dependency
|
255
|
+
name: cloudfiles
|
256
|
+
requirement: !ruby/object:Gem::Requirement
|
257
|
+
none: false
|
258
|
+
requirements:
|
259
|
+
- - ! '>='
|
260
|
+
- !ruby/object:Gem::Version
|
261
|
+
version: '0'
|
281
262
|
type: :runtime
|
282
|
-
- !ruby/object:Gem::Dependency
|
283
|
-
requirement: &id018 !ruby/object:Gem::Requirement
|
284
|
-
none: false
|
285
|
-
requirements:
|
286
|
-
- - ">="
|
287
|
-
- !ruby/object:Gem::Version
|
288
|
-
hash: 7
|
289
|
-
segments:
|
290
|
-
- 1
|
291
|
-
- 4
|
292
|
-
- 0
|
293
|
-
version: 1.4.0
|
294
|
-
version_requirements: *id018
|
295
|
-
name: fog
|
296
263
|
prerelease: false
|
264
|
+
version_requirements: !ruby/object:Gem::Requirement
|
265
|
+
none: false
|
266
|
+
requirements:
|
267
|
+
- - ! '>='
|
268
|
+
- !ruby/object:Gem::Version
|
269
|
+
version: '0'
|
270
|
+
- !ruby/object:Gem::Dependency
|
271
|
+
name: fog
|
272
|
+
requirement: !ruby/object:Gem::Requirement
|
273
|
+
none: false
|
274
|
+
requirements:
|
275
|
+
- - ! '>='
|
276
|
+
- !ruby/object:Gem::Version
|
277
|
+
version: 1.4.0
|
297
278
|
type: :runtime
|
298
|
-
- !ruby/object:Gem::Dependency
|
299
|
-
requirement: &id019 !ruby/object:Gem::Requirement
|
300
|
-
none: false
|
301
|
-
requirements:
|
302
|
-
- - ">="
|
303
|
-
- !ruby/object:Gem::Version
|
304
|
-
hash: 35
|
305
|
-
segments:
|
306
|
-
- 0
|
307
|
-
- 14
|
308
|
-
- 2
|
309
|
-
version: 0.14.2
|
310
|
-
version_requirements: *id019
|
311
|
-
name: excon
|
312
279
|
prerelease: false
|
280
|
+
version_requirements: !ruby/object:Gem::Requirement
|
281
|
+
none: false
|
282
|
+
requirements:
|
283
|
+
- - ! '>='
|
284
|
+
- !ruby/object:Gem::Version
|
285
|
+
version: 1.4.0
|
286
|
+
- !ruby/object:Gem::Dependency
|
287
|
+
name: excon
|
288
|
+
requirement: !ruby/object:Gem::Requirement
|
289
|
+
none: false
|
290
|
+
requirements:
|
291
|
+
- - ! '>='
|
292
|
+
- !ruby/object:Gem::Version
|
293
|
+
version: 0.14.2
|
313
294
|
type: :runtime
|
314
|
-
- !ruby/object:Gem::Dependency
|
315
|
-
requirement: &id020 !ruby/object:Gem::Requirement
|
316
|
-
none: false
|
317
|
-
requirements:
|
318
|
-
- - ">="
|
319
|
-
- !ruby/object:Gem::Version
|
320
|
-
hash: 3
|
321
|
-
segments:
|
322
|
-
- 0
|
323
|
-
version: "0"
|
324
|
-
version_requirements: *id020
|
325
|
-
name: rest-client
|
326
295
|
prerelease: false
|
296
|
+
version_requirements: !ruby/object:Gem::Requirement
|
297
|
+
none: false
|
298
|
+
requirements:
|
299
|
+
- - ! '>='
|
300
|
+
- !ruby/object:Gem::Version
|
301
|
+
version: 0.14.2
|
302
|
+
- !ruby/object:Gem::Dependency
|
303
|
+
name: rest-client
|
304
|
+
requirement: !ruby/object:Gem::Requirement
|
305
|
+
none: false
|
306
|
+
requirements:
|
307
|
+
- - ! '>='
|
308
|
+
- !ruby/object:Gem::Version
|
309
|
+
version: '0'
|
327
310
|
type: :runtime
|
328
|
-
- !ruby/object:Gem::Dependency
|
329
|
-
requirement: &id021 !ruby/object:Gem::Requirement
|
330
|
-
none: false
|
331
|
-
requirements:
|
332
|
-
- - ">="
|
333
|
-
- !ruby/object:Gem::Version
|
334
|
-
hash: 9
|
335
|
-
segments:
|
336
|
-
- 2
|
337
|
-
- 1
|
338
|
-
- 1
|
339
|
-
version: 2.1.1
|
340
|
-
version_requirements: *id021
|
341
|
-
name: uuidtools
|
342
311
|
prerelease: false
|
312
|
+
version_requirements: !ruby/object:Gem::Requirement
|
313
|
+
none: false
|
314
|
+
requirements:
|
315
|
+
- - ! '>='
|
316
|
+
- !ruby/object:Gem::Version
|
317
|
+
version: '0'
|
318
|
+
- !ruby/object:Gem::Dependency
|
319
|
+
name: uuidtools
|
320
|
+
requirement: !ruby/object:Gem::Requirement
|
321
|
+
none: false
|
322
|
+
requirements:
|
323
|
+
- - ! '>='
|
324
|
+
- !ruby/object:Gem::Version
|
325
|
+
version: 2.1.1
|
343
326
|
type: :runtime
|
344
|
-
- !ruby/object:Gem::Dependency
|
345
|
-
requirement: &id022 !ruby/object:Gem::Requirement
|
346
|
-
none: false
|
347
|
-
requirements:
|
348
|
-
- - ">="
|
349
|
-
- !ruby/object:Gem::Version
|
350
|
-
hash: 31
|
351
|
-
segments:
|
352
|
-
- 1
|
353
|
-
- 0
|
354
|
-
- 4
|
355
|
-
version: 1.0.4
|
356
|
-
version_requirements: *id022
|
357
|
-
name: openstack
|
358
327
|
prerelease: false
|
328
|
+
version_requirements: !ruby/object:Gem::Requirement
|
329
|
+
none: false
|
330
|
+
requirements:
|
331
|
+
- - ! '>='
|
332
|
+
- !ruby/object:Gem::Version
|
333
|
+
version: 2.1.1
|
334
|
+
- !ruby/object:Gem::Dependency
|
335
|
+
name: openstack
|
336
|
+
requirement: !ruby/object:Gem::Requirement
|
337
|
+
none: false
|
338
|
+
requirements:
|
339
|
+
- - ! '>='
|
340
|
+
- !ruby/object:Gem::Version
|
341
|
+
version: 1.0.6
|
359
342
|
type: :runtime
|
360
|
-
- !ruby/object:Gem::Dependency
|
361
|
-
requirement: &id023 !ruby/object:Gem::Requirement
|
362
|
-
none: false
|
363
|
-
requirements:
|
364
|
-
- - ">="
|
365
|
-
- !ruby/object:Gem::Version
|
366
|
-
hash: 23
|
367
|
-
segments:
|
368
|
-
- 1
|
369
|
-
- 0
|
370
|
-
- 0
|
371
|
-
version: 1.0.0
|
372
|
-
version_requirements: *id023
|
373
|
-
name: savon
|
374
343
|
prerelease: false
|
344
|
+
version_requirements: !ruby/object:Gem::Requirement
|
345
|
+
none: false
|
346
|
+
requirements:
|
347
|
+
- - ! '>='
|
348
|
+
- !ruby/object:Gem::Version
|
349
|
+
version: 1.0.6
|
350
|
+
- !ruby/object:Gem::Dependency
|
351
|
+
name: savon
|
352
|
+
requirement: !ruby/object:Gem::Requirement
|
353
|
+
none: false
|
354
|
+
requirements:
|
355
|
+
- - ! '>='
|
356
|
+
- !ruby/object:Gem::Version
|
357
|
+
version: 1.0.0
|
375
358
|
type: :runtime
|
376
|
-
- !ruby/object:Gem::Dependency
|
377
|
-
requirement: &id024 !ruby/object:Gem::Requirement
|
378
|
-
none: false
|
379
|
-
requirements:
|
380
|
-
- - ">="
|
381
|
-
- !ruby/object:Gem::Version
|
382
|
-
hash: 3
|
383
|
-
segments:
|
384
|
-
- 0
|
385
|
-
version: "0"
|
386
|
-
version_requirements: *id024
|
387
|
-
name: rbvmomi
|
388
359
|
prerelease: false
|
360
|
+
version_requirements: !ruby/object:Gem::Requirement
|
361
|
+
none: false
|
362
|
+
requirements:
|
363
|
+
- - ! '>='
|
364
|
+
- !ruby/object:Gem::Version
|
365
|
+
version: 1.0.0
|
366
|
+
- !ruby/object:Gem::Dependency
|
367
|
+
name: rbvmomi
|
368
|
+
requirement: !ruby/object:Gem::Requirement
|
369
|
+
none: false
|
370
|
+
requirements:
|
371
|
+
- - ! '>='
|
372
|
+
- !ruby/object:Gem::Version
|
373
|
+
version: '0'
|
389
374
|
type: :runtime
|
390
|
-
|
375
|
+
prerelease: false
|
376
|
+
version_requirements: !ruby/object:Gem::Requirement
|
377
|
+
none: false
|
378
|
+
requirements:
|
379
|
+
- - ! '>='
|
380
|
+
- !ruby/object:Gem::Version
|
381
|
+
version: '0'
|
382
|
+
description: ! " The Deltacloud API is built as a service-based REST API.\n You
|
383
|
+
do not directly link a Deltacloud library into your program to use it.\n Instead,
|
384
|
+
a client speaks the Deltacloud API over HTTP to a server\n which implements the
|
385
|
+
REST interface.\n"
|
391
386
|
email: dev@deltacloud.apache.org
|
392
|
-
executables:
|
387
|
+
executables:
|
393
388
|
- deltacloudd
|
394
389
|
extensions: []
|
395
|
-
|
396
|
-
extra_rdoc_files:
|
390
|
+
extra_rdoc_files:
|
397
391
|
- LICENSE
|
398
392
|
- NOTICE
|
399
|
-
files:
|
393
|
+
files:
|
400
394
|
- Rakefile
|
401
395
|
- deltacloud-core.gemspec
|
402
396
|
- config.ru
|
397
|
+
- config/drivers/aruba.yaml
|
403
398
|
- config/drivers/azure.yaml
|
404
|
-
- config/drivers/
|
399
|
+
- config/drivers/ec2.yaml
|
400
|
+
- config/drivers/rackspace.yaml
|
405
401
|
- config/drivers/terremark.yaml
|
406
|
-
- config/drivers/
|
402
|
+
- config/drivers/openstack.yaml
|
403
|
+
- config/drivers/fgcp.yaml
|
404
|
+
- config/drivers/eucalyptus.yaml
|
405
|
+
- config/drivers/sbc.yaml
|
407
406
|
- config/drivers/mock.yaml
|
407
|
+
- config/drivers/condor.yaml
|
408
|
+
- config/drivers/rhevm.yaml
|
409
|
+
- config/drivers/google.yaml
|
408
410
|
- config/drivers/opennebula.yaml
|
409
|
-
- config/drivers/
|
411
|
+
- config/drivers/vsphere.yaml
|
410
412
|
- config/drivers/gogrid.yaml
|
411
|
-
- config/drivers/aruba.yaml
|
412
|
-
- config/drivers/rackspace.yaml
|
413
|
-
- config/drivers/condor.yaml
|
414
413
|
- config/drivers/rimuhosting.yaml
|
415
|
-
- config/drivers/eucalyptus.yaml
|
416
|
-
- config/drivers/openstack.yaml
|
417
|
-
- config/drivers/google.yaml
|
418
|
-
- config/drivers/sbc.yaml
|
419
|
-
- config/drivers/ec2.yaml
|
420
414
|
- config/condor.yaml
|
421
415
|
- config/addresses.xml
|
416
|
+
- support/fedora/deltacloud-core-config
|
422
417
|
- support/fedora/deltacloud-core.init
|
423
418
|
- support/fedora/deltacloud-core.spec
|
424
419
|
- support/fedora/deltacloudd-fedora
|
425
|
-
- support/fedora/deltacloud-core-config
|
426
|
-
- support/condor/bash/cloud_exit_hook.sh
|
427
|
-
- support/condor/bash/cloud_prepare_hook.sh
|
428
420
|
- support/condor/bash/libvirt_cloud_script.sh
|
429
421
|
- support/condor/bash/cloud_functions
|
422
|
+
- support/condor/bash/cloud_exit_hook.sh
|
423
|
+
- support/condor/bash/cloud_prepare_hook.sh
|
430
424
|
- support/condor/bash/cached_images.sh
|
431
|
-
- support/condor/config/50condor_cloud.config
|
432
425
|
- support/condor/config/condor_config.local
|
433
|
-
- support/condor/config/50condor_cloud_node.config
|
434
426
|
- support/condor/config/condor-cloud
|
435
|
-
-
|
436
|
-
-
|
437
|
-
- lib/
|
438
|
-
- lib/
|
439
|
-
- lib/
|
440
|
-
- lib/
|
441
|
-
- lib/
|
442
|
-
- lib/
|
443
|
-
- lib/cimi/
|
444
|
-
- lib/cimi/
|
445
|
-
- lib/cimi/
|
446
|
-
- lib/cimi/
|
447
|
-
- lib/cimi/
|
448
|
-
- lib/cimi/
|
449
|
-
- lib/cimi/
|
450
|
-
- lib/cimi/collections/network_configurations.rb
|
451
|
-
- lib/cimi/collections/resource_metadata.rb
|
452
|
-
- lib/cimi/collections/forwarding_group_templates.rb
|
453
|
-
- lib/cimi/collections/address_templates.rb
|
454
|
-
- lib/cimi/collections/base.rb
|
455
|
-
- lib/cimi/models/action.rb
|
427
|
+
- support/condor/config/50condor_cloud.config
|
428
|
+
- support/condor/config/50condor_cloud_node.config
|
429
|
+
- lib/deltacloud_rack.rb
|
430
|
+
- lib/ec2/helpers.rb
|
431
|
+
- lib/ec2/server.rb
|
432
|
+
- lib/ec2/query_parser.rb
|
433
|
+
- lib/ec2/helpers/result.rb
|
434
|
+
- lib/ec2/helpers/errors.rb
|
435
|
+
- lib/cimi/helpers.rb
|
436
|
+
- lib/cimi/server.rb
|
437
|
+
- lib/cimi/dependencies.rb
|
438
|
+
- lib/cimi/models.rb
|
439
|
+
- lib/cimi/helpers/cimi_helper.rb
|
440
|
+
- lib/cimi/models/volume_image.rb
|
441
|
+
- lib/cimi/models/network_port_configuration.rb
|
456
442
|
- lib/cimi/models/network.rb
|
457
|
-
- lib/cimi/models/
|
458
|
-
- lib/cimi/models/address_template.rb
|
459
|
-
- lib/cimi/models/disk_collection.rb
|
460
|
-
- lib/cimi/models/network_port_configuration_collection.rb
|
443
|
+
- lib/cimi/models/forwarding_group.rb
|
461
444
|
- lib/cimi/models/volume.rb
|
462
|
-
- lib/cimi/models/
|
463
|
-
- lib/cimi/models/
|
464
|
-
- lib/cimi/models/network_port_template.rb
|
465
|
-
- lib/cimi/models/errors.rb
|
466
|
-
- lib/cimi/models/disk.rb
|
467
|
-
- lib/cimi/models/network_port_collection.rb
|
468
|
-
- lib/cimi/models/credential.rb
|
469
|
-
- lib/cimi/models/address.rb
|
470
|
-
- lib/cimi/models/machine_volume.rb
|
445
|
+
- lib/cimi/models/base.rb
|
446
|
+
- lib/cimi/models/machine_configuration.rb
|
471
447
|
- lib/cimi/models/collection.rb
|
472
|
-
- lib/cimi/models/cloud_entry_point.rb
|
473
|
-
- lib/cimi/models/network_template.rb
|
474
|
-
- lib/cimi/models/volume_configuration.rb
|
475
448
|
- lib/cimi/models/volume_template.rb
|
476
|
-
- lib/cimi/models/
|
449
|
+
- lib/cimi/models/machine_template.rb
|
450
|
+
- lib/cimi/models/network_port.rb
|
451
|
+
- lib/cimi/models/forwarding_group_template.rb
|
452
|
+
- lib/cimi/models/machine.rb
|
453
|
+
- lib/cimi/models/volume_configuration.rb
|
454
|
+
- lib/cimi/models/cloud_entry_point.rb
|
477
455
|
- lib/cimi/models/network_configuration.rb
|
456
|
+
- lib/cimi/models/address_template.rb
|
457
|
+
- lib/cimi/models/action.rb
|
458
|
+
- lib/cimi/models/machine_image.rb
|
478
459
|
- lib/cimi/models/schema.rb
|
479
|
-
- lib/cimi/models/
|
480
|
-
- lib/cimi/models/
|
481
|
-
- lib/cimi/models/
|
482
|
-
- lib/cimi/models/
|
483
|
-
- lib/cimi/models/
|
484
|
-
- lib/cimi/models/
|
460
|
+
- lib/cimi/models/address.rb
|
461
|
+
- lib/cimi/models/credential.rb
|
462
|
+
- lib/cimi/models/network_port_template.rb
|
463
|
+
- lib/cimi/models/network_template.rb
|
464
|
+
- lib/cimi/models/disk.rb
|
465
|
+
- lib/cimi/models/errors.rb
|
466
|
+
- lib/cimi/models/machine_volume.rb
|
485
467
|
- lib/cimi/models/resource_metadata.rb
|
486
|
-
- lib/cimi/models/base.rb
|
487
|
-
- lib/cimi/models/machine_configuration.rb
|
488
|
-
- lib/cimi/models.rb
|
489
|
-
- lib/cimi/server.rb
|
490
468
|
- lib/cimi/collections.rb
|
491
|
-
- lib/cimi/
|
492
|
-
- lib/cimi/
|
493
|
-
- lib/cimi/
|
494
|
-
- lib/
|
495
|
-
- lib/
|
496
|
-
- lib/
|
497
|
-
- lib/
|
498
|
-
- lib/
|
499
|
-
- lib/
|
500
|
-
- lib/
|
501
|
-
- lib/
|
502
|
-
- lib/
|
503
|
-
- lib/
|
504
|
-
- lib/
|
505
|
-
- lib/
|
506
|
-
- lib/
|
507
|
-
- lib/
|
508
|
-
- lib/
|
509
|
-
- lib/
|
510
|
-
- lib/
|
511
|
-
- lib/
|
512
|
-
- lib/
|
469
|
+
- lib/cimi/collections/credentials.rb
|
470
|
+
- lib/cimi/collections/base.rb
|
471
|
+
- lib/cimi/collections/machine_images.rb
|
472
|
+
- lib/cimi/collections/network_ports.rb
|
473
|
+
- lib/cimi/collections/address_templates.rb
|
474
|
+
- lib/cimi/collections/forwarding_group_templates.rb
|
475
|
+
- lib/cimi/collections/forwarding_groups.rb
|
476
|
+
- lib/cimi/collections/network_templates.rb
|
477
|
+
- lib/cimi/collections/volume_images.rb
|
478
|
+
- lib/cimi/collections/cloud_entry_point.rb
|
479
|
+
- lib/cimi/collections/network_port_configurations.rb
|
480
|
+
- lib/cimi/collections/machines.rb
|
481
|
+
- lib/cimi/collections/volume_configurations.rb
|
482
|
+
- lib/cimi/collections/network_configurations.rb
|
483
|
+
- lib/cimi/collections/addresses.rb
|
484
|
+
- lib/cimi/collections/resource_metadata.rb
|
485
|
+
- lib/cimi/collections/networks.rb
|
486
|
+
- lib/cimi/collections/volumes.rb
|
487
|
+
- lib/cimi/collections/machine_configurations.rb
|
488
|
+
- lib/cimi/collections/network_port_templates.rb
|
489
|
+
- lib/sinatra/rack_accept.rb
|
490
|
+
- lib/sinatra/rack_driver_select.rb
|
491
|
+
- lib/sinatra/rack_date.rb
|
492
|
+
- lib/sinatra/rack_matrix_params.rb
|
493
|
+
- lib/sinatra/rack_logger.rb
|
494
|
+
- lib/sinatra/body_proxy.rb
|
495
|
+
- lib/sinatra/rack_etag.rb
|
496
|
+
- lib/deltacloud/helpers.rb
|
497
|
+
- lib/deltacloud/server.rb
|
498
|
+
- lib/deltacloud/api.rb
|
499
|
+
- lib/deltacloud/core_ext/hash.rb
|
500
|
+
- lib/deltacloud/core_ext/base.rb
|
501
|
+
- lib/deltacloud/core_ext/integer.rb
|
502
|
+
- lib/deltacloud/core_ext/string.rb
|
503
|
+
- lib/deltacloud/core_ext/proc.rb
|
504
|
+
- lib/deltacloud/core_ext/array.rb
|
505
|
+
- lib/deltacloud/core_ext/ordered_hash.rb
|
506
|
+
- lib/deltacloud/models.rb
|
507
|
+
- lib/deltacloud/helpers/blob_stream_helper.rb
|
508
|
+
- lib/deltacloud/helpers/auth_helper.rb
|
509
|
+
- lib/deltacloud/helpers/rabbit_helper.rb
|
510
|
+
- lib/deltacloud/helpers/deltacloud_helper.rb
|
511
|
+
- lib/deltacloud/helpers/driver_helper.rb
|
512
|
+
- lib/deltacloud/core_ext.rb
|
513
513
|
- lib/deltacloud/models/instance_address.rb
|
514
|
-
- lib/deltacloud/models/
|
514
|
+
- lib/deltacloud/models/hardware_profile.rb
|
515
515
|
- lib/deltacloud/models/firewall.rb
|
516
|
-
- lib/deltacloud/models/
|
517
|
-
- lib/deltacloud/models/load_balancer.rb
|
518
|
-
- lib/deltacloud/models/instance_profile.rb
|
516
|
+
- lib/deltacloud/models/base_model.rb
|
519
517
|
- lib/deltacloud/models/blob.rb
|
520
|
-
- lib/deltacloud/models/
|
521
|
-
- lib/deltacloud/models/key.rb
|
522
|
-
- lib/deltacloud/models/state_machine.rb
|
518
|
+
- lib/deltacloud/models/realm.rb
|
523
519
|
- lib/deltacloud/models/metric.rb
|
524
|
-
- lib/deltacloud/models/
|
520
|
+
- lib/deltacloud/models/load_balancer.rb
|
521
|
+
- lib/deltacloud/models/storage_volume.rb
|
522
|
+
- lib/deltacloud/models/image.rb
|
523
|
+
- lib/deltacloud/models/instance.rb
|
524
|
+
- lib/deltacloud/models/firewall_rule.rb
|
525
525
|
- lib/deltacloud/models/bucket.rb
|
526
526
|
- lib/deltacloud/models/provider.rb
|
527
|
-
- lib/deltacloud/models/
|
528
|
-
- lib/deltacloud/models.rb
|
529
|
-
- lib/deltacloud/
|
530
|
-
- lib/deltacloud/
|
531
|
-
- lib/deltacloud/
|
532
|
-
- lib/deltacloud/core_ext/ordered_hash.rb
|
533
|
-
- lib/deltacloud/core_ext/proc.rb
|
534
|
-
- lib/deltacloud/core_ext/string.rb
|
535
|
-
- lib/deltacloud/core_ext/integer.rb
|
536
|
-
- lib/deltacloud/core_ext/hash.rb
|
527
|
+
- lib/deltacloud/models/key.rb
|
528
|
+
- lib/deltacloud/models/state_machine.rb
|
529
|
+
- lib/deltacloud/models/address.rb
|
530
|
+
- lib/deltacloud/models/instance_profile.rb
|
531
|
+
- lib/deltacloud/models/storage_snapshot.rb
|
537
532
|
- lib/deltacloud/version.rb
|
538
533
|
- lib/deltacloud/collections.rb
|
539
|
-
- lib/deltacloud/
|
540
|
-
- lib/deltacloud/
|
541
|
-
- lib/deltacloud/
|
542
|
-
- lib/deltacloud/
|
543
|
-
- lib/deltacloud/
|
544
|
-
- lib/deltacloud/
|
545
|
-
- lib/deltacloud/
|
534
|
+
- lib/deltacloud/collections/instance_states.rb
|
535
|
+
- lib/deltacloud/collections/storage_volumes.rb
|
536
|
+
- lib/deltacloud/collections/firewalls.rb
|
537
|
+
- lib/deltacloud/collections/metrics.rb
|
538
|
+
- lib/deltacloud/collections/hardware_profiles.rb
|
539
|
+
- lib/deltacloud/collections/base.rb
|
540
|
+
- lib/deltacloud/collections/instances.rb
|
541
|
+
- lib/deltacloud/collections/realms.rb
|
542
|
+
- lib/deltacloud/collections/storage_snapshots.rb
|
543
|
+
- lib/deltacloud/collections/images.rb
|
544
|
+
- lib/deltacloud/collections/addresses.rb
|
545
|
+
- lib/deltacloud/collections/drivers.rb
|
546
|
+
- lib/deltacloud/collections/buckets.rb
|
547
|
+
- lib/deltacloud/collections/keys.rb
|
548
|
+
- lib/deltacloud/collections/load_balancers.rb
|
546
549
|
- lib/deltacloud/runner.rb
|
547
|
-
- lib/deltacloud/drivers
|
548
|
-
- lib/deltacloud/drivers/
|
549
|
-
- lib/deltacloud/drivers/sbc/sbc_driver.rb
|
550
|
-
- lib/deltacloud/drivers/rhevm/rhevm_driver.rb
|
551
|
-
- lib/deltacloud/drivers/opennebula/cloud_client.rb
|
552
|
-
- lib/deltacloud/drivers/opennebula/opennebula_driver.rb
|
553
|
-
- lib/deltacloud/drivers/opennebula/occi_client.rb
|
554
|
-
- lib/deltacloud/drivers/azure/azure_driver.rb
|
555
|
-
- lib/deltacloud/drivers/openstack/openstack_driver.rb
|
556
|
-
- lib/deltacloud/drivers/eucalyptus/eucalyptus_driver.rb
|
557
|
-
- lib/deltacloud/drivers/rackspace/rackspace_driver.rb
|
550
|
+
- lib/deltacloud/drivers.rb
|
551
|
+
- lib/deltacloud/drivers/vsphere/vsphere_client.rb
|
558
552
|
- lib/deltacloud/drivers/vsphere/vsphere_filemanager.rb
|
559
553
|
- lib/deltacloud/drivers/vsphere/vsphere_driver.rb
|
560
|
-
- lib/deltacloud/drivers/
|
554
|
+
- lib/deltacloud/drivers/condor/condor_driver.rb
|
555
|
+
- lib/deltacloud/drivers/condor/condor_client.rb
|
556
|
+
- lib/deltacloud/drivers/condor/ip_agents/confserver.rb
|
557
|
+
- lib/deltacloud/drivers/condor/ip_agents/default.rb
|
558
|
+
- lib/deltacloud/drivers/openstack/openstack_driver.rb
|
559
|
+
- lib/deltacloud/drivers/google/google_driver.rb
|
560
|
+
- lib/deltacloud/drivers/azure/azure_driver.rb
|
561
561
|
- lib/deltacloud/drivers/base_driver.rb
|
562
|
-
- lib/deltacloud/drivers/
|
563
|
-
- lib/deltacloud/drivers/
|
564
|
-
- lib/deltacloud/drivers/
|
562
|
+
- lib/deltacloud/drivers/eucalyptus/eucalyptus_driver.rb
|
563
|
+
- lib/deltacloud/drivers/rhevm/rhevm_driver.rb
|
564
|
+
- lib/deltacloud/drivers/features.rb
|
565
565
|
- lib/deltacloud/drivers/mock/mock_client.rb
|
566
|
+
- lib/deltacloud/drivers/mock/mock_driver_cimi_methods.rb
|
566
567
|
- lib/deltacloud/drivers/mock/mock_driver.rb
|
567
|
-
- lib/deltacloud/drivers/rimuhosting/rimuhosting_driver.rb
|
568
568
|
- lib/deltacloud/drivers/rimuhosting/rimuhosting_client.rb
|
569
|
-
- lib/deltacloud/drivers/
|
570
|
-
- lib/deltacloud/drivers/fgcp/fgcp_driver.rb
|
571
|
-
- lib/deltacloud/drivers/ec2/ec2_driver.rb
|
569
|
+
- lib/deltacloud/drivers/rimuhosting/rimuhosting_driver.rb
|
572
570
|
- lib/deltacloud/drivers/ec2/aws_vpc_monkey_patch.rb
|
573
|
-
- lib/deltacloud/drivers/
|
574
|
-
- lib/deltacloud/drivers/
|
575
|
-
- lib/deltacloud/drivers/gogrid/gogrid_client.rb
|
571
|
+
- lib/deltacloud/drivers/ec2/ec2_driver.rb
|
572
|
+
- lib/deltacloud/drivers/rackspace/rackspace_driver.rb
|
576
573
|
- lib/deltacloud/drivers/gogrid/gogrid_driver.rb
|
577
|
-
- lib/deltacloud/drivers/
|
578
|
-
- lib/deltacloud/drivers/
|
579
|
-
- lib/deltacloud/drivers/
|
580
|
-
- lib/deltacloud/drivers/
|
581
|
-
- lib/deltacloud/drivers.rb
|
582
|
-
- lib/
|
574
|
+
- lib/deltacloud/drivers/gogrid/gogrid_client.rb
|
575
|
+
- lib/deltacloud/drivers/sbc/sbc_driver.rb
|
576
|
+
- lib/deltacloud/drivers/sbc/sbc_client.rb
|
577
|
+
- lib/deltacloud/drivers/fgcp/fgcp_driver.rb
|
578
|
+
- lib/deltacloud/drivers/fgcp/fgcp_client.rb
|
579
|
+
- lib/deltacloud/drivers/opennebula/occi_client.rb
|
580
|
+
- lib/deltacloud/drivers/opennebula/cloud_client.rb
|
581
|
+
- lib/deltacloud/drivers/opennebula/opennebula_driver.rb
|
582
|
+
- lib/deltacloud/drivers/exceptions.rb
|
583
|
+
- lib/deltacloud/drivers/terremark/terremark_driver.rb
|
584
|
+
- lib/deltacloud/drivers/aruba/aruba_driver.rb
|
583
585
|
- lib/sinatra.rb
|
584
|
-
- lib/sinatra/rack_accept.rb
|
585
|
-
- lib/sinatra/rack_matrix_params.rb
|
586
|
-
- lib/sinatra/rack_driver_select.rb
|
587
|
-
- lib/sinatra/rack_logger.rb
|
588
|
-
- lib/sinatra/body_proxy.rb
|
589
|
-
- lib/sinatra/rack_date.rb
|
590
|
-
- lib/sinatra/rack_etag.rb
|
591
|
-
- lib/ec2/server.rb
|
592
|
-
- lib/ec2/helpers/errors.rb
|
593
|
-
- lib/ec2/helpers/result.rb
|
594
|
-
- lib/ec2/helpers.rb
|
595
|
-
- lib/ec2/query_parser.rb
|
596
|
-
- lib/deltacloud/drivers/mock/data/instances/inst2.yml
|
597
586
|
- lib/deltacloud/drivers/mock/data/instances/inst0.yml
|
587
|
+
- lib/deltacloud/drivers/mock/data/instances/inst2.yml
|
598
588
|
- lib/deltacloud/drivers/mock/data/instances/inst1.yml
|
599
|
-
- lib/deltacloud/drivers/mock/data/
|
600
|
-
- lib/deltacloud/drivers/mock/data/images/img1.yml
|
601
|
-
- lib/deltacloud/drivers/mock/data/images/img2.yml
|
602
|
-
- lib/deltacloud/drivers/mock/data/images/img3.yml
|
603
|
-
- lib/deltacloud/drivers/mock/data/buckets/bucket1.yml
|
604
|
-
- lib/deltacloud/drivers/mock/data/buckets/bucket2.yml
|
605
|
-
- lib/deltacloud/drivers/mock/data/storage_volumes/vol3.yml
|
606
|
-
- lib/deltacloud/drivers/mock/data/storage_volumes/vol2.yml
|
607
|
-
- lib/deltacloud/drivers/mock/data/storage_volumes/vol1.yml
|
589
|
+
- lib/deltacloud/drivers/mock/data/storage_snapshots/snap2.yml
|
608
590
|
- lib/deltacloud/drivers/mock/data/storage_snapshots/snap1.yml
|
609
591
|
- lib/deltacloud/drivers/mock/data/storage_snapshots/snap3.yml
|
610
|
-
- lib/deltacloud/drivers/mock/data/storage_snapshots/snap2.yml
|
611
592
|
- lib/deltacloud/drivers/mock/data/addresses/192.168.0.2.yml
|
612
593
|
- lib/deltacloud/drivers/mock/data/addresses/192.168.0.3.yml
|
613
|
-
- lib/deltacloud/drivers/mock/data/addresses/192.168.0.4.yml
|
614
594
|
- lib/deltacloud/drivers/mock/data/addresses/192.168.0.1.yml
|
615
|
-
- lib/deltacloud/drivers/mock/data/
|
616
|
-
- lib/deltacloud/drivers/mock/data/blobs/blob2.yml
|
595
|
+
- lib/deltacloud/drivers/mock/data/addresses/192.168.0.4.yml
|
617
596
|
- lib/deltacloud/drivers/mock/data/blobs/blob4.yml
|
618
|
-
- lib/deltacloud/drivers/mock/data/blobs/blob3.yml
|
619
597
|
- lib/deltacloud/drivers/mock/data/blobs/blob5.yml
|
620
|
-
- lib/
|
598
|
+
- lib/deltacloud/drivers/mock/data/blobs/blob2.yml
|
599
|
+
- lib/deltacloud/drivers/mock/data/blobs/blob3.yml
|
600
|
+
- lib/deltacloud/drivers/mock/data/blobs/blob1.yml
|
601
|
+
- lib/deltacloud/drivers/mock/data/images/img2.yml
|
602
|
+
- lib/deltacloud/drivers/mock/data/images/img3.yml
|
603
|
+
- lib/deltacloud/drivers/mock/data/images/img1.yml
|
604
|
+
- lib/deltacloud/drivers/mock/data/storage_volumes/vol2.yml
|
605
|
+
- lib/deltacloud/drivers/mock/data/storage_volumes/vol1.yml
|
606
|
+
- lib/deltacloud/drivers/mock/data/storage_volumes/vol3.yml
|
607
|
+
- lib/deltacloud/drivers/mock/data/buckets/bucket2.yml
|
608
|
+
- lib/deltacloud/drivers/mock/data/buckets/bucket1.yml
|
609
|
+
- lib/deltacloud/drivers/mock/data/keys/test-key.yml
|
610
|
+
- lib/ec2/views/describe_key_pairs.haml
|
611
|
+
- lib/ec2/views/delete_key_pair.haml
|
621
612
|
- lib/ec2/views/describe_instance_set.haml
|
622
613
|
- lib/ec2/views/describe_availability_zones.haml
|
623
|
-
- lib/ec2/views/
|
614
|
+
- lib/ec2/views/error.haml
|
615
|
+
- lib/ec2/views/terminate_instances.haml
|
624
616
|
- lib/ec2/views/describe_instances.haml
|
625
|
-
- lib/ec2/views/
|
617
|
+
- lib/ec2/views/instance_action.haml
|
618
|
+
- lib/ec2/views/run_instances.haml
|
619
|
+
- lib/ec2/views/reboot_instances.haml
|
620
|
+
- lib/ec2/views/start_instances.haml
|
626
621
|
- lib/ec2/views/stop_instances.haml
|
627
|
-
- lib/ec2/views/
|
622
|
+
- lib/ec2/views/describe_images.haml
|
628
623
|
- lib/ec2/views/create_key_pair.haml
|
629
|
-
-
|
630
|
-
-
|
631
|
-
-
|
632
|
-
-
|
633
|
-
-
|
624
|
+
- tests/ec2/server_test.rb
|
625
|
+
- tests/ec2/common.rb
|
626
|
+
- tests/ec2/query_parser_test.rb
|
627
|
+
- tests/cimi/model/machine_template_spec.rb
|
628
|
+
- tests/cimi/model/machine_spec.rb
|
629
|
+
- tests/cimi/model/machine_configuration_spec.rb
|
630
|
+
- tests/cimi/model/collection_spec.rb
|
631
|
+
- tests/cimi/model/volume_spec.rb
|
632
|
+
- tests/cimi/model/volume_template_spec.rb
|
633
|
+
- tests/cimi/model/schema_spec.rb
|
634
|
+
- tests/cimi/model/volume_image_spec.rb
|
635
|
+
- tests/cimi/model/machine_image_spec.rb
|
636
|
+
- tests/cimi/model/volume_configuration_spec.rb
|
637
|
+
- tests/cimi/model/credential_spec.rb
|
638
|
+
- tests/cimi/spec_helper.rb
|
639
|
+
- tests/cimi/collections/common.rb
|
634
640
|
- tests/cimi/collections/cloud_entry_point_test.rb
|
635
641
|
- tests/cimi/collections/machines_test.rb
|
636
|
-
- tests/cimi/collections/common.rb
|
637
|
-
- tests/cimi/collections/url_helper_test.rb
|
638
642
|
- tests/cimi/collections/machine_images_test.rb
|
639
|
-
- tests/cimi/
|
640
|
-
- tests/
|
641
|
-
- tests/
|
642
|
-
- tests/
|
643
|
-
- tests/
|
644
|
-
- tests/
|
645
|
-
- tests/
|
646
|
-
- tests/
|
647
|
-
- tests/
|
648
|
-
- tests/
|
649
|
-
- tests/
|
643
|
+
- tests/cimi/collections/url_helper_test.rb
|
644
|
+
- tests/helpers/rack/rack_etag_test.rb
|
645
|
+
- tests/helpers/rack/rack_accept_test.rb
|
646
|
+
- tests/helpers/rack/rack_matrix_params_test.rb
|
647
|
+
- tests/helpers/rack/rack_date_test.rb
|
648
|
+
- tests/helpers/rack/common.rb
|
649
|
+
- tests/helpers/rack/rack_driver_select_test.rb
|
650
|
+
- tests/helpers/core_ext/hash_test.rb
|
651
|
+
- tests/helpers/core_ext/string_test.rb
|
652
|
+
- tests/helpers/core_ext/integer_test.rb
|
653
|
+
- tests/helpers/core_ext/array_test.rb
|
650
654
|
- tests/deltacloud/server_test.rb
|
651
|
-
- tests/deltacloud/
|
652
|
-
- tests/deltacloud/
|
653
|
-
- tests/deltacloud/
|
654
|
-
- tests/deltacloud/
|
655
|
+
- tests/deltacloud/rack_test.rb
|
656
|
+
- tests/deltacloud/deltacloud_helper_test.rb
|
657
|
+
- tests/deltacloud/common.rb
|
658
|
+
- tests/deltacloud/collections_test.rb
|
655
659
|
- tests/deltacloud/collections/images_collection_test.rb
|
656
660
|
- tests/deltacloud/collections/buckets_collection_test.rb
|
657
661
|
- tests/deltacloud/collections/instance_states_collection_test.rb
|
658
|
-
- tests/deltacloud/
|
659
|
-
- tests/deltacloud/
|
660
|
-
- tests/deltacloud/
|
661
|
-
- tests/deltacloud/
|
662
|
-
- tests/deltacloud/rack_test.rb
|
662
|
+
- tests/deltacloud/collections/drivers_collection_test.rb
|
663
|
+
- tests/deltacloud/collections/instances_collection_test.rb
|
664
|
+
- tests/deltacloud/collections/keys_collection_test.rb
|
665
|
+
- tests/deltacloud/collections/hardware_profiles_collection_test.rb
|
663
666
|
- tests/deltacloud/base_collection_test.rb
|
664
|
-
- tests/
|
665
|
-
- tests/helpers/core_ext/integer_test.rb
|
666
|
-
- tests/helpers/core_ext/string_test.rb
|
667
|
-
- tests/helpers/core_ext/hash_test.rb
|
668
|
-
- tests/helpers/rack/rack_accept_test.rb
|
669
|
-
- tests/helpers/rack/common.rb
|
670
|
-
- tests/helpers/rack/rack_etag_test.rb
|
671
|
-
- tests/helpers/rack/rack_matrix_params_test.rb
|
672
|
-
- tests/helpers/rack/rack_date_test.rb
|
673
|
-
- tests/helpers/rack/rack_driver_select_test.rb
|
667
|
+
- tests/deltacloud/drivers_test.rb
|
674
668
|
- tests/test_helper.rb
|
675
|
-
- tests/drivers/
|
676
|
-
- tests/drivers/
|
677
|
-
- tests/drivers/
|
678
|
-
- tests/drivers/
|
679
|
-
- tests/drivers/
|
680
|
-
- tests/drivers/
|
681
|
-
- tests/drivers/models/keys_test.rb
|
682
|
-
- tests/drivers/models/instance_profile_test.rb
|
683
|
-
- tests/drivers/models/instance_test.rb
|
684
|
-
- tests/drivers/models/address_test.rb
|
669
|
+
- tests/drivers/openstack/realms_test.rb
|
670
|
+
- tests/drivers/openstack/images_test.rb
|
671
|
+
- tests/drivers/openstack/instances_test.rb
|
672
|
+
- tests/drivers/openstack/common.rb
|
673
|
+
- tests/drivers/openstack/keys_test.rb
|
674
|
+
- tests/drivers/openstack/hardware_profiles_test.rb
|
685
675
|
- tests/drivers/google/common.rb
|
686
676
|
- tests/drivers/google/buckets_test.rb
|
687
|
-
- tests/drivers/
|
688
|
-
- tests/drivers/rhevm/common.rb
|
689
|
-
- tests/drivers/rhevm/realms_test.rb
|
690
|
-
- tests/drivers/rhevm/instance_test.rb
|
691
|
-
- tests/drivers/rhevm/provider_test.rb
|
677
|
+
- tests/drivers/base/library_test.rb
|
692
678
|
- tests/drivers/base/common.rb
|
693
679
|
- tests/drivers/base/exceptions_test.rb
|
694
680
|
- tests/drivers/base/base_driver_test.rb
|
695
|
-
- tests/drivers/
|
696
|
-
- tests/drivers/
|
697
|
-
- tests/drivers/
|
698
|
-
- tests/drivers/
|
699
|
-
- tests/drivers/
|
700
|
-
- tests/drivers/
|
701
|
-
- tests/drivers/openstack/realms_test.rb
|
681
|
+
- tests/drivers/rhevm/realms_test.rb
|
682
|
+
- tests/drivers/rhevm/images_test.rb
|
683
|
+
- tests/drivers/rhevm/instance_test.rb
|
684
|
+
- tests/drivers/rhevm/common.rb
|
685
|
+
- tests/drivers/rhevm/provider_test.rb
|
686
|
+
- tests/drivers/mock/realms_test.rb
|
702
687
|
- tests/drivers/mock/images_test.rb
|
703
|
-
- tests/drivers/mock/common.rb
|
704
|
-
- tests/drivers/mock/keys_test.rb
|
705
|
-
- tests/drivers/mock/instances_test.rb
|
706
688
|
- tests/drivers/mock/storage_volumes_test.rb
|
707
|
-
- tests/drivers/mock/
|
689
|
+
- tests/drivers/mock/instances_test.rb
|
708
690
|
- tests/drivers/mock/storage_snapshots_test.rb
|
709
|
-
- tests/drivers/
|
710
|
-
- tests/drivers/
|
711
|
-
- tests/drivers/ec2/keys_test.rb
|
691
|
+
- tests/drivers/mock/common.rb
|
692
|
+
- tests/drivers/mock/keys_test.rb
|
712
693
|
- tests/drivers/ec2/realms_test.rb
|
694
|
+
- tests/drivers/ec2/images_test.rb
|
713
695
|
- tests/drivers/ec2/instance_test.rb
|
714
696
|
- tests/drivers/ec2/storage_snapshots_test.rb
|
697
|
+
- tests/drivers/ec2/common.rb
|
698
|
+
- tests/drivers/ec2/keys_test.rb
|
715
699
|
- tests/drivers/ec2/buckets_test.rb
|
700
|
+
- tests/drivers/gogrid/realms_test.rb
|
716
701
|
- tests/drivers/gogrid/images_test.rb
|
702
|
+
- tests/drivers/gogrid/instances_test.rb
|
717
703
|
- tests/drivers/gogrid/common.rb
|
718
704
|
- tests/drivers/gogrid/hardware_profiles_test.rb
|
719
|
-
- tests/drivers/
|
720
|
-
- tests/drivers/
|
721
|
-
- tests/
|
722
|
-
- tests/
|
723
|
-
- tests/
|
724
|
-
-
|
725
|
-
-
|
726
|
-
-
|
727
|
-
-
|
728
|
-
-
|
729
|
-
- views/instances/index.xml.haml
|
730
|
-
- views/instances/run_command.html.haml
|
731
|
-
- views/instances/run.html.haml
|
732
|
-
- views/instances/show.html.haml
|
733
|
-
- views/instances/index.html.haml
|
705
|
+
- tests/drivers/models/base_test.rb
|
706
|
+
- tests/drivers/models/instance_address_test.rb
|
707
|
+
- tests/drivers/models/metrics_test.rb
|
708
|
+
- tests/drivers/models/address_test.rb
|
709
|
+
- tests/drivers/models/instance_test.rb
|
710
|
+
- tests/drivers/models/common.rb
|
711
|
+
- tests/drivers/models/blob_test.rb
|
712
|
+
- tests/drivers/models/keys_test.rb
|
713
|
+
- tests/drivers/models/instance_profile_test.rb
|
714
|
+
- tests/drivers/models/hardware_profile_test.rb
|
734
715
|
- views/instances/run.xml.haml
|
735
716
|
- views/instances/show.xml.haml
|
717
|
+
- views/instances/run.html.haml
|
736
718
|
- views/instances/new.html.haml
|
737
|
-
- views/
|
738
|
-
- views/
|
739
|
-
- views/
|
740
|
-
- views/
|
741
|
-
- views/firewalls/show.xml.haml
|
742
|
-
- views/firewalls/new.html.haml
|
743
|
-
- views/cimi/machine_configurations/show.html.haml
|
744
|
-
- views/cimi/machine_configurations/show.xml.haml
|
745
|
-
- views/cimi/errors/401.xml.haml
|
746
|
-
- views/cimi/errors/400.xml.haml
|
747
|
-
- views/cimi/errors/405.xml.haml
|
748
|
-
- views/cimi/errors/502.xml.haml
|
749
|
-
- views/cimi/errors/403.xml.haml
|
750
|
-
- views/cimi/errors/500.xml.haml
|
751
|
-
- views/cimi/errors/404.xml.haml
|
752
|
-
- views/cimi/error.html.haml
|
753
|
-
- views/cimi/layout.html.haml
|
754
|
-
- views/cimi/cloudEntryPoint/index.xml.haml
|
755
|
-
- views/cimi/cloudEntryPoint/index.html.haml
|
756
|
-
- views/cimi/volumes/show.html.haml
|
757
|
-
- views/cimi/volumes/show.xml.haml
|
758
|
-
- views/cimi/machines/show.html.haml
|
759
|
-
- views/cimi/machines/show.xml.haml
|
760
|
-
- views/cimi/machine_images/show.html.haml
|
761
|
-
- views/cimi/machine_images/show.xml.haml
|
762
|
-
- views/cimi/collection/index.html.haml
|
763
|
-
- views/cimi/collection/response.xml.haml
|
764
|
-
- views/metrics/index.xml.haml
|
765
|
-
- views/metrics/show.html.haml
|
766
|
-
- views/metrics/index.html.haml
|
767
|
-
- views/metrics/show.xml.haml
|
768
|
-
- views/realms/index.xml.haml
|
769
|
-
- views/realms/show.html.haml
|
770
|
-
- views/realms/index.html.haml
|
771
|
-
- views/realms/show.xml.haml
|
772
|
-
- views/api/show.html.haml
|
719
|
+
- views/instances/index.html.haml
|
720
|
+
- views/instances/index.xml.haml
|
721
|
+
- views/instances/show.html.haml
|
722
|
+
- views/instances/run_command.html.haml
|
773
723
|
- views/api/show.xml.haml
|
774
|
-
- views/
|
724
|
+
- views/api/show.html.haml
|
775
725
|
- views/instance_states/show.xml.haml
|
776
|
-
- views/
|
777
|
-
- views/hardware_profiles/show.html.haml
|
778
|
-
- views/hardware_profiles/index.html.haml
|
779
|
-
- views/hardware_profiles/show.xml.haml
|
780
|
-
- views/keys/index.xml.haml
|
781
|
-
- views/keys/show.html.haml
|
782
|
-
- views/keys/index.html.haml
|
783
|
-
- views/keys/show.xml.haml
|
784
|
-
- views/keys/new.html.haml
|
785
|
-
- views/docs/collection.html.haml
|
786
|
-
- views/docs/index.xml.haml
|
726
|
+
- views/instance_states/show.html.haml
|
787
727
|
- views/docs/operation.html.haml
|
788
728
|
- views/docs/collection.xml.haml
|
729
|
+
- views/docs/collection.html.haml
|
789
730
|
- views/docs/index.html.haml
|
790
731
|
- views/docs/operation.xml.haml
|
791
|
-
- views/
|
792
|
-
- views/images/show.html.haml
|
793
|
-
- views/images/index.html.haml
|
794
|
-
- views/images/show.xml.haml
|
795
|
-
- views/images/new.html.haml
|
796
|
-
- views/buckets/index.xml.haml
|
797
|
-
- views/buckets/show.html.haml
|
798
|
-
- views/buckets/index.html.haml
|
799
|
-
- views/buckets/show.xml.haml
|
800
|
-
- views/buckets/new.html.haml
|
801
|
-
- views/storage_volumes/index.xml.haml
|
802
|
-
- views/storage_volumes/attach.html.haml
|
803
|
-
- views/storage_volumes/show.html.haml
|
804
|
-
- views/storage_volumes/index.html.haml
|
805
|
-
- views/storage_volumes/show.xml.haml
|
806
|
-
- views/storage_volumes/new.html.haml
|
807
|
-
- views/index.html.haml
|
808
|
-
- views/storage_snapshots/index.xml.haml
|
809
|
-
- views/storage_snapshots/show.html.haml
|
810
|
-
- views/storage_snapshots/index.html.haml
|
732
|
+
- views/docs/index.xml.haml
|
811
733
|
- views/storage_snapshots/show.xml.haml
|
812
734
|
- views/storage_snapshots/new.html.haml
|
813
|
-
- views/
|
814
|
-
- views/
|
815
|
-
- views/
|
816
|
-
- views/
|
735
|
+
- views/storage_snapshots/index.html.haml
|
736
|
+
- views/storage_snapshots/index.xml.haml
|
737
|
+
- views/storage_snapshots/show.html.haml
|
738
|
+
- views/error.html.haml
|
739
|
+
- views/realms/show.xml.haml
|
740
|
+
- views/realms/index.html.haml
|
741
|
+
- views/realms/index.xml.haml
|
742
|
+
- views/realms/show.html.haml
|
817
743
|
- views/errors/504.html.haml
|
818
|
-
- views/errors/502.html.haml
|
819
|
-
- views/errors/504.xml.haml
|
820
|
-
- views/errors/502.xml.haml
|
821
744
|
- views/errors/501.xml.haml
|
822
|
-
- views/errors/403.html.haml
|
823
|
-
- views/errors/500.html.haml
|
824
745
|
- views/errors/404.html.haml
|
825
|
-
- views/errors/
|
826
|
-
- views/errors/
|
827
|
-
- views/errors/400.html.haml
|
828
|
-
- views/errors/500.xml.haml
|
746
|
+
- views/errors/502.html.haml
|
747
|
+
- views/errors/401.xml.haml
|
829
748
|
- views/errors/404.xml.haml
|
830
|
-
- views/errors/
|
749
|
+
- views/errors/403.html.haml
|
750
|
+
- views/errors/405.html.haml
|
831
751
|
- views/errors/backend_capability_failure.xml.haml
|
752
|
+
- views/errors/backend_capability_failure.html.haml
|
832
753
|
- views/errors/501.html.haml
|
833
|
-
- views/
|
834
|
-
- views/
|
835
|
-
- views/
|
836
|
-
- views/
|
837
|
-
- views/
|
838
|
-
- views/
|
839
|
-
- views/
|
840
|
-
- views/
|
841
|
-
- views/
|
842
|
-
- views/
|
754
|
+
- views/errors/400.xml.haml
|
755
|
+
- views/errors/400.html.haml
|
756
|
+
- views/errors/502.xml.haml
|
757
|
+
- views/errors/405.xml.haml
|
758
|
+
- views/errors/401.html.haml
|
759
|
+
- views/errors/500.xml.haml
|
760
|
+
- views/errors/403.xml.haml
|
761
|
+
- views/errors/500.html.haml
|
762
|
+
- views/errors/504.xml.haml
|
763
|
+
- views/load_balancers/show.xml.haml
|
764
|
+
- views/load_balancers/new.html.haml
|
765
|
+
- views/load_balancers/index.html.haml
|
766
|
+
- views/load_balancers/index.xml.haml
|
767
|
+
- views/load_balancers/show.html.haml
|
768
|
+
- views/cimi/cloudEntryPoint/index.html.haml
|
769
|
+
- views/cimi/cloudEntryPoint/index.xml.haml
|
770
|
+
- views/cimi/collection/response.xml.haml
|
771
|
+
- views/cimi/collection/index.html.haml
|
772
|
+
- views/cimi/error.html.haml
|
773
|
+
- views/cimi/errors/401.xml.haml
|
774
|
+
- views/cimi/errors/404.xml.haml
|
775
|
+
- views/cimi/errors/400.xml.haml
|
776
|
+
- views/cimi/errors/502.xml.haml
|
777
|
+
- views/cimi/errors/405.xml.haml
|
778
|
+
- views/cimi/errors/500.xml.haml
|
779
|
+
- views/cimi/errors/403.xml.haml
|
780
|
+
- views/cimi/machines/show.xml.haml
|
781
|
+
- views/cimi/machines/show.html.haml
|
782
|
+
- views/cimi/volumes/show.xml.haml
|
783
|
+
- views/cimi/volumes/show.html.haml
|
784
|
+
- views/cimi/machine_configurations/show.xml.haml
|
785
|
+
- views/cimi/machine_configurations/show.html.haml
|
786
|
+
- views/cimi/layout.html.haml
|
787
|
+
- views/cimi/machine_images/show.xml.haml
|
788
|
+
- views/cimi/machine_images/show.html.haml
|
789
|
+
- views/firewalls/show.xml.haml
|
790
|
+
- views/firewalls/new.html.haml
|
791
|
+
- views/firewalls/new_rule.html.haml
|
792
|
+
- views/firewalls/index.html.haml
|
793
|
+
- views/firewalls/index.xml.haml
|
794
|
+
- views/firewalls/show.html.haml
|
795
|
+
- views/addresses/show.xml.haml
|
843
796
|
- views/addresses/associate.html.haml
|
797
|
+
- views/addresses/index.html.haml
|
844
798
|
- views/addresses/_address.html.haml
|
845
|
-
- views/addresses/
|
846
|
-
- views/
|
799
|
+
- views/addresses/index.xml.haml
|
800
|
+
- views/addresses/show.html.haml
|
847
801
|
- views/blobs/show.xml.haml
|
848
802
|
- views/blobs/new.html.haml
|
803
|
+
- views/blobs/show.html.haml
|
804
|
+
- views/root/index.html.haml
|
805
|
+
- views/metrics/show.xml.haml
|
806
|
+
- views/metrics/index.html.haml
|
807
|
+
- views/metrics/index.xml.haml
|
808
|
+
- views/metrics/show.html.haml
|
809
|
+
- views/layout.html.haml
|
810
|
+
- views/images/show.xml.haml
|
811
|
+
- views/images/new.html.haml
|
812
|
+
- views/images/index.html.haml
|
813
|
+
- views/images/index.xml.haml
|
814
|
+
- views/images/show.html.haml
|
815
|
+
- views/index.html.haml
|
816
|
+
- views/storage_volumes/attach.html.haml
|
817
|
+
- views/storage_volumes/show.xml.haml
|
818
|
+
- views/storage_volumes/new.html.haml
|
819
|
+
- views/storage_volumes/index.html.haml
|
820
|
+
- views/storage_volumes/index.xml.haml
|
821
|
+
- views/storage_volumes/show.html.haml
|
822
|
+
- views/hardware_profiles/show.xml.haml
|
823
|
+
- views/hardware_profiles/index.html.haml
|
824
|
+
- views/hardware_profiles/index.xml.haml
|
825
|
+
- views/hardware_profiles/show.html.haml
|
826
|
+
- views/buckets/show.xml.haml
|
827
|
+
- views/buckets/new.html.haml
|
828
|
+
- views/buckets/index.html.haml
|
829
|
+
- views/buckets/index.xml.haml
|
830
|
+
- views/buckets/show.html.haml
|
831
|
+
- views/keys/show.xml.haml
|
832
|
+
- views/keys/new.html.haml
|
833
|
+
- views/keys/index.html.haml
|
834
|
+
- views/keys/index.xml.haml
|
835
|
+
- views/keys/show.html.haml
|
836
|
+
- views/drivers/show.xml.haml
|
837
|
+
- views/drivers/index.html.haml
|
838
|
+
- views/drivers/index.xml.haml
|
839
|
+
- views/drivers/show.html.haml
|
849
840
|
- views/instance_states/show.png.erb
|
850
841
|
- public/favicon.ico
|
851
|
-
- public/images/
|
852
|
-
- public/images/
|
853
|
-
- public/images/firewall.png
|
854
|
-
- public/images/metric.png
|
842
|
+
- public/images/profile.png
|
843
|
+
- public/images/logo-wide.png
|
855
844
|
- public/images/topbar-bg.png
|
856
|
-
- public/images/
|
845
|
+
- public/images/cloud.png
|
857
846
|
- public/images/bread-bg.png
|
858
|
-
- public/images/
|
847
|
+
- public/images/machine.png
|
859
848
|
- public/images/snapshot.png
|
860
|
-
- public/images/
|
861
|
-
- public/images/
|
862
|
-
- public/images/realm.png
|
863
|
-
- public/images/address.png
|
864
|
-
- public/images/cloud.png
|
849
|
+
- public/images/metric.png
|
850
|
+
- public/images/balancer.png
|
865
851
|
- public/images/bucket.png
|
852
|
+
- public/images/key.png
|
866
853
|
- public/images/volume.png
|
867
|
-
- public/images/
|
868
|
-
- public/
|
869
|
-
- public/
|
854
|
+
- public/images/realm.png
|
855
|
+
- public/images/blob.png
|
856
|
+
- public/images/firewall.png
|
857
|
+
- public/images/image.png
|
858
|
+
- public/images/address.png
|
870
859
|
- public/javascripts/jquery.mobile-1.0.1.min.js
|
871
860
|
- public/javascripts/jquery-1.4.2.min.js
|
861
|
+
- public/javascripts/cmwgapp.js
|
872
862
|
- public/javascripts/jquery.min.js
|
873
|
-
- public/
|
863
|
+
- public/javascripts/application.js
|
874
864
|
- public/stylesheets/new.css
|
875
|
-
- public/stylesheets/
|
876
|
-
- public/stylesheets/images/icons-36-
|
877
|
-
- public/stylesheets/images/
|
878
|
-
- public/stylesheets/images/
|
865
|
+
- public/stylesheets/jquery.mobile-1.0.1.min.css
|
866
|
+
- public/stylesheets/images/icons-36-black.png
|
867
|
+
- public/stylesheets/images/grid.png
|
868
|
+
- public/stylesheets/images/logo-wide.png
|
879
869
|
- public/stylesheets/images/topbar-bg.png
|
870
|
+
- public/stylesheets/images/error.png
|
880
871
|
- public/stylesheets/images/bread-bg.png
|
872
|
+
- public/stylesheets/images/stopped.png
|
873
|
+
- public/stylesheets/images/pending.png
|
874
|
+
- public/stylesheets/images/icons-36-white.png
|
881
875
|
- public/stylesheets/images/rails.png
|
876
|
+
- public/stylesheets/images/running.png
|
882
877
|
- public/stylesheets/images/icons-18-black.png
|
883
|
-
- public/stylesheets/images/logo-wide.png
|
884
|
-
- public/stylesheets/images/grid.png
|
885
|
-
- public/stylesheets/images/icon-search-black.png
|
886
878
|
- public/stylesheets/images/ajax-loader.png
|
887
|
-
- public/stylesheets/images/stopped.png
|
888
|
-
- public/stylesheets/images/icons-36-black.png
|
889
879
|
- public/stylesheets/images/icons-18-white.png
|
890
|
-
- public/stylesheets/
|
891
|
-
- public/stylesheets/compiled/screen.css
|
880
|
+
- public/stylesheets/images/icon-search-black.png
|
892
881
|
- public/stylesheets/compiled/print.css
|
893
882
|
- public/stylesheets/compiled/application.css
|
883
|
+
- public/stylesheets/compiled/screen.css
|
884
|
+
- public/stylesheets/compiled/ie.css
|
894
885
|
- bin/deltacloudd
|
895
886
|
- LICENSE
|
896
887
|
- NOTICE
|
897
888
|
homepage: http://www.deltacloud.org
|
898
889
|
licenses: []
|
899
|
-
|
900
890
|
post_install_message:
|
901
891
|
rdoc_options: []
|
902
|
-
|
903
|
-
require_paths:
|
892
|
+
require_paths:
|
904
893
|
- lib
|
905
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
894
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
906
895
|
none: false
|
907
|
-
requirements:
|
908
|
-
- -
|
909
|
-
- !ruby/object:Gem::Version
|
910
|
-
hash: 59
|
911
|
-
segments:
|
912
|
-
- 1
|
913
|
-
- 8
|
914
|
-
- 6
|
896
|
+
requirements:
|
897
|
+
- - ! '>='
|
898
|
+
- !ruby/object:Gem::Version
|
915
899
|
version: 1.8.6
|
916
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
900
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
917
901
|
none: false
|
918
|
-
requirements:
|
919
|
-
- -
|
920
|
-
- !ruby/object:Gem::Version
|
921
|
-
|
922
|
-
segments:
|
902
|
+
requirements:
|
903
|
+
- - ! '>='
|
904
|
+
- !ruby/object:Gem::Version
|
905
|
+
version: '0'
|
906
|
+
segments:
|
923
907
|
- 0
|
924
|
-
|
908
|
+
hash: -4407904158893794863
|
925
909
|
requirements: []
|
926
|
-
|
927
910
|
rubyforge_project:
|
928
|
-
rubygems_version: 1.8.
|
911
|
+
rubygems_version: 1.8.23
|
929
912
|
signing_key:
|
930
913
|
specification_version: 3
|
931
914
|
summary: Deltacloud REST API
|
932
|
-
test_files:
|
915
|
+
test_files:
|
916
|
+
- tests/ec2/server_test.rb
|
917
|
+
- tests/ec2/query_parser_test.rb
|
933
918
|
- tests/cimi/collections/cloud_entry_point_test.rb
|
934
919
|
- tests/cimi/collections/machines_test.rb
|
935
|
-
- tests/cimi/collections/url_helper_test.rb
|
936
920
|
- tests/cimi/collections/machine_images_test.rb
|
921
|
+
- tests/cimi/collections/url_helper_test.rb
|
922
|
+
- tests/helpers/rack/rack_etag_test.rb
|
923
|
+
- tests/helpers/rack/rack_accept_test.rb
|
924
|
+
- tests/helpers/rack/rack_matrix_params_test.rb
|
925
|
+
- tests/helpers/rack/rack_date_test.rb
|
926
|
+
- tests/helpers/rack/rack_driver_select_test.rb
|
927
|
+
- tests/helpers/core_ext/hash_test.rb
|
928
|
+
- tests/helpers/core_ext/string_test.rb
|
929
|
+
- tests/helpers/core_ext/integer_test.rb
|
930
|
+
- tests/helpers/core_ext/array_test.rb
|
937
931
|
- tests/deltacloud/server_test.rb
|
938
|
-
- tests/deltacloud/
|
939
|
-
- tests/deltacloud/
|
940
|
-
- tests/deltacloud/
|
941
|
-
- tests/deltacloud/collections/drivers_collection_test.rb
|
932
|
+
- tests/deltacloud/rack_test.rb
|
933
|
+
- tests/deltacloud/deltacloud_helper_test.rb
|
934
|
+
- tests/deltacloud/collections_test.rb
|
942
935
|
- tests/deltacloud/collections/images_collection_test.rb
|
943
936
|
- tests/deltacloud/collections/buckets_collection_test.rb
|
944
937
|
- tests/deltacloud/collections/instance_states_collection_test.rb
|
945
|
-
- tests/deltacloud/
|
946
|
-
- tests/deltacloud/
|
947
|
-
- tests/deltacloud/
|
948
|
-
- tests/deltacloud/
|
938
|
+
- tests/deltacloud/collections/drivers_collection_test.rb
|
939
|
+
- tests/deltacloud/collections/instances_collection_test.rb
|
940
|
+
- tests/deltacloud/collections/keys_collection_test.rb
|
941
|
+
- tests/deltacloud/collections/hardware_profiles_collection_test.rb
|
949
942
|
- tests/deltacloud/base_collection_test.rb
|
950
|
-
- tests/
|
951
|
-
- tests/
|
952
|
-
- tests/
|
953
|
-
- tests/
|
954
|
-
- tests/
|
955
|
-
- tests/
|
956
|
-
- tests/helpers/rack/rack_matrix_params_test.rb
|
957
|
-
- tests/helpers/rack/rack_date_test.rb
|
958
|
-
- tests/helpers/rack/rack_driver_select_test.rb
|
959
|
-
- tests/drivers/models/instance_address_test.rb
|
960
|
-
- tests/drivers/models/blob_test.rb
|
961
|
-
- tests/drivers/models/hardware_profile_test.rb
|
962
|
-
- tests/drivers/models/metrics_test.rb
|
963
|
-
- tests/drivers/models/base_test.rb
|
964
|
-
- tests/drivers/models/keys_test.rb
|
965
|
-
- tests/drivers/models/instance_profile_test.rb
|
966
|
-
- tests/drivers/models/instance_test.rb
|
967
|
-
- tests/drivers/models/address_test.rb
|
943
|
+
- tests/deltacloud/drivers_test.rb
|
944
|
+
- tests/drivers/openstack/realms_test.rb
|
945
|
+
- tests/drivers/openstack/images_test.rb
|
946
|
+
- tests/drivers/openstack/instances_test.rb
|
947
|
+
- tests/drivers/openstack/keys_test.rb
|
948
|
+
- tests/drivers/openstack/hardware_profiles_test.rb
|
968
949
|
- tests/drivers/google/buckets_test.rb
|
969
|
-
- tests/drivers/
|
950
|
+
- tests/drivers/base/library_test.rb
|
951
|
+
- tests/drivers/base/exceptions_test.rb
|
952
|
+
- tests/drivers/base/base_driver_test.rb
|
970
953
|
- tests/drivers/rhevm/realms_test.rb
|
954
|
+
- tests/drivers/rhevm/images_test.rb
|
971
955
|
- tests/drivers/rhevm/instance_test.rb
|
972
956
|
- tests/drivers/rhevm/provider_test.rb
|
973
|
-
- tests/drivers/
|
974
|
-
- tests/drivers/base/base_driver_test.rb
|
975
|
-
- tests/drivers/base/library_test.rb
|
976
|
-
- tests/drivers/openstack/images_test.rb
|
977
|
-
- tests/drivers/openstack/hardware_profiles_test.rb
|
978
|
-
- tests/drivers/openstack/keys_test.rb
|
979
|
-
- tests/drivers/openstack/instances_test.rb
|
980
|
-
- tests/drivers/openstack/realms_test.rb
|
957
|
+
- tests/drivers/mock/realms_test.rb
|
981
958
|
- tests/drivers/mock/images_test.rb
|
982
|
-
- tests/drivers/mock/keys_test.rb
|
983
|
-
- tests/drivers/mock/instances_test.rb
|
984
959
|
- tests/drivers/mock/storage_volumes_test.rb
|
985
|
-
- tests/drivers/mock/
|
960
|
+
- tests/drivers/mock/instances_test.rb
|
986
961
|
- tests/drivers/mock/storage_snapshots_test.rb
|
987
|
-
- tests/drivers/
|
988
|
-
- tests/drivers/ec2/keys_test.rb
|
962
|
+
- tests/drivers/mock/keys_test.rb
|
989
963
|
- tests/drivers/ec2/realms_test.rb
|
964
|
+
- tests/drivers/ec2/images_test.rb
|
990
965
|
- tests/drivers/ec2/instance_test.rb
|
991
966
|
- tests/drivers/ec2/storage_snapshots_test.rb
|
967
|
+
- tests/drivers/ec2/keys_test.rb
|
992
968
|
- tests/drivers/ec2/buckets_test.rb
|
969
|
+
- tests/drivers/gogrid/realms_test.rb
|
993
970
|
- tests/drivers/gogrid/images_test.rb
|
994
|
-
- tests/drivers/gogrid/hardware_profiles_test.rb
|
995
971
|
- tests/drivers/gogrid/instances_test.rb
|
996
|
-
- tests/drivers/gogrid/
|
997
|
-
- tests/
|
998
|
-
- tests/
|
972
|
+
- tests/drivers/gogrid/hardware_profiles_test.rb
|
973
|
+
- tests/drivers/models/base_test.rb
|
974
|
+
- tests/drivers/models/instance_address_test.rb
|
975
|
+
- tests/drivers/models/metrics_test.rb
|
976
|
+
- tests/drivers/models/address_test.rb
|
977
|
+
- tests/drivers/models/instance_test.rb
|
978
|
+
- tests/drivers/models/blob_test.rb
|
979
|
+
- tests/drivers/models/keys_test.rb
|
980
|
+
- tests/drivers/models/instance_profile_test.rb
|
981
|
+
- tests/drivers/models/hardware_profile_test.rb
|