deltacloud-core 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/COPYING +502 -0
- data/Rakefile +108 -0
- data/bin/deltacloudd +88 -0
- data/config.ru +5 -0
- data/deltacloud.rb +14 -0
- data/lib/converters/xml_converter.rb +133 -0
- data/lib/deltacloud/base_driver.rb +19 -0
- data/lib/deltacloud/base_driver/base_driver.rb +189 -0
- data/lib/deltacloud/base_driver/features.rb +144 -0
- data/lib/deltacloud/drivers/ec2/ec2_driver.rb +318 -0
- data/lib/deltacloud/drivers/ec2/ec2_mock_driver.rb +170 -0
- data/lib/deltacloud/drivers/gogrid/gogrid_client.rb +45 -0
- data/lib/deltacloud/drivers/gogrid/gogrid_driver.rb +239 -0
- data/lib/deltacloud/drivers/mock/mock_driver.rb +275 -0
- data/lib/deltacloud/drivers/opennebula/cloud_client.rb +116 -0
- data/lib/deltacloud/drivers/opennebula/occi_client.rb +204 -0
- data/lib/deltacloud/drivers/opennebula/opennebula_driver.rb +241 -0
- data/lib/deltacloud/drivers/rackspace/rackspace_client.rb +129 -0
- data/lib/deltacloud/drivers/rackspace/rackspace_driver.rb +150 -0
- data/lib/deltacloud/drivers/rhevm/rhevm_driver.rb +254 -0
- data/lib/deltacloud/drivers/rimu/rimu_hosting_client.rb +87 -0
- data/lib/deltacloud/drivers/rimu/rimu_hosting_driver.rb +143 -0
- data/lib/deltacloud/hardware_profile.rb +131 -0
- data/lib/deltacloud/helpers.rb +5 -0
- data/lib/deltacloud/helpers/application_helper.rb +38 -0
- data/lib/deltacloud/helpers/conversion_helper.rb +39 -0
- data/lib/deltacloud/helpers/hardware_profiles_helper.rb +35 -0
- data/lib/deltacloud/models/base_model.rb +58 -0
- data/lib/deltacloud/models/image.rb +26 -0
- data/lib/deltacloud/models/instance.rb +37 -0
- data/lib/deltacloud/models/instance_profile.rb +47 -0
- data/lib/deltacloud/models/realm.rb +25 -0
- data/lib/deltacloud/models/storage_snapshot.rb +26 -0
- data/lib/deltacloud/models/storage_volume.rb +27 -0
- data/lib/deltacloud/state_machine.rb +84 -0
- data/lib/deltacloud/validation.rb +70 -0
- data/lib/drivers.rb +37 -0
- data/lib/sinatra/lazy_auth.rb +56 -0
- data/lib/sinatra/rabbit.rb +272 -0
- data/lib/sinatra/respond_to.rb +262 -0
- data/lib/sinatra/static_assets.rb +83 -0
- data/lib/sinatra/url_for.rb +44 -0
- data/public/favicon.ico +0 -0
- data/public/images/grid.png +0 -0
- data/public/images/logo-wide.png +0 -0
- data/public/images/rails.png +0 -0
- data/public/images/topbar-bg.png +0 -0
- data/public/javascripts/application.js +2 -0
- data/public/javascripts/controls.js +963 -0
- data/public/javascripts/dragdrop.js +973 -0
- data/public/javascripts/effects.js +1128 -0
- data/public/javascripts/prototype.js +4320 -0
- data/public/stylesheets/compiled/application.css +613 -0
- data/public/stylesheets/compiled/ie.css +31 -0
- data/public/stylesheets/compiled/print.css +27 -0
- data/public/stylesheets/compiled/screen.css +456 -0
- data/server.rb +340 -0
- data/tests/deltacloud_test.rb +60 -0
- data/tests/images_test.rb +94 -0
- data/tests/instances_test.rb +136 -0
- data/tests/realms_test.rb +56 -0
- data/tests/storage_snapshots_test.rb +48 -0
- data/tests/storage_volumes_test.rb +48 -0
- data/views/accounts/index.html.haml +11 -0
- data/views/accounts/show.html.haml +30 -0
- data/views/api/show.html.haml +15 -0
- data/views/api/show.xml.haml +5 -0
- data/views/docs/collection.html.haml +37 -0
- data/views/docs/collection.xml.haml +14 -0
- data/views/docs/index.html.haml +15 -0
- data/views/docs/index.xml.haml +5 -0
- data/views/docs/operation.html.haml +31 -0
- data/views/docs/operation.xml.haml +10 -0
- data/views/errors/auth_exception.html.haml +8 -0
- data/views/errors/auth_exception.xml.haml +2 -0
- data/views/errors/backend_error.html.haml +17 -0
- data/views/errors/backend_error.xml.haml +8 -0
- data/views/errors/validation_failure.html.haml +11 -0
- data/views/errors/validation_failure.xml.haml +7 -0
- data/views/hardware_profiles/index.html.haml +25 -0
- data/views/hardware_profiles/index.xml.haml +4 -0
- data/views/hardware_profiles/show.html.haml +19 -0
- data/views/hardware_profiles/show.xml.haml +17 -0
- data/views/images/index.html.haml +30 -0
- data/views/images/index.xml.haml +7 -0
- data/views/images/show.html.haml +21 -0
- data/views/images/show.xml.haml +5 -0
- data/views/instance_states/show.gv.erb +45 -0
- data/views/instance_states/show.html.haml +31 -0
- data/views/instance_states/show.xml.haml +8 -0
- data/views/instances/index.html.haml +29 -0
- data/views/instances/index.xml.haml +23 -0
- data/views/instances/new.html.haml +49 -0
- data/views/instances/show.html.haml +42 -0
- data/views/instances/show.xml.haml +28 -0
- data/views/layout.html.haml +23 -0
- data/views/realms/index.html.haml +29 -0
- data/views/realms/index.xml.haml +12 -0
- data/views/realms/show.html.haml +15 -0
- data/views/realms/show.xml.haml +10 -0
- data/views/root/index.html.haml +4 -0
- data/views/storage_snapshots/index.html.haml +20 -0
- data/views/storage_snapshots/index.xml.haml +11 -0
- data/views/storage_snapshots/show.html.haml +14 -0
- data/views/storage_snapshots/show.xml.haml +9 -0
- data/views/storage_volumes/index.html.haml +21 -0
- data/views/storage_volumes/index.xml.haml +13 -0
- data/views/storage_volumes/show.html.haml +20 -0
- data/views/storage_volumes/show.xml.haml +13 -0
- metadata +311 -0
@@ -0,0 +1,28 @@
|
|
1
|
+
!!! XML
|
2
|
+
%instance{:href => instance_url(@instance.id)}
|
3
|
+
%id<
|
4
|
+
=@instance.id
|
5
|
+
%name<
|
6
|
+
=@instance.name
|
7
|
+
%owner_id<
|
8
|
+
=@instance.owner_id
|
9
|
+
%image{:href => image_url(@instance.image_id)}
|
10
|
+
%realm{:href => realm_url(@instance.realm_id)}
|
11
|
+
%state<
|
12
|
+
=@instance.state
|
13
|
+
- haml_tag :"hardware-profile", {:href => hardware_profile_url(@instance.instance_profile.id)} do
|
14
|
+
%id<
|
15
|
+
=@instance.instance_profile.id
|
16
|
+
- @instance.instance_profile.overrides.each do |p, v|
|
17
|
+
%property{:kind => 'fixed', :name => p, :value => v, :unit => Deltacloud::HardwareProfile::unit(p)}
|
18
|
+
%actions
|
19
|
+
- @instance.actions.compact.each do |instance_action|
|
20
|
+
%link{:rel => instance_action, :href => self.send("#{instance_action}_instance_url", @instance.id)}
|
21
|
+
- haml_tag :"public-addresses" do
|
22
|
+
- @instance.public_addresses.each do |address|
|
23
|
+
%address<
|
24
|
+
=address
|
25
|
+
- haml_tag :"private-addresses" do
|
26
|
+
- @instance.private_addresses.each do |address|
|
27
|
+
%address<
|
28
|
+
=address
|
@@ -0,0 +1,23 @@
|
|
1
|
+
!!!
|
2
|
+
!!! XML
|
3
|
+
|
4
|
+
%html
|
5
|
+
%head
|
6
|
+
= stylesheet_link_tag '/stylesheets/compiled/screen.css', :media => 'screen, projection'
|
7
|
+
= stylesheet_link_tag '/stylesheets/compiled/print.css', :media => 'print'
|
8
|
+
/[if lt IE 8]
|
9
|
+
= stylesheet_link_tag '/stylesheets/compiled/ie.css', :media => 'screen, projection'
|
10
|
+
= stylesheet_link_tag '/stylesheets/compiled/application.css', :media => 'screen, projection'
|
11
|
+
%body
|
12
|
+
#wrapper
|
13
|
+
#header
|
14
|
+
= link_to image_tag( "/images/logo-wide.png" ), root_url
|
15
|
+
= bread_crumb
|
16
|
+
#content
|
17
|
+
= yield
|
18
|
+
#footer
|
19
|
+
#driver_info
|
20
|
+
Driver: #{DRIVER}
|
21
|
+
#copyright
|
22
|
+
Copyright 2009, 2010
|
23
|
+
#{link_to 'Red Hat', 'http://redhat.com'} and individual contributors.
|
@@ -0,0 +1,29 @@
|
|
1
|
+
%h1
|
2
|
+
Realms
|
3
|
+
|
4
|
+
%table.display
|
5
|
+
%thead
|
6
|
+
%tr
|
7
|
+
%th
|
8
|
+
Name
|
9
|
+
%th
|
10
|
+
Architecture
|
11
|
+
%th
|
12
|
+
Memory
|
13
|
+
%th
|
14
|
+
Storage
|
15
|
+
%th
|
16
|
+
Mutable
|
17
|
+
%tbody
|
18
|
+
- @realms.each do |realm|
|
19
|
+
%tr
|
20
|
+
%td
|
21
|
+
= link_to realm.id, realm_url( realm.id )
|
22
|
+
%td
|
23
|
+
= realm.name
|
24
|
+
%td
|
25
|
+
= realm.state
|
26
|
+
%td
|
27
|
+
= realm.limit
|
28
|
+
%td
|
29
|
+
|
@@ -0,0 +1,20 @@
|
|
1
|
+
%h1 Storage Snapshots
|
2
|
+
|
3
|
+
%table
|
4
|
+
%thead
|
5
|
+
%tr
|
6
|
+
%th ID
|
7
|
+
%th Volume
|
8
|
+
%th Created
|
9
|
+
%th State
|
10
|
+
%tbody
|
11
|
+
- @storage_snapshots.each do |snapshot|
|
12
|
+
%tr
|
13
|
+
%td
|
14
|
+
= link_to snapshot.id, storage_snapshot_url( snapshot.id )
|
15
|
+
%td
|
16
|
+
= link_to snapshot.storage_volume_id, storage_volume_url( snapshot.storage_volume_id )
|
17
|
+
%td
|
18
|
+
= snapshot.created
|
19
|
+
%td
|
20
|
+
= snapshot.state
|
@@ -0,0 +1,11 @@
|
|
1
|
+
!!!XML
|
2
|
+
%storage-snapshots
|
3
|
+
- @elements.each do |snapshot|
|
4
|
+
%storage-snapshot{ :href => storage_snapshot_url(snapshot.id)}
|
5
|
+
%id<
|
6
|
+
=snapshot.id
|
7
|
+
%created<
|
8
|
+
=snapshot.created
|
9
|
+
%state<
|
10
|
+
=snapshot.state
|
11
|
+
%storage-volume{ :href => storage_volume_url(snapshot.storage_volume_id)}
|
@@ -0,0 +1,9 @@
|
|
1
|
+
!!!XML
|
2
|
+
%storage-snapshot{:href => storage_snapshot_url(@storage_snapshot.id)}
|
3
|
+
%id<
|
4
|
+
=@storage_snapshot.id
|
5
|
+
%created<
|
6
|
+
=@storage_snapshot.created
|
7
|
+
%state<
|
8
|
+
=@storage_snapshot.state
|
9
|
+
%storage-volume{:href => storage_volume_url(@storage_snapshot.storage_volume_id)}
|
@@ -0,0 +1,21 @@
|
|
1
|
+
%h1 Storage Volumes
|
2
|
+
|
3
|
+
%table.display
|
4
|
+
%thead
|
5
|
+
%tr
|
6
|
+
%th ID
|
7
|
+
%th Created
|
8
|
+
%th Capacity
|
9
|
+
%th Status
|
10
|
+
%tbody
|
11
|
+
- @storage_volumes.each do |volume|
|
12
|
+
%tr
|
13
|
+
%td
|
14
|
+
= link_to volume.id, storage_volume_url( volume.id )
|
15
|
+
%td
|
16
|
+
= volume.created
|
17
|
+
%td
|
18
|
+
= "#{volume.capacity} GB"
|
19
|
+
%td
|
20
|
+
= "#{volume.state}"
|
21
|
+
|
@@ -0,0 +1,13 @@
|
|
1
|
+
!!!XML
|
2
|
+
%storage-volumes
|
3
|
+
- @elements.each do |volume|
|
4
|
+
%storage-volume{ :href => storage_volume_url(volume.id)}
|
5
|
+
%id<
|
6
|
+
=volume.id
|
7
|
+
%created<
|
8
|
+
=volume.created
|
9
|
+
%capacity<
|
10
|
+
=volume.capacity
|
11
|
+
%device<
|
12
|
+
=volume.device
|
13
|
+
%instance{:href => volume.instance_id}
|
@@ -0,0 +1,20 @@
|
|
1
|
+
%h1
|
2
|
+
= @storage_volume.id
|
3
|
+
|
4
|
+
%dl
|
5
|
+
%di
|
6
|
+
%dt Created
|
7
|
+
%dd
|
8
|
+
= @storage_volume.created
|
9
|
+
%di
|
10
|
+
%dt Capacity
|
11
|
+
%dd
|
12
|
+
= "#{@storage_volume.capacity} GB"
|
13
|
+
%di
|
14
|
+
%dt State
|
15
|
+
%dd
|
16
|
+
= @storage_volume.state
|
17
|
+
%di
|
18
|
+
%dt Attached
|
19
|
+
%dd
|
20
|
+
= link_to(@storage_volume.instance_id, instance_url( @storage_volume.instance_id)) + ' - ' + @storage_volume.device.to_s if @storage_volume.instance_id
|
@@ -0,0 +1,13 @@
|
|
1
|
+
!!!XML
|
2
|
+
%storage-volume{ :href => storage_volume_url(@storage_volume.id)}
|
3
|
+
%id<
|
4
|
+
=@storage_volume.id
|
5
|
+
%created<
|
6
|
+
=@storage_volume.created
|
7
|
+
%capacity<
|
8
|
+
=@storage_volume.capacity
|
9
|
+
%device<
|
10
|
+
=@storage_volume.device
|
11
|
+
%state<
|
12
|
+
=@storage_volume.state
|
13
|
+
%instance{:href => @storage_volume.instance_id}
|
metadata
ADDED
@@ -0,0 +1,311 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: deltacloud-core
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Red Hat, Inc.
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2010-04-23 00:00:00 +02:00
|
13
|
+
default_executable:
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: rake
|
17
|
+
type: :runtime
|
18
|
+
version_requirement:
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">="
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 0.8.7
|
24
|
+
version:
|
25
|
+
- !ruby/object:Gem::Dependency
|
26
|
+
name: eventmachine
|
27
|
+
type: :runtime
|
28
|
+
version_requirement:
|
29
|
+
version_requirements: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 0.12.10
|
34
|
+
version:
|
35
|
+
- !ruby/object:Gem::Dependency
|
36
|
+
name: haml
|
37
|
+
type: :runtime
|
38
|
+
version_requirement:
|
39
|
+
version_requirements: !ruby/object:Gem::Requirement
|
40
|
+
requirements:
|
41
|
+
- - ">="
|
42
|
+
- !ruby/object:Gem::Version
|
43
|
+
version: 2.2.17
|
44
|
+
version:
|
45
|
+
- !ruby/object:Gem::Dependency
|
46
|
+
name: sinatra
|
47
|
+
type: :runtime
|
48
|
+
version_requirement:
|
49
|
+
version_requirements: !ruby/object:Gem::Requirement
|
50
|
+
requirements:
|
51
|
+
- - ">="
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: 0.9.4
|
54
|
+
version:
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rack
|
57
|
+
type: :runtime
|
58
|
+
version_requirement:
|
59
|
+
version_requirements: !ruby/object:Gem::Requirement
|
60
|
+
requirements:
|
61
|
+
- - ">="
|
62
|
+
- !ruby/object:Gem::Version
|
63
|
+
version: 1.0.0
|
64
|
+
version:
|
65
|
+
- !ruby/object:Gem::Dependency
|
66
|
+
name: thin
|
67
|
+
type: :runtime
|
68
|
+
version_requirement:
|
69
|
+
version_requirements: !ruby/object:Gem::Requirement
|
70
|
+
requirements:
|
71
|
+
- - ">="
|
72
|
+
- !ruby/object:Gem::Version
|
73
|
+
version: 1.2.5
|
74
|
+
version:
|
75
|
+
- !ruby/object:Gem::Dependency
|
76
|
+
name: rerun
|
77
|
+
type: :runtime
|
78
|
+
version_requirement:
|
79
|
+
version_requirements: !ruby/object:Gem::Requirement
|
80
|
+
requirements:
|
81
|
+
- - ">="
|
82
|
+
- !ruby/object:Gem::Version
|
83
|
+
version: 0.5.2
|
84
|
+
version:
|
85
|
+
- !ruby/object:Gem::Dependency
|
86
|
+
name: builder
|
87
|
+
type: :runtime
|
88
|
+
version_requirement:
|
89
|
+
version_requirements: !ruby/object:Gem::Requirement
|
90
|
+
requirements:
|
91
|
+
- - ">="
|
92
|
+
- !ruby/object:Gem::Version
|
93
|
+
version: 2.1.2
|
94
|
+
version:
|
95
|
+
- !ruby/object:Gem::Dependency
|
96
|
+
name: json
|
97
|
+
type: :runtime
|
98
|
+
version_requirement:
|
99
|
+
version_requirements: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - ">="
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: 1.2.3
|
104
|
+
version:
|
105
|
+
- !ruby/object:Gem::Dependency
|
106
|
+
name: rack-accept-media-types
|
107
|
+
type: :runtime
|
108
|
+
version_requirement:
|
109
|
+
version_requirements: !ruby/object:Gem::Requirement
|
110
|
+
requirements:
|
111
|
+
- - ">="
|
112
|
+
- !ruby/object:Gem::Version
|
113
|
+
version: "0.9"
|
114
|
+
version:
|
115
|
+
- !ruby/object:Gem::Dependency
|
116
|
+
name: compass
|
117
|
+
type: :development
|
118
|
+
version_requirement:
|
119
|
+
version_requirements: !ruby/object:Gem::Requirement
|
120
|
+
requirements:
|
121
|
+
- - ">="
|
122
|
+
- !ruby/object:Gem::Version
|
123
|
+
version: 0.8.17
|
124
|
+
version:
|
125
|
+
- !ruby/object:Gem::Dependency
|
126
|
+
name: nokogiri
|
127
|
+
type: :development
|
128
|
+
version_requirement:
|
129
|
+
version_requirements: !ruby/object:Gem::Requirement
|
130
|
+
requirements:
|
131
|
+
- - ">="
|
132
|
+
- !ruby/object:Gem::Version
|
133
|
+
version: 1.4.1
|
134
|
+
version:
|
135
|
+
- !ruby/object:Gem::Dependency
|
136
|
+
name: rack-test
|
137
|
+
type: :development
|
138
|
+
version_requirement:
|
139
|
+
version_requirements: !ruby/object:Gem::Requirement
|
140
|
+
requirements:
|
141
|
+
- - ">="
|
142
|
+
- !ruby/object:Gem::Version
|
143
|
+
version: 0.5.3
|
144
|
+
version:
|
145
|
+
- !ruby/object:Gem::Dependency
|
146
|
+
name: cucumber
|
147
|
+
type: :development
|
148
|
+
version_requirement:
|
149
|
+
version_requirements: !ruby/object:Gem::Requirement
|
150
|
+
requirements:
|
151
|
+
- - ">="
|
152
|
+
- !ruby/object:Gem::Version
|
153
|
+
version: 0.6.3
|
154
|
+
version:
|
155
|
+
- !ruby/object:Gem::Dependency
|
156
|
+
name: rcov
|
157
|
+
type: :development
|
158
|
+
version_requirement:
|
159
|
+
version_requirements: !ruby/object:Gem::Requirement
|
160
|
+
requirements:
|
161
|
+
- - ">="
|
162
|
+
- !ruby/object:Gem::Version
|
163
|
+
version: 0.9.8
|
164
|
+
version:
|
165
|
+
description: " The Deltacloud API is built as a service-based REST API.\n You do not directly link a Deltacloud library into your program to use it.\n Instead, a client speaks the Deltacloud API over HTTP to a server\n which implements the REST interface.\n"
|
166
|
+
email: deltacloud-users@lists.fedorahosted.org
|
167
|
+
executables:
|
168
|
+
- deltacloudd
|
169
|
+
extensions: []
|
170
|
+
|
171
|
+
extra_rdoc_files:
|
172
|
+
- COPYING
|
173
|
+
files:
|
174
|
+
- Rakefile
|
175
|
+
- config.ru
|
176
|
+
- server.rb
|
177
|
+
- deltacloud.rb
|
178
|
+
- lib/converters/xml_converter.rb
|
179
|
+
- lib/deltacloud/base_driver.rb
|
180
|
+
- lib/deltacloud/base_driver/base_driver.rb
|
181
|
+
- lib/deltacloud/base_driver/features.rb
|
182
|
+
- lib/deltacloud/drivers/ec2/ec2_driver.rb
|
183
|
+
- lib/deltacloud/drivers/ec2/ec2_mock_driver.rb
|
184
|
+
- lib/deltacloud/drivers/gogrid/gogrid_client.rb
|
185
|
+
- lib/deltacloud/drivers/gogrid/gogrid_driver.rb
|
186
|
+
- lib/deltacloud/drivers/mock/mock_driver.rb
|
187
|
+
- lib/deltacloud/drivers/opennebula/cloud_client.rb
|
188
|
+
- lib/deltacloud/drivers/opennebula/occi_client.rb
|
189
|
+
- lib/deltacloud/drivers/opennebula/opennebula_driver.rb
|
190
|
+
- lib/deltacloud/drivers/rackspace/rackspace_client.rb
|
191
|
+
- lib/deltacloud/drivers/rackspace/rackspace_driver.rb
|
192
|
+
- lib/deltacloud/drivers/rhevm/rhevm_driver.rb
|
193
|
+
- lib/deltacloud/drivers/rimu/rimu_hosting_client.rb
|
194
|
+
- lib/deltacloud/drivers/rimu/rimu_hosting_driver.rb
|
195
|
+
- lib/deltacloud/hardware_profile.rb
|
196
|
+
- lib/deltacloud/helpers.rb
|
197
|
+
- lib/deltacloud/helpers/application_helper.rb
|
198
|
+
- lib/deltacloud/helpers/conversion_helper.rb
|
199
|
+
- lib/deltacloud/helpers/hardware_profiles_helper.rb
|
200
|
+
- lib/deltacloud/models/base_model.rb
|
201
|
+
- lib/deltacloud/models/instance.rb
|
202
|
+
- lib/deltacloud/models/image.rb
|
203
|
+
- lib/deltacloud/models/realm.rb
|
204
|
+
- lib/deltacloud/models/storage_snapshot.rb
|
205
|
+
- lib/deltacloud/models/storage_volume.rb
|
206
|
+
- lib/deltacloud/models/instance_profile.rb
|
207
|
+
- lib/deltacloud/state_machine.rb
|
208
|
+
- lib/deltacloud/validation.rb
|
209
|
+
- lib/sinatra/lazy_auth.rb
|
210
|
+
- lib/sinatra/rabbit.rb
|
211
|
+
- lib/sinatra/respond_to.rb
|
212
|
+
- lib/sinatra/static_assets.rb
|
213
|
+
- lib/sinatra/url_for.rb
|
214
|
+
- lib/drivers.rb
|
215
|
+
- views/accounts/index.html.haml
|
216
|
+
- views/accounts/show.html.haml
|
217
|
+
- views/api/show.html.haml
|
218
|
+
- views/api/show.xml.haml
|
219
|
+
- views/docs/collection.html.haml
|
220
|
+
- views/docs/collection.xml.haml
|
221
|
+
- views/docs/index.html.haml
|
222
|
+
- views/docs/index.xml.haml
|
223
|
+
- views/docs/operation.html.haml
|
224
|
+
- views/docs/operation.xml.haml
|
225
|
+
- views/errors/auth_exception.html.haml
|
226
|
+
- views/errors/auth_exception.xml.haml
|
227
|
+
- views/errors/backend_error.html.haml
|
228
|
+
- views/errors/backend_error.xml.haml
|
229
|
+
- views/errors/validation_failure.html.haml
|
230
|
+
- views/errors/validation_failure.xml.haml
|
231
|
+
- views/hardware_profiles/index.html.haml
|
232
|
+
- views/hardware_profiles/show.html.haml
|
233
|
+
- views/hardware_profiles/index.xml.haml
|
234
|
+
- views/hardware_profiles/show.xml.haml
|
235
|
+
- views/images/index.html.haml
|
236
|
+
- views/images/show.html.haml
|
237
|
+
- views/images/index.xml.haml
|
238
|
+
- views/images/show.xml.haml
|
239
|
+
- views/instance_states/show.html.haml
|
240
|
+
- views/instance_states/show.xml.haml
|
241
|
+
- views/instances/index.html.haml
|
242
|
+
- views/instances/new.html.haml
|
243
|
+
- views/instances/show.html.haml
|
244
|
+
- views/instances/index.xml.haml
|
245
|
+
- views/instances/show.xml.haml
|
246
|
+
- views/layout.html.haml
|
247
|
+
- views/realms/index.html.haml
|
248
|
+
- views/realms/show.html.haml
|
249
|
+
- views/realms/index.xml.haml
|
250
|
+
- views/realms/show.xml.haml
|
251
|
+
- views/root/index.html.haml
|
252
|
+
- views/storage_snapshots/index.html.haml
|
253
|
+
- views/storage_snapshots/show.html.haml
|
254
|
+
- views/storage_snapshots/index.xml.haml
|
255
|
+
- views/storage_snapshots/show.xml.haml
|
256
|
+
- views/storage_volumes/index.html.haml
|
257
|
+
- views/storage_volumes/show.html.haml
|
258
|
+
- views/storage_volumes/index.xml.haml
|
259
|
+
- views/storage_volumes/show.xml.haml
|
260
|
+
- views/instance_states/show.gv.erb
|
261
|
+
- public/favicon.ico
|
262
|
+
- public/images/grid.png
|
263
|
+
- public/images/logo-wide.png
|
264
|
+
- public/images/rails.png
|
265
|
+
- public/images/topbar-bg.png
|
266
|
+
- public/javascripts/application.js
|
267
|
+
- public/javascripts/controls.js
|
268
|
+
- public/javascripts/dragdrop.js
|
269
|
+
- public/javascripts/effects.js
|
270
|
+
- public/javascripts/prototype.js
|
271
|
+
- public/stylesheets/compiled/application.css
|
272
|
+
- public/stylesheets/compiled/ie.css
|
273
|
+
- public/stylesheets/compiled/print.css
|
274
|
+
- public/stylesheets/compiled/screen.css
|
275
|
+
- bin/deltacloudd
|
276
|
+
- COPYING
|
277
|
+
has_rdoc: true
|
278
|
+
homepage: http://www.deltacloud.org
|
279
|
+
licenses: []
|
280
|
+
|
281
|
+
post_install_message:
|
282
|
+
rdoc_options: []
|
283
|
+
|
284
|
+
require_paths:
|
285
|
+
- lib
|
286
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
287
|
+
requirements:
|
288
|
+
- - ">="
|
289
|
+
- !ruby/object:Gem::Version
|
290
|
+
version: 1.8.1
|
291
|
+
version:
|
292
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
293
|
+
requirements:
|
294
|
+
- - ">="
|
295
|
+
- !ruby/object:Gem::Version
|
296
|
+
version: "0"
|
297
|
+
version:
|
298
|
+
requirements: []
|
299
|
+
|
300
|
+
rubyforge_project:
|
301
|
+
rubygems_version: 1.3.5
|
302
|
+
signing_key:
|
303
|
+
specification_version: 3
|
304
|
+
summary: Deltacloud REST API
|
305
|
+
test_files:
|
306
|
+
- tests/deltacloud_test.rb
|
307
|
+
- tests/images_test.rb
|
308
|
+
- tests/instances_test.rb
|
309
|
+
- tests/realms_test.rb
|
310
|
+
- tests/storage_snapshots_test.rb
|
311
|
+
- tests/storage_volumes_test.rb
|