bbrowning-deltacloud-core 0.0.4-java

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (134) hide show
  1. data/COPYING +176 -0
  2. data/Rakefile +99 -0
  3. data/bin/deltacloudd +120 -0
  4. data/config.ru +5 -0
  5. data/deltacloud.rb +18 -0
  6. data/lib/deltacloud/base_driver/base_driver.rb +229 -0
  7. data/lib/deltacloud/base_driver/features.rb +166 -0
  8. data/lib/deltacloud/base_driver/mock_driver.rb +40 -0
  9. data/lib/deltacloud/base_driver.rb +20 -0
  10. data/lib/deltacloud/drivers/ec2/ec2_driver.rb +410 -0
  11. data/lib/deltacloud/drivers/ec2/ec2_mock_driver.rb +170 -0
  12. data/lib/deltacloud/drivers/gogrid/gogrid_client.rb +50 -0
  13. data/lib/deltacloud/drivers/gogrid/gogrid_driver.rb +332 -0
  14. data/lib/deltacloud/drivers/gogrid/test.rb +13 -0
  15. data/lib/deltacloud/drivers/mock/data/images/img1.yml +3 -0
  16. data/lib/deltacloud/drivers/mock/data/images/img2.yml +3 -0
  17. data/lib/deltacloud/drivers/mock/data/images/img3.yml +3 -0
  18. data/lib/deltacloud/drivers/mock/data/instances/inst0.yml +16 -0
  19. data/lib/deltacloud/drivers/mock/data/instances/inst1.yml +9 -0
  20. data/lib/deltacloud/drivers/mock/data/instances/inst2.yml +9 -0
  21. data/lib/deltacloud/drivers/mock/data/storage_snapshots/snap1.yml +4 -0
  22. data/lib/deltacloud/drivers/mock/data/storage_snapshots/snap2.yml +4 -0
  23. data/lib/deltacloud/drivers/mock/data/storage_snapshots/snap3.yml +4 -0
  24. data/lib/deltacloud/drivers/mock/data/storage_volumes/vol1.yml +6 -0
  25. data/lib/deltacloud/drivers/mock/data/storage_volumes/vol2.yml +6 -0
  26. data/lib/deltacloud/drivers/mock/data/storage_volumes/vol3.yml +6 -0
  27. data/lib/deltacloud/drivers/mock/mock_driver.rb +277 -0
  28. data/lib/deltacloud/drivers/opennebula/cloud_client.rb +116 -0
  29. data/lib/deltacloud/drivers/opennebula/occi_client.rb +204 -0
  30. data/lib/deltacloud/drivers/opennebula/opennebula_driver.rb +241 -0
  31. data/lib/deltacloud/drivers/rackspace/rackspace_client.rb +130 -0
  32. data/lib/deltacloud/drivers/rackspace/rackspace_driver.rb +182 -0
  33. data/lib/deltacloud/drivers/rhevm/rhevm_driver.rb +255 -0
  34. data/lib/deltacloud/drivers/rimuhosting/rimuhosting_client.rb +85 -0
  35. data/lib/deltacloud/drivers/rimuhosting/rimuhosting_driver.rb +166 -0
  36. data/lib/deltacloud/drivers/terremark/terremark_driver.rb +286 -0
  37. data/lib/deltacloud/hardware_profile.rb +153 -0
  38. data/lib/deltacloud/helpers/application_helper.rb +115 -0
  39. data/lib/deltacloud/helpers/conversion_helper.rb +39 -0
  40. data/lib/deltacloud/helpers/hardware_profiles_helper.rb +35 -0
  41. data/lib/deltacloud/helpers.rb +5 -0
  42. data/lib/deltacloud/method_serializer.rb +85 -0
  43. data/lib/deltacloud/models/base_model.rb +59 -0
  44. data/lib/deltacloud/models/image.rb +27 -0
  45. data/lib/deltacloud/models/instance.rb +38 -0
  46. data/lib/deltacloud/models/instance_profile.rb +48 -0
  47. data/lib/deltacloud/models/key.rb +35 -0
  48. data/lib/deltacloud/models/realm.rb +26 -0
  49. data/lib/deltacloud/models/storage_snapshot.rb +27 -0
  50. data/lib/deltacloud/models/storage_volume.rb +28 -0
  51. data/lib/deltacloud/state_machine.rb +84 -0
  52. data/lib/deltacloud/validation.rb +70 -0
  53. data/lib/drivers.rb +50 -0
  54. data/lib/sinatra/accept_media_types.rb +128 -0
  55. data/lib/sinatra/lazy_auth.rb +56 -0
  56. data/lib/sinatra/rabbit.rb +273 -0
  57. data/lib/sinatra/respond_to.rb +272 -0
  58. data/lib/sinatra/static_assets.rb +83 -0
  59. data/lib/sinatra/url_for.rb +53 -0
  60. data/public/favicon.ico +0 -0
  61. data/public/images/grid.png +0 -0
  62. data/public/images/logo-wide.png +0 -0
  63. data/public/images/rails.png +0 -0
  64. data/public/images/topbar-bg.png +0 -0
  65. data/public/javascripts/application.js +32 -0
  66. data/public/javascripts/jquery-1.4.2.min.js +154 -0
  67. data/public/stylesheets/compiled/application.css +613 -0
  68. data/public/stylesheets/compiled/ie.css +31 -0
  69. data/public/stylesheets/compiled/print.css +27 -0
  70. data/public/stylesheets/compiled/screen.css +456 -0
  71. data/server.rb +354 -0
  72. data/support/fedora/deltacloudd +68 -0
  73. data/support/fedora/rubygem-deltacloud-core.spec +91 -0
  74. data/tests/api_test.rb +37 -0
  75. data/tests/hardware_profiles_test.rb +120 -0
  76. data/tests/images_test.rb +111 -0
  77. data/tests/instance_states_test.rb +52 -0
  78. data/tests/instances_test.rb +219 -0
  79. data/tests/realms_test.rb +78 -0
  80. data/tests/url_for_test.rb +50 -0
  81. data/views/accounts/index.html.haml +11 -0
  82. data/views/accounts/show.html.haml +30 -0
  83. data/views/api/show.html.haml +15 -0
  84. data/views/api/show.xml.haml +5 -0
  85. data/views/docs/collection.html.haml +37 -0
  86. data/views/docs/collection.xml.haml +14 -0
  87. data/views/docs/index.html.haml +15 -0
  88. data/views/docs/index.xml.haml +5 -0
  89. data/views/docs/operation.html.haml +31 -0
  90. data/views/docs/operation.xml.haml +10 -0
  91. data/views/errors/auth_exception.html.haml +8 -0
  92. data/views/errors/auth_exception.xml.haml +2 -0
  93. data/views/errors/backend_error.html.haml +19 -0
  94. data/views/errors/backend_error.xml.haml +8 -0
  95. data/views/errors/not_found.html.haml +6 -0
  96. data/views/errors/not_found.xml.haml +2 -0
  97. data/views/errors/validation_failure.html.haml +11 -0
  98. data/views/errors/validation_failure.xml.haml +7 -0
  99. data/views/hardware_profiles/index.html.haml +25 -0
  100. data/views/hardware_profiles/index.xml.haml +4 -0
  101. data/views/hardware_profiles/show.html.haml +19 -0
  102. data/views/hardware_profiles/show.xml.haml +18 -0
  103. data/views/images/index.html.haml +30 -0
  104. data/views/images/index.xml.haml +8 -0
  105. data/views/images/show.html.haml +21 -0
  106. data/views/images/show.xml.haml +5 -0
  107. data/views/instance_states/show.gv.erb +45 -0
  108. data/views/instance_states/show.html.haml +31 -0
  109. data/views/instance_states/show.xml.haml +8 -0
  110. data/views/instances/index.html.haml +30 -0
  111. data/views/instances/index.xml.haml +21 -0
  112. data/views/instances/new.html.haml +55 -0
  113. data/views/instances/show.html.haml +43 -0
  114. data/views/instances/show.xml.haml +49 -0
  115. data/views/keys/index.html.haml +26 -0
  116. data/views/keys/index.xml.haml +4 -0
  117. data/views/keys/new.html.haml +8 -0
  118. data/views/keys/show.html.haml +22 -0
  119. data/views/keys/show.xml.haml +20 -0
  120. data/views/layout.html.haml +26 -0
  121. data/views/realms/index.html.haml +29 -0
  122. data/views/realms/index.xml.haml +10 -0
  123. data/views/realms/show.html.haml +15 -0
  124. data/views/realms/show.xml.haml +9 -0
  125. data/views/root/index.html.haml +4 -0
  126. data/views/storage_snapshots/index.html.haml +20 -0
  127. data/views/storage_snapshots/index.xml.haml +9 -0
  128. data/views/storage_snapshots/show.html.haml +14 -0
  129. data/views/storage_snapshots/show.xml.haml +7 -0
  130. data/views/storage_volumes/index.html.haml +21 -0
  131. data/views/storage_volumes/index.xml.haml +13 -0
  132. data/views/storage_volumes/show.html.haml +20 -0
  133. data/views/storage_volumes/show.xml.haml +11 -0
  134. metadata +334 -0
@@ -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,10 @@
1
+ !!!XML
2
+ %realms
3
+ - @elements.each do |realm|
4
+ %realm{:href => realm_url(realm.id), :id => realm.id }
5
+ %name<
6
+ =realm.name
7
+ %state<
8
+ =realm.state
9
+ %limit<
10
+ =realm.limit.eql?(:unlimited) ? '' : realm.limit
@@ -0,0 +1,15 @@
1
+ %h1
2
+ = @realm.id
3
+ %dl
4
+ %di
5
+ %dt Name
6
+ %dd
7
+ = @realm.name
8
+ %di
9
+ %dt State
10
+ %dd
11
+ = @realm.state
12
+ %di
13
+ %dt Limit
14
+ %dd
15
+ = @realm.limit
@@ -0,0 +1,9 @@
1
+ !!!XML
2
+ %realm{:href => realm_url(@realm.id), :id => @realm.id }
3
+ %name<
4
+ =@realm.name
5
+ %state<
6
+ =@realm.state
7
+ - unless @realm.limit.eql?(:unlimited)
8
+ %limit<
9
+ =@realm.limit
@@ -0,0 +1,4 @@
1
+ %h1
2
+ Deltacloud:
3
+ = DRIVER.to_s.titlecase
4
+ = link_to 'API', api_url
@@ -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,9 @@
1
+ !!!XML
2
+ %storage_snapshots
3
+ - @elements.each do |snapshot|
4
+ %storage_snapshot{ :href => storage_snapshot_url(snapshot.id), :id => snapshot.id }
5
+ %created<
6
+ =snapshot.created
7
+ %state<
8
+ =snapshot.state
9
+ %storage_volume{ :href => storage_volume_url(snapshot.storage_volume_id), :id => snapshot.storage_volume_id }
@@ -0,0 +1,14 @@
1
+ %h1
2
+ = @storage_snapshot.id
3
+
4
+ %dl
5
+ %di
6
+ %dt Volume
7
+ %dd
8
+ = @storage_snapshot.storage_volume_id
9
+ %dt Created
10
+ %dd
11
+ = @storage_snapshot.created
12
+ %dt State
13
+ %dd
14
+ = @storage_snapshot.state
@@ -0,0 +1,7 @@
1
+ !!!XML
2
+ %storage_snapshot{:href => storage_snapshot_url(@storage_snapshot.id), :id => @storage_snapshot.id }
3
+ %created<
4
+ =@storage_snapshot.created
5
+ %state<
6
+ =@storage_snapshot.state
7
+ %storage_volume{:href => storage_volume_url(@storage_snapshot.storage_volume_id), :id => @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), :id => volume.id }
5
+ %created<
6
+ =volume.created
7
+ %capacity<
8
+ =volume.capacity
9
+ - unless volume.device.nil?
10
+ %device<
11
+ =volume.device
12
+ - unless volume.instance_id.nil?
13
+ %instance{:href => instance_url(volume.instance_id), :id => 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,11 @@
1
+ !!!XML
2
+ %storage_volume{ :href => storage_volume_url(@storage_volume.id), :id => @storage_volume.id}
3
+ %created<
4
+ =@storage_volume.created
5
+ %capacity<
6
+ =@storage_volume.capacity
7
+ %device<
8
+ =@storage_volume.device
9
+ %state<
10
+ =@storage_volume.state
11
+ %instance{:href => @storage_volume.instance_id, :id => @storage_volume.instance_id}
metadata ADDED
@@ -0,0 +1,334 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: bbrowning-deltacloud-core
3
+ version: !ruby/object:Gem::Version
4
+ prerelease: false
5
+ segments:
6
+ - 0
7
+ - 0
8
+ - 4
9
+ version: 0.0.4
10
+ platform: java
11
+ authors:
12
+ - Red Hat, Inc.
13
+ autorequire:
14
+ bindir: bin
15
+ cert_chain: []
16
+
17
+ date: 2010-09-01 00:00:00 -04:00
18
+ default_executable:
19
+ dependencies:
20
+ - !ruby/object:Gem::Dependency
21
+ name: rake
22
+ prerelease: false
23
+ requirement: &id001 !ruby/object:Gem::Requirement
24
+ requirements:
25
+ - - ">="
26
+ - !ruby/object:Gem::Version
27
+ segments:
28
+ - 0
29
+ - 8
30
+ - 7
31
+ version: 0.8.7
32
+ type: :runtime
33
+ version_requirements: *id001
34
+ - !ruby/object:Gem::Dependency
35
+ name: haml
36
+ prerelease: false
37
+ requirement: &id002 !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - ">="
40
+ - !ruby/object:Gem::Version
41
+ segments:
42
+ - 2
43
+ - 2
44
+ - 17
45
+ version: 2.2.17
46
+ type: :runtime
47
+ version_requirements: *id002
48
+ - !ruby/object:Gem::Dependency
49
+ name: sinatra
50
+ prerelease: false
51
+ requirement: &id003 !ruby/object:Gem::Requirement
52
+ requirements:
53
+ - - ">="
54
+ - !ruby/object:Gem::Version
55
+ segments:
56
+ - 0
57
+ - 9
58
+ - 4
59
+ version: 0.9.4
60
+ type: :runtime
61
+ version_requirements: *id003
62
+ - !ruby/object:Gem::Dependency
63
+ name: rack
64
+ prerelease: false
65
+ requirement: &id004 !ruby/object:Gem::Requirement
66
+ requirements:
67
+ - - ">="
68
+ - !ruby/object:Gem::Version
69
+ segments:
70
+ - 1
71
+ - 0
72
+ - 0
73
+ version: 1.0.0
74
+ type: :runtime
75
+ version_requirements: *id004
76
+ - !ruby/object:Gem::Dependency
77
+ name: json
78
+ prerelease: false
79
+ requirement: &id005 !ruby/object:Gem::Requirement
80
+ requirements:
81
+ - - ">="
82
+ - !ruby/object:Gem::Version
83
+ segments:
84
+ - 1
85
+ - 4
86
+ - 3
87
+ version: 1.4.3
88
+ type: :runtime
89
+ version_requirements: *id005
90
+ - !ruby/object:Gem::Dependency
91
+ name: compass
92
+ prerelease: false
93
+ requirement: &id006 !ruby/object:Gem::Requirement
94
+ requirements:
95
+ - - ">="
96
+ - !ruby/object:Gem::Version
97
+ segments:
98
+ - 0
99
+ - 8
100
+ - 17
101
+ version: 0.8.17
102
+ type: :development
103
+ version_requirements: *id006
104
+ - !ruby/object:Gem::Dependency
105
+ name: nokogiri
106
+ prerelease: false
107
+ requirement: &id007 !ruby/object:Gem::Requirement
108
+ requirements:
109
+ - - ">="
110
+ - !ruby/object:Gem::Version
111
+ segments:
112
+ - 1
113
+ - 4
114
+ - 1
115
+ version: 1.4.1
116
+ type: :development
117
+ version_requirements: *id007
118
+ - !ruby/object:Gem::Dependency
119
+ name: rack-test
120
+ prerelease: false
121
+ requirement: &id008 !ruby/object:Gem::Requirement
122
+ requirements:
123
+ - - ">="
124
+ - !ruby/object:Gem::Version
125
+ segments:
126
+ - 0
127
+ - 5
128
+ - 3
129
+ version: 0.5.3
130
+ type: :development
131
+ version_requirements: *id008
132
+ - !ruby/object:Gem::Dependency
133
+ name: cucumber
134
+ prerelease: false
135
+ requirement: &id009 !ruby/object:Gem::Requirement
136
+ requirements:
137
+ - - ">="
138
+ - !ruby/object:Gem::Version
139
+ segments:
140
+ - 0
141
+ - 6
142
+ - 3
143
+ version: 0.6.3
144
+ type: :development
145
+ version_requirements: *id009
146
+ - !ruby/object:Gem::Dependency
147
+ name: rcov
148
+ prerelease: false
149
+ requirement: &id010 !ruby/object:Gem::Requirement
150
+ requirements:
151
+ - - ">="
152
+ - !ruby/object:Gem::Version
153
+ segments:
154
+ - 0
155
+ - 9
156
+ - 8
157
+ version: 0.9.8
158
+ type: :development
159
+ version_requirements: *id010
160
+ 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"
161
+ email: deltacloud-users@lists.fedorahosted.org
162
+ executables:
163
+ - deltacloudd
164
+ extensions: []
165
+
166
+ extra_rdoc_files:
167
+ - COPYING
168
+ files:
169
+ - Rakefile
170
+ - config.ru
171
+ - deltacloud.rb
172
+ - server.rb
173
+ - support/fedora/deltacloudd
174
+ - support/fedora/rubygem-deltacloud-core.spec
175
+ - lib/drivers.rb
176
+ - lib/deltacloud/base_driver.rb
177
+ - lib/deltacloud/hardware_profile.rb
178
+ - lib/deltacloud/helpers.rb
179
+ - lib/deltacloud/method_serializer.rb
180
+ - lib/deltacloud/state_machine.rb
181
+ - lib/deltacloud/validation.rb
182
+ - lib/deltacloud/base_driver/base_driver.rb
183
+ - lib/deltacloud/base_driver/features.rb
184
+ - lib/deltacloud/base_driver/mock_driver.rb
185
+ - lib/deltacloud/drivers/ec2/ec2_driver.rb
186
+ - lib/deltacloud/drivers/ec2/ec2_mock_driver.rb
187
+ - lib/deltacloud/drivers/gogrid/gogrid_client.rb
188
+ - lib/deltacloud/drivers/gogrid/gogrid_driver.rb
189
+ - lib/deltacloud/drivers/gogrid/test.rb
190
+ - lib/deltacloud/drivers/mock/mock_driver.rb
191
+ - lib/deltacloud/drivers/opennebula/cloud_client.rb
192
+ - lib/deltacloud/drivers/opennebula/occi_client.rb
193
+ - lib/deltacloud/drivers/opennebula/opennebula_driver.rb
194
+ - lib/deltacloud/drivers/rackspace/rackspace_client.rb
195
+ - lib/deltacloud/drivers/rackspace/rackspace_driver.rb
196
+ - lib/deltacloud/drivers/rhevm/rhevm_driver.rb
197
+ - lib/deltacloud/drivers/rimuhosting/rimuhosting_client.rb
198
+ - lib/deltacloud/drivers/rimuhosting/rimuhosting_driver.rb
199
+ - lib/deltacloud/drivers/terremark/terremark_driver.rb
200
+ - lib/deltacloud/helpers/application_helper.rb
201
+ - lib/deltacloud/helpers/conversion_helper.rb
202
+ - lib/deltacloud/helpers/hardware_profiles_helper.rb
203
+ - lib/deltacloud/models/base_model.rb
204
+ - lib/deltacloud/models/image.rb
205
+ - lib/deltacloud/models/instance.rb
206
+ - lib/deltacloud/models/instance_profile.rb
207
+ - lib/deltacloud/models/key.rb
208
+ - lib/deltacloud/models/realm.rb
209
+ - lib/deltacloud/models/storage_snapshot.rb
210
+ - lib/deltacloud/models/storage_volume.rb
211
+ - lib/sinatra/accept_media_types.rb
212
+ - lib/sinatra/lazy_auth.rb
213
+ - lib/sinatra/rabbit.rb
214
+ - lib/sinatra/respond_to.rb
215
+ - lib/sinatra/static_assets.rb
216
+ - lib/sinatra/url_for.rb
217
+ - lib/deltacloud/drivers/mock/data/images/img1.yml
218
+ - lib/deltacloud/drivers/mock/data/images/img2.yml
219
+ - lib/deltacloud/drivers/mock/data/images/img3.yml
220
+ - lib/deltacloud/drivers/mock/data/instances/inst0.yml
221
+ - lib/deltacloud/drivers/mock/data/instances/inst1.yml
222
+ - lib/deltacloud/drivers/mock/data/instances/inst2.yml
223
+ - lib/deltacloud/drivers/mock/data/storage_snapshots/snap1.yml
224
+ - lib/deltacloud/drivers/mock/data/storage_snapshots/snap2.yml
225
+ - lib/deltacloud/drivers/mock/data/storage_snapshots/snap3.yml
226
+ - lib/deltacloud/drivers/mock/data/storage_volumes/vol1.yml
227
+ - lib/deltacloud/drivers/mock/data/storage_volumes/vol2.yml
228
+ - lib/deltacloud/drivers/mock/data/storage_volumes/vol3.yml
229
+ - views/layout.html.haml
230
+ - views/accounts/index.html.haml
231
+ - views/accounts/show.html.haml
232
+ - views/api/show.html.haml
233
+ - views/api/show.xml.haml
234
+ - views/docs/collection.html.haml
235
+ - views/docs/collection.xml.haml
236
+ - views/docs/index.html.haml
237
+ - views/docs/index.xml.haml
238
+ - views/docs/operation.html.haml
239
+ - views/docs/operation.xml.haml
240
+ - views/errors/auth_exception.html.haml
241
+ - views/errors/auth_exception.xml.haml
242
+ - views/errors/backend_error.html.haml
243
+ - views/errors/backend_error.xml.haml
244
+ - views/errors/not_found.html.haml
245
+ - views/errors/not_found.xml.haml
246
+ - views/errors/validation_failure.html.haml
247
+ - views/errors/validation_failure.xml.haml
248
+ - views/hardware_profiles/index.html.haml
249
+ - views/hardware_profiles/index.xml.haml
250
+ - views/hardware_profiles/show.html.haml
251
+ - views/hardware_profiles/show.xml.haml
252
+ - views/images/index.html.haml
253
+ - views/images/index.xml.haml
254
+ - views/images/show.html.haml
255
+ - views/images/show.xml.haml
256
+ - views/instance_states/show.html.haml
257
+ - views/instance_states/show.xml.haml
258
+ - views/instances/index.html.haml
259
+ - views/instances/index.xml.haml
260
+ - views/instances/new.html.haml
261
+ - views/instances/show.html.haml
262
+ - views/instances/show.xml.haml
263
+ - views/keys/index.html.haml
264
+ - views/keys/index.xml.haml
265
+ - views/keys/new.html.haml
266
+ - views/keys/show.html.haml
267
+ - views/keys/show.xml.haml
268
+ - views/realms/index.html.haml
269
+ - views/realms/index.xml.haml
270
+ - views/realms/show.html.haml
271
+ - views/realms/show.xml.haml
272
+ - views/root/index.html.haml
273
+ - views/storage_snapshots/index.html.haml
274
+ - views/storage_snapshots/index.xml.haml
275
+ - views/storage_snapshots/show.html.haml
276
+ - views/storage_snapshots/show.xml.haml
277
+ - views/storage_volumes/index.html.haml
278
+ - views/storage_volumes/index.xml.haml
279
+ - views/storage_volumes/show.html.haml
280
+ - views/storage_volumes/show.xml.haml
281
+ - views/instance_states/show.gv.erb
282
+ - public/favicon.ico
283
+ - public/images/grid.png
284
+ - public/images/logo-wide.png
285
+ - public/images/rails.png
286
+ - public/images/topbar-bg.png
287
+ - public/javascripts/application.js
288
+ - public/javascripts/jquery-1.4.2.min.js
289
+ - public/stylesheets/compiled/application.css
290
+ - public/stylesheets/compiled/ie.css
291
+ - public/stylesheets/compiled/print.css
292
+ - public/stylesheets/compiled/screen.css
293
+ - bin/deltacloudd
294
+ - COPYING
295
+ has_rdoc: true
296
+ homepage: http://www.deltacloud.org
297
+ licenses: []
298
+
299
+ post_install_message:
300
+ rdoc_options: []
301
+
302
+ require_paths:
303
+ - lib
304
+ required_ruby_version: !ruby/object:Gem::Requirement
305
+ requirements:
306
+ - - ">="
307
+ - !ruby/object:Gem::Version
308
+ segments:
309
+ - 1
310
+ - 8
311
+ - 1
312
+ version: 1.8.1
313
+ required_rubygems_version: !ruby/object:Gem::Requirement
314
+ requirements:
315
+ - - ">="
316
+ - !ruby/object:Gem::Version
317
+ segments:
318
+ - 0
319
+ version: "0"
320
+ requirements: []
321
+
322
+ rubyforge_project:
323
+ rubygems_version: 1.3.6
324
+ signing_key:
325
+ specification_version: 3
326
+ summary: Deltacloud REST API
327
+ test_files:
328
+ - tests/api_test.rb
329
+ - tests/hardware_profiles_test.rb
330
+ - tests/images_test.rb
331
+ - tests/instance_states_test.rb
332
+ - tests/instances_test.rb
333
+ - tests/realms_test.rb
334
+ - tests/url_for_test.rb