tim 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (198) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.rdoc +392 -0
  3. data/Rakefile +33 -0
  4. data/app/assets/javascripts/tim/application.js +15 -0
  5. data/app/assets/stylesheets/tim/application.css +13 -0
  6. data/app/controllers/tim/application_controller.rb +19 -0
  7. data/app/controllers/tim/base_images_controller.rb +59 -0
  8. data/app/controllers/tim/entrypoint_controller.rb +8 -0
  9. data/app/controllers/tim/image_versions_controller.rb +48 -0
  10. data/app/controllers/tim/provider_images_controller.rb +59 -0
  11. data/app/controllers/tim/target_images_controller.rb +61 -0
  12. data/app/controllers/tim/templates_controller.rb +47 -0
  13. data/app/filters/tim/user_keys_filter.rb +59 -0
  14. data/app/helpers/tim/application_helper.rb +4 -0
  15. data/app/models/tim/base.rb +6 -0
  16. data/app/models/tim/base_image.rb +15 -0
  17. data/app/models/tim/image_version.rb +13 -0
  18. data/app/models/tim/provider_image.rb +51 -0
  19. data/app/models/tim/target_image.rb +50 -0
  20. data/app/models/tim/template.rb +19 -0
  21. data/app/responders/tim/custom_responder.rb +24 -0
  22. data/app/validators/template_validator.rb +15 -0
  23. data/app/views/layouts/tim/application.html.erb +14 -0
  24. data/app/views/tim/base_images/_base_image.xml.haml +11 -0
  25. data/app/views/tim/base_images/_base_image_minimal.xml.haml +2 -0
  26. data/app/views/tim/base_images/_form.html.erb +17 -0
  27. data/app/views/tim/base_images/edit.html.erb +6 -0
  28. data/app/views/tim/base_images/index.html.erb +17 -0
  29. data/app/views/tim/base_images/index.xml.haml +4 -0
  30. data/app/views/tim/base_images/new.html.erb +5 -0
  31. data/app/views/tim/base_images/show.html.erb +5 -0
  32. data/app/views/tim/base_images/show.xml.haml +2 -0
  33. data/app/views/tim/entrypoint/index.xml.haml +7 -0
  34. data/app/views/tim/image_versions/_form.html.erb +17 -0
  35. data/app/views/tim/image_versions/_image_version.xml.haml +9 -0
  36. data/app/views/tim/image_versions/_image_version_minimal.xml.haml +2 -0
  37. data/app/views/tim/image_versions/edit.html.erb +6 -0
  38. data/app/views/tim/image_versions/index.html.erb +17 -0
  39. data/app/views/tim/image_versions/index.xml.haml +4 -0
  40. data/app/views/tim/image_versions/new.html.erb +5 -0
  41. data/app/views/tim/image_versions/show.html.erb +5 -0
  42. data/app/views/tim/image_versions/show.xml.haml +2 -0
  43. data/app/views/tim/images/_form.html.erb +17 -0
  44. data/app/views/tim/images/edit.html.erb +6 -0
  45. data/app/views/tim/images/index.html.erb +21 -0
  46. data/app/views/tim/images/new.html.erb +5 -0
  47. data/app/views/tim/images/show.html.erb +5 -0
  48. data/app/views/tim/layouts/application.html.erb +14 -0
  49. data/app/views/tim/provider_images/_form.html.erb +17 -0
  50. data/app/views/tim/provider_images/_provider_image.xml.haml +12 -0
  51. data/app/views/tim/provider_images/_provider_image_minimal.xml.haml +2 -0
  52. data/app/views/tim/provider_images/edit.html.erb +6 -0
  53. data/app/views/tim/provider_images/index.html.erb +17 -0
  54. data/app/views/tim/provider_images/index.xml.haml +4 -0
  55. data/app/views/tim/provider_images/new.html.erb +5 -0
  56. data/app/views/tim/provider_images/show.html.erb +5 -0
  57. data/app/views/tim/provider_images/show.xml.haml +2 -0
  58. data/app/views/tim/target_images/_form.html.erb +17 -0
  59. data/app/views/tim/target_images/_target_image.xml.haml +13 -0
  60. data/app/views/tim/target_images/_target_image_minimal.xml.haml +2 -0
  61. data/app/views/tim/target_images/edit.html.erb +6 -0
  62. data/app/views/tim/target_images/index.html.erb +21 -0
  63. data/app/views/tim/target_images/index.xml.haml +4 -0
  64. data/app/views/tim/target_images/new.html.erb +5 -0
  65. data/app/views/tim/target_images/show.html.erb +5 -0
  66. data/app/views/tim/target_images/show.xml.haml +2 -0
  67. data/app/views/tim/templates/_form.html.erb +17 -0
  68. data/app/views/tim/templates/_template.xml.haml +8 -0
  69. data/app/views/tim/templates/_template_minimal.xml.haml +2 -0
  70. data/app/views/tim/templates/edit.html.erb +6 -0
  71. data/app/views/tim/templates/index.html.erb +17 -0
  72. data/app/views/tim/templates/index.xml.haml +4 -0
  73. data/app/views/tim/templates/new.html.erb +5 -0
  74. data/app/views/tim/templates/show.html.erb +5 -0
  75. data/app/views/tim/templates/show.xml.haml +2 -0
  76. data/config/cucumber.yml +8 -0
  77. data/config/initializers/haml.rb +1 -0
  78. data/config/routes.rb +9 -0
  79. data/config/schemas/tdl.rng +282 -0
  80. data/config/user_keys.yml +26 -0
  81. data/db/migrate/20120906180351_create_tim_base_images.rb +12 -0
  82. data/db/migrate/20120906210106_create_tim_image_versions.rb +10 -0
  83. data/db/migrate/20120910175233_create_tim_templates.rb +9 -0
  84. data/db/migrate/20120911202321_create_tim_target_images.rb +14 -0
  85. data/db/migrate/20120911204329_create_tim_provider_images.rb +19 -0
  86. data/lib/generators/tim/install_generator.rb +15 -0
  87. data/lib/generators/tim/templates/README +6 -0
  88. data/lib/generators/tim/templates/tim.rb +8 -0
  89. data/lib/image_factory/image_factory.rb +4 -0
  90. data/lib/image_factory/model/base.rb +88 -0
  91. data/lib/image_factory/model/provider_image.rb +6 -0
  92. data/lib/image_factory/model/target_image.rb +6 -0
  93. data/lib/tasks/cucumber.rake +59 -0
  94. data/lib/tasks/tim_tasks.rake +4 -0
  95. data/lib/tim.rb +8 -0
  96. data/lib/tim/engine.rb +9 -0
  97. data/lib/tim/version.rb +3 -0
  98. data/spec/controllers/base_images_controller_spec.rb +131 -0
  99. data/spec/controllers/entrypoint_controller_spec.rb +32 -0
  100. data/spec/controllers/image_versions_controller_spec.rb +146 -0
  101. data/spec/controllers/provider_images_controller_spec.rb +156 -0
  102. data/spec/controllers/target_images_controller_spec.rb +153 -0
  103. data/spec/controllers/templates_controller_spec.rb +41 -0
  104. data/spec/decorators/controllers/templates_controller_decorator_spec.rb +13 -0
  105. data/spec/factories/tim/base_image.rb +10 -0
  106. data/spec/factories/tim/image_factory/provider_image.rb +10 -0
  107. data/spec/factories/tim/image_factory/status_detail.rb +0 -0
  108. data/spec/factories/tim/image_factory/target_image.rb +7 -0
  109. data/spec/factories/tim/image_version.rb +20 -0
  110. data/spec/factories/tim/provider_image.rb +9 -0
  111. data/spec/factories/tim/target_image.rb +10 -0
  112. data/spec/factories/tim/template.rb +23 -0
  113. data/spec/filters/user_keys_filter_spec.rb +41 -0
  114. data/spec/fixtures/template.xml +13 -0
  115. data/spec/models/base_image_spec.rb +39 -0
  116. data/spec/models/dummy/pool_family_spec.rb +14 -0
  117. data/spec/models/dummy/provider_account_spec.rb +18 -0
  118. data/spec/models/dummy/provider_type_spec.rb +18 -0
  119. data/spec/models/dummy/user_spec.rb +14 -0
  120. data/spec/models/image_version_spec.rb +27 -0
  121. data/spec/models/provider_image_spec.rb +69 -0
  122. data/spec/models/target_image_spec.rb +75 -0
  123. data/spec/models/template_spec.rb +16 -0
  124. data/spec/spec_helper.rb +56 -0
  125. data/spec/support/routes.rb +41 -0
  126. data/spec/validators/template_validator_spec.rb +19 -0
  127. data/spec/views/base_images_spec.rb +23 -0
  128. data/spec/views/image_versions_spec.rb +25 -0
  129. data/spec/views/provider_images_spec.rb +30 -0
  130. data/spec/views/target_images_spec.rb +25 -0
  131. data/spec/views/templates_spec.rb +24 -0
  132. data/test/dummy/Rakefile +7 -0
  133. data/test/dummy/app/assets/javascripts/application.js +15 -0
  134. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  135. data/test/dummy/app/controllers/application_controller.rb +3 -0
  136. data/test/dummy/app/decorators/tim/controllers/templates_controller_decorator.rb +8 -0
  137. data/test/dummy/app/helpers/application_helper.rb +2 -0
  138. data/test/dummy/app/models/pool_family.rb +3 -0
  139. data/test/dummy/app/models/provider_account.rb +3 -0
  140. data/test/dummy/app/models/provider_type.rb +3 -0
  141. data/test/dummy/app/models/tim/base_image.rb +6 -0
  142. data/test/dummy/app/models/user.rb +3 -0
  143. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  144. data/test/dummy/app/views/tim/base_images/_custom.xml.haml +1 -0
  145. data/test/dummy/app/views/tim/image_versions/_custom.xml.haml +1 -0
  146. data/test/dummy/app/views/tim/layouts/application.html.erb +14 -0
  147. data/test/dummy/app/views/tim/provider_images/_custom.xml.haml +1 -0
  148. data/test/dummy/app/views/tim/target_images/_custom.xml.haml +1 -0
  149. data/test/dummy/app/views/tim/templates/_custom.xml.haml +1 -0
  150. data/test/dummy/config.ru +4 -0
  151. data/test/dummy/config/application.rb +58 -0
  152. data/test/dummy/config/boot.rb +10 -0
  153. data/test/dummy/config/database.yml +28 -0
  154. data/test/dummy/config/environment.rb +5 -0
  155. data/test/dummy/config/environments/development.rb +37 -0
  156. data/test/dummy/config/environments/production.rb +67 -0
  157. data/test/dummy/config/environments/test.rb +37 -0
  158. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  159. data/test/dummy/config/initializers/inflections.rb +15 -0
  160. data/test/dummy/config/initializers/mime_types.rb +5 -0
  161. data/test/dummy/config/initializers/secret_token.rb +7 -0
  162. data/test/dummy/config/initializers/session_store.rb +8 -0
  163. data/test/dummy/config/initializers/tim.rb +8 -0
  164. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  165. data/test/dummy/config/locales/en.yml +5 -0
  166. data/test/dummy/config/routes.rb +4 -0
  167. data/test/dummy/db/development.sqlite3 +0 -0
  168. data/test/dummy/db/migrate/20120326103723532622_create_users.rb +9 -0
  169. data/test/dummy/db/migrate/20120423123114264114_create_pool_families.rb +7 -0
  170. data/test/dummy/db/migrate/20120911182850_add_pool_family_id_to_tim_base_image.rb +5 -0
  171. data/test/dummy/db/migrate/20120911202845_add_provider_type_id_to_tim_target_image.rb +5 -0
  172. data/test/dummy/db/migrate/20120911203222_create_provider_types.rb +7 -0
  173. data/test/dummy/db/migrate/20120911205431_create_provider_accounts.rb +7 -0
  174. data/test/dummy/db/schema.rb +86 -0
  175. data/test/dummy/db/test.sqlite3 +0 -0
  176. data/test/dummy/log/development.log +982 -0
  177. data/test/dummy/log/test.log +8629 -0
  178. data/test/dummy/public/404.html +26 -0
  179. data/test/dummy/public/422.html +26 -0
  180. data/test/dummy/public/500.html +26 -0
  181. data/test/dummy/public/favicon.ico +0 -0
  182. data/test/dummy/script/rails +6 -0
  183. data/test/dummy/test.rb +0 -0
  184. data/test/dummy/tmp/cache/assets/C7A/BB0/sprockets%2F13445f7a19078dd2df39517062aa6711 +0 -0
  185. data/test/dummy/tmp/cache/assets/C8C/CC0/sprockets%2F95d79f3b3096348427f3e4e38b5202e3 +0 -0
  186. data/test/dummy/tmp/cache/assets/CB0/2B0/sprockets%2F79106b90879c02a115d7f6f1c8390ac4 +0 -0
  187. data/test/dummy/tmp/cache/assets/CE0/690/sprockets%2F04c628c2a636286bfa92a4966b82b92a +0 -0
  188. data/test/dummy/tmp/cache/assets/D03/040/sprockets%2Fd9e94204d4b307145f12efc109b16c1f +0 -0
  189. data/test/dummy/tmp/cache/assets/D06/DC0/sprockets%2Fcd282851b6e4c463409ba3ece67e0510 +0 -0
  190. data/test/dummy/tmp/cache/assets/D23/5F0/sprockets%2F2a521f3183c6bbcd71bd26a5490b201e +0 -0
  191. data/test/dummy/tmp/cache/assets/D64/3A0/sprockets%2F56ac1aed10c39b12a88cb1b30f668f58 +0 -0
  192. data/test/dummy/tmp/cache/assets/D69/BD0/sprockets%2F0aaf75cf34556b33a9fec534fe4d0415 +0 -0
  193. data/test/dummy/tmp/cache/assets/D87/D80/sprockets%2Fefa3c8b210e87358c7add88cd6f49597 +0 -0
  194. data/test/dummy/tmp/cache/assets/D89/200/sprockets%2Ff9b4e953c874ed6a87de6490d055d9db +0 -0
  195. data/test/dummy/tmp/cache/assets/DF4/430/sprockets%2F403bb1de60cae4325cebd7e6c389b8ad +0 -0
  196. data/test/dummy/tmp/cache/assets/E00/500/sprockets%2Faaddc5b6f2cb6b98930cc54cf4c64a95 +0 -0
  197. data/test/dummy/tmp/cache/assets/EB3/CE0/sprockets%2Fd75a89c9fffacd99bce7eed96844eafc +0 -0
  198. metadata +432 -0
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The page you were looking for doesn't exist (404)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/404.html -->
21
+ <div class="dialog">
22
+ <h1>The page you were looking for doesn't exist.</h1>
23
+ <p>You may have mistyped the address or the page may have moved.</p>
24
+ </div>
25
+ </body>
26
+ </html>
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The change you wanted was rejected (422)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/422.html -->
21
+ <div class="dialog">
22
+ <h1>The change you wanted was rejected.</h1>
23
+ <p>Maybe you tried to change something you didn't have access to.</p>
24
+ </div>
25
+ </body>
26
+ </html>
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/500.html -->
21
+ <div class="dialog">
22
+ <h1>We're sorry, but something went wrong.</h1>
23
+ <p>We've been notified about this issue and we'll take a look at it shortly.</p>
24
+ </div>
25
+ </body>
26
+ </html>
File without changes
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+ # This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
3
+
4
+ APP_PATH = File.expand_path('../../config/application', __FILE__)
5
+ require File.expand_path('../../config/boot', __FILE__)
6
+ require 'rails/commands'
File without changes
metadata ADDED
@@ -0,0 +1,432 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: tim
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Martyn Taylor
9
+ - Jason Guiditta
10
+ autorequire:
11
+ bindir: bin
12
+ cert_chain: []
13
+ date: 2012-10-16 00:00:00.000000000 Z
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: rails
17
+ requirement: &13726180 !ruby/object:Gem::Requirement
18
+ none: false
19
+ requirements:
20
+ - - ~>
21
+ - !ruby/object:Gem::Version
22
+ version: 3.2.8
23
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: *13726180
26
+ - !ruby/object:Gem::Dependency
27
+ name: haml
28
+ requirement: &13725460 !ruby/object:Gem::Requirement
29
+ none: false
30
+ requirements:
31
+ - - ! '>='
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: *13725460
37
+ - !ruby/object:Gem::Dependency
38
+ name: nokogiri
39
+ requirement: &13724680 !ruby/object:Gem::Requirement
40
+ none: false
41
+ requirements:
42
+ - - ! '>='
43
+ - !ruby/object:Gem::Version
44
+ version: '0'
45
+ type: :runtime
46
+ prerelease: false
47
+ version_requirements: *13724680
48
+ - !ruby/object:Gem::Dependency
49
+ name: sqlite3
50
+ requirement: &13615340 !ruby/object:Gem::Requirement
51
+ none: false
52
+ requirements:
53
+ - - ! '>='
54
+ - !ruby/object:Gem::Version
55
+ version: '0'
56
+ type: :development
57
+ prerelease: false
58
+ version_requirements: *13615340
59
+ - !ruby/object:Gem::Dependency
60
+ name: rspec-rails
61
+ requirement: &13614720 !ruby/object:Gem::Requirement
62
+ none: false
63
+ requirements:
64
+ - - ! '>='
65
+ - !ruby/object:Gem::Version
66
+ version: '0'
67
+ type: :development
68
+ prerelease: false
69
+ version_requirements: *13614720
70
+ - !ruby/object:Gem::Dependency
71
+ name: cucumber-rails
72
+ requirement: &13613920 !ruby/object:Gem::Requirement
73
+ none: false
74
+ requirements:
75
+ - - ! '>='
76
+ - !ruby/object:Gem::Version
77
+ version: '0'
78
+ type: :development
79
+ prerelease: false
80
+ version_requirements: *13613920
81
+ - !ruby/object:Gem::Dependency
82
+ name: database_cleaner
83
+ requirement: &13612800 !ruby/object:Gem::Requirement
84
+ none: false
85
+ requirements:
86
+ - - ! '>='
87
+ - !ruby/object:Gem::Version
88
+ version: '0'
89
+ type: :development
90
+ prerelease: false
91
+ version_requirements: *13612800
92
+ - !ruby/object:Gem::Dependency
93
+ name: factory_girl_rails
94
+ requirement: &13612200 !ruby/object:Gem::Requirement
95
+ none: false
96
+ requirements:
97
+ - - ! '>='
98
+ - !ruby/object:Gem::Version
99
+ version: '0'
100
+ type: :development
101
+ prerelease: false
102
+ version_requirements: *13612200
103
+ description: Rails engine client for the Aeolus Image Factory cross-cloud virtual
104
+ machine image builder.
105
+ email:
106
+ - aeolus-devel@lists.fedorahosted.org
107
+ executables: []
108
+ extensions: []
109
+ extra_rdoc_files: []
110
+ files:
111
+ - app/controllers/tim/provider_images_controller.rb
112
+ - app/controllers/tim/application_controller.rb
113
+ - app/controllers/tim/image_versions_controller.rb
114
+ - app/controllers/tim/base_images_controller.rb
115
+ - app/controllers/tim/entrypoint_controller.rb
116
+ - app/controllers/tim/templates_controller.rb
117
+ - app/controllers/tim/target_images_controller.rb
118
+ - app/validators/template_validator.rb
119
+ - app/views/layouts/tim/application.html.erb
120
+ - app/views/tim/image_versions/_form.html.erb
121
+ - app/views/tim/image_versions/new.html.erb
122
+ - app/views/tim/image_versions/_image_version.xml.haml
123
+ - app/views/tim/image_versions/show.xml.haml
124
+ - app/views/tim/image_versions/index.html.erb
125
+ - app/views/tim/image_versions/show.html.erb
126
+ - app/views/tim/image_versions/edit.html.erb
127
+ - app/views/tim/image_versions/index.xml.haml
128
+ - app/views/tim/image_versions/_image_version_minimal.xml.haml
129
+ - app/views/tim/layouts/application.html.erb
130
+ - app/views/tim/provider_images/_form.html.erb
131
+ - app/views/tim/provider_images/new.html.erb
132
+ - app/views/tim/provider_images/_provider_image.xml.haml
133
+ - app/views/tim/provider_images/show.xml.haml
134
+ - app/views/tim/provider_images/index.html.erb
135
+ - app/views/tim/provider_images/show.html.erb
136
+ - app/views/tim/provider_images/edit.html.erb
137
+ - app/views/tim/provider_images/index.xml.haml
138
+ - app/views/tim/provider_images/_provider_image_minimal.xml.haml
139
+ - app/views/tim/target_images/_form.html.erb
140
+ - app/views/tim/target_images/new.html.erb
141
+ - app/views/tim/target_images/_target_image.xml.haml
142
+ - app/views/tim/target_images/show.xml.haml
143
+ - app/views/tim/target_images/_target_image_minimal.xml.haml
144
+ - app/views/tim/target_images/index.html.erb
145
+ - app/views/tim/target_images/show.html.erb
146
+ - app/views/tim/target_images/edit.html.erb
147
+ - app/views/tim/target_images/index.xml.haml
148
+ - app/views/tim/templates/_form.html.erb
149
+ - app/views/tim/templates/new.html.erb
150
+ - app/views/tim/templates/show.xml.haml
151
+ - app/views/tim/templates/index.html.erb
152
+ - app/views/tim/templates/_template.xml.haml
153
+ - app/views/tim/templates/show.html.erb
154
+ - app/views/tim/templates/_template_minimal.xml.haml
155
+ - app/views/tim/templates/edit.html.erb
156
+ - app/views/tim/templates/index.xml.haml
157
+ - app/views/tim/images/_form.html.erb
158
+ - app/views/tim/images/new.html.erb
159
+ - app/views/tim/images/index.html.erb
160
+ - app/views/tim/images/show.html.erb
161
+ - app/views/tim/images/edit.html.erb
162
+ - app/views/tim/entrypoint/index.xml.haml
163
+ - app/views/tim/base_images/_form.html.erb
164
+ - app/views/tim/base_images/new.html.erb
165
+ - app/views/tim/base_images/show.xml.haml
166
+ - app/views/tim/base_images/_base_image.xml.haml
167
+ - app/views/tim/base_images/index.html.erb
168
+ - app/views/tim/base_images/show.html.erb
169
+ - app/views/tim/base_images/edit.html.erb
170
+ - app/views/tim/base_images/index.xml.haml
171
+ - app/views/tim/base_images/_base_image_minimal.xml.haml
172
+ - app/helpers/tim/application_helper.rb
173
+ - app/assets/javascripts/tim/application.js
174
+ - app/assets/stylesheets/tim/application.css
175
+ - app/filters/tim/user_keys_filter.rb
176
+ - app/models/tim/provider_image.rb
177
+ - app/models/tim/template.rb
178
+ - app/models/tim/base_image.rb
179
+ - app/models/tim/base.rb
180
+ - app/models/tim/target_image.rb
181
+ - app/models/tim/image_version.rb
182
+ - app/responders/tim/custom_responder.rb
183
+ - config/user_keys.yml
184
+ - config/routes.rb
185
+ - config/initializers/haml.rb
186
+ - config/cucumber.yml
187
+ - config/schemas/tdl.rng
188
+ - db/migrate/20120906180351_create_tim_base_images.rb
189
+ - db/migrate/20120906210106_create_tim_image_versions.rb
190
+ - db/migrate/20120911202321_create_tim_target_images.rb
191
+ - db/migrate/20120911204329_create_tim_provider_images.rb
192
+ - db/migrate/20120910175233_create_tim_templates.rb
193
+ - lib/tasks/tim_tasks.rake
194
+ - lib/tasks/cucumber.rake
195
+ - lib/tim/engine.rb
196
+ - lib/tim/version.rb
197
+ - lib/generators/tim/templates/README
198
+ - lib/generators/tim/templates/tim.rb
199
+ - lib/generators/tim/install_generator.rb
200
+ - lib/tim.rb
201
+ - lib/image_factory/model/provider_image.rb
202
+ - lib/image_factory/model/base.rb
203
+ - lib/image_factory/model/target_image.rb
204
+ - lib/image_factory/image_factory.rb
205
+ - MIT-LICENSE
206
+ - Rakefile
207
+ - README.rdoc
208
+ - spec/controllers/base_images_controller_spec.rb
209
+ - spec/controllers/templates_controller_spec.rb
210
+ - spec/controllers/image_versions_controller_spec.rb
211
+ - spec/controllers/entrypoint_controller_spec.rb
212
+ - spec/controllers/target_images_controller_spec.rb
213
+ - spec/controllers/provider_images_controller_spec.rb
214
+ - spec/validators/template_validator_spec.rb
215
+ - spec/views/provider_images_spec.rb
216
+ - spec/views/base_images_spec.rb
217
+ - spec/views/image_versions_spec.rb
218
+ - spec/views/templates_spec.rb
219
+ - spec/views/target_images_spec.rb
220
+ - spec/spec_helper.rb
221
+ - spec/factories/tim/provider_image.rb
222
+ - spec/factories/tim/template.rb
223
+ - spec/factories/tim/base_image.rb
224
+ - spec/factories/tim/image_factory/provider_image.rb
225
+ - spec/factories/tim/image_factory/status_detail.rb
226
+ - spec/factories/tim/image_factory/target_image.rb
227
+ - spec/factories/tim/target_image.rb
228
+ - spec/factories/tim/image_version.rb
229
+ - spec/support/routes.rb
230
+ - spec/filters/user_keys_filter_spec.rb
231
+ - spec/models/image_version_spec.rb
232
+ - spec/models/template_spec.rb
233
+ - spec/models/base_image_spec.rb
234
+ - spec/models/dummy/provider_type_spec.rb
235
+ - spec/models/dummy/user_spec.rb
236
+ - spec/models/dummy/provider_account_spec.rb
237
+ - spec/models/dummy/pool_family_spec.rb
238
+ - spec/models/target_image_spec.rb
239
+ - spec/models/provider_image_spec.rb
240
+ - spec/fixtures/template.xml
241
+ - spec/decorators/controllers/templates_controller_decorator_spec.rb
242
+ - test/dummy/config/application.rb
243
+ - test/dummy/config/database.yml
244
+ - test/dummy/config/environments/production.rb
245
+ - test/dummy/config/environments/development.rb
246
+ - test/dummy/config/environments/test.rb
247
+ - test/dummy/config/locales/en.yml
248
+ - test/dummy/config/routes.rb
249
+ - test/dummy/config/initializers/mime_types.rb
250
+ - test/dummy/config/initializers/backtrace_silencers.rb
251
+ - test/dummy/config/initializers/tim.rb
252
+ - test/dummy/config/initializers/session_store.rb
253
+ - test/dummy/config/initializers/secret_token.rb
254
+ - test/dummy/config/initializers/inflections.rb
255
+ - test/dummy/config/initializers/wrap_parameters.rb
256
+ - test/dummy/config/environment.rb
257
+ - test/dummy/config/boot.rb
258
+ - test/dummy/log/development.log
259
+ - test/dummy/log/test.log
260
+ - test/dummy/db/migrate/20120326103723532622_create_users.rb
261
+ - test/dummy/db/migrate/20120911203222_create_provider_types.rb
262
+ - test/dummy/db/migrate/20120911182850_add_pool_family_id_to_tim_base_image.rb
263
+ - test/dummy/db/migrate/20120911205431_create_provider_accounts.rb
264
+ - test/dummy/db/migrate/20120423123114264114_create_pool_families.rb
265
+ - test/dummy/db/migrate/20120911202845_add_provider_type_id_to_tim_target_image.rb
266
+ - test/dummy/db/development.sqlite3
267
+ - test/dummy/db/schema.rb
268
+ - test/dummy/db/test.sqlite3
269
+ - test/dummy/config.ru
270
+ - test/dummy/app/controllers/application_controller.rb
271
+ - test/dummy/app/views/layouts/application.html.erb
272
+ - test/dummy/app/views/tim/image_versions/_custom.xml.haml
273
+ - test/dummy/app/views/tim/layouts/application.html.erb
274
+ - test/dummy/app/views/tim/provider_images/_custom.xml.haml
275
+ - test/dummy/app/views/tim/target_images/_custom.xml.haml
276
+ - test/dummy/app/views/tim/templates/_custom.xml.haml
277
+ - test/dummy/app/views/tim/base_images/_custom.xml.haml
278
+ - test/dummy/app/helpers/application_helper.rb
279
+ - test/dummy/app/assets/javascripts/application.js
280
+ - test/dummy/app/assets/stylesheets/application.css
281
+ - test/dummy/app/models/tim/base_image.rb
282
+ - test/dummy/app/models/provider_account.rb
283
+ - test/dummy/app/models/user.rb
284
+ - test/dummy/app/models/provider_type.rb
285
+ - test/dummy/app/models/pool_family.rb
286
+ - test/dummy/app/decorators/tim/controllers/templates_controller_decorator.rb
287
+ - test/dummy/script/rails
288
+ - test/dummy/test.rb
289
+ - test/dummy/Rakefile
290
+ - test/dummy/public/favicon.ico
291
+ - test/dummy/public/422.html
292
+ - test/dummy/public/500.html
293
+ - test/dummy/public/404.html
294
+ - test/dummy/tmp/cache/assets/D89/200/sprockets%2Ff9b4e953c874ed6a87de6490d055d9db
295
+ - test/dummy/tmp/cache/assets/CE0/690/sprockets%2F04c628c2a636286bfa92a4966b82b92a
296
+ - test/dummy/tmp/cache/assets/D03/040/sprockets%2Fd9e94204d4b307145f12efc109b16c1f
297
+ - test/dummy/tmp/cache/assets/D69/BD0/sprockets%2F0aaf75cf34556b33a9fec534fe4d0415
298
+ - test/dummy/tmp/cache/assets/C7A/BB0/sprockets%2F13445f7a19078dd2df39517062aa6711
299
+ - test/dummy/tmp/cache/assets/D06/DC0/sprockets%2Fcd282851b6e4c463409ba3ece67e0510
300
+ - test/dummy/tmp/cache/assets/CB0/2B0/sprockets%2F79106b90879c02a115d7f6f1c8390ac4
301
+ - test/dummy/tmp/cache/assets/C8C/CC0/sprockets%2F95d79f3b3096348427f3e4e38b5202e3
302
+ - test/dummy/tmp/cache/assets/DF4/430/sprockets%2F403bb1de60cae4325cebd7e6c389b8ad
303
+ - test/dummy/tmp/cache/assets/EB3/CE0/sprockets%2Fd75a89c9fffacd99bce7eed96844eafc
304
+ - test/dummy/tmp/cache/assets/D64/3A0/sprockets%2F56ac1aed10c39b12a88cb1b30f668f58
305
+ - test/dummy/tmp/cache/assets/D87/D80/sprockets%2Fefa3c8b210e87358c7add88cd6f49597
306
+ - test/dummy/tmp/cache/assets/E00/500/sprockets%2Faaddc5b6f2cb6b98930cc54cf4c64a95
307
+ - test/dummy/tmp/cache/assets/D23/5F0/sprockets%2F2a521f3183c6bbcd71bd26a5490b201e
308
+ homepage: https://github.com/aeolus-incubator/image-management-engine
309
+ licenses: []
310
+ post_install_message:
311
+ rdoc_options: []
312
+ require_paths:
313
+ - lib
314
+ required_ruby_version: !ruby/object:Gem::Requirement
315
+ none: false
316
+ requirements:
317
+ - - ! '>='
318
+ - !ruby/object:Gem::Version
319
+ version: '0'
320
+ required_rubygems_version: !ruby/object:Gem::Requirement
321
+ none: false
322
+ requirements:
323
+ - - ! '>='
324
+ - !ruby/object:Gem::Version
325
+ version: '0'
326
+ requirements: []
327
+ rubyforge_project:
328
+ rubygems_version: 1.8.15
329
+ signing_key:
330
+ specification_version: 3
331
+ summary: Embeddable client for Aeolus Image Factory
332
+ test_files:
333
+ - spec/controllers/base_images_controller_spec.rb
334
+ - spec/controllers/templates_controller_spec.rb
335
+ - spec/controllers/image_versions_controller_spec.rb
336
+ - spec/controllers/entrypoint_controller_spec.rb
337
+ - spec/controllers/target_images_controller_spec.rb
338
+ - spec/controllers/provider_images_controller_spec.rb
339
+ - spec/validators/template_validator_spec.rb
340
+ - spec/views/provider_images_spec.rb
341
+ - spec/views/base_images_spec.rb
342
+ - spec/views/image_versions_spec.rb
343
+ - spec/views/templates_spec.rb
344
+ - spec/views/target_images_spec.rb
345
+ - spec/spec_helper.rb
346
+ - spec/factories/tim/provider_image.rb
347
+ - spec/factories/tim/template.rb
348
+ - spec/factories/tim/base_image.rb
349
+ - spec/factories/tim/image_factory/provider_image.rb
350
+ - spec/factories/tim/image_factory/status_detail.rb
351
+ - spec/factories/tim/image_factory/target_image.rb
352
+ - spec/factories/tim/target_image.rb
353
+ - spec/factories/tim/image_version.rb
354
+ - spec/support/routes.rb
355
+ - spec/filters/user_keys_filter_spec.rb
356
+ - spec/models/image_version_spec.rb
357
+ - spec/models/template_spec.rb
358
+ - spec/models/base_image_spec.rb
359
+ - spec/models/dummy/provider_type_spec.rb
360
+ - spec/models/dummy/user_spec.rb
361
+ - spec/models/dummy/provider_account_spec.rb
362
+ - spec/models/dummy/pool_family_spec.rb
363
+ - spec/models/target_image_spec.rb
364
+ - spec/models/provider_image_spec.rb
365
+ - spec/fixtures/template.xml
366
+ - spec/decorators/controllers/templates_controller_decorator_spec.rb
367
+ - test/dummy/config/application.rb
368
+ - test/dummy/config/database.yml
369
+ - test/dummy/config/environments/production.rb
370
+ - test/dummy/config/environments/development.rb
371
+ - test/dummy/config/environments/test.rb
372
+ - test/dummy/config/locales/en.yml
373
+ - test/dummy/config/routes.rb
374
+ - test/dummy/config/initializers/mime_types.rb
375
+ - test/dummy/config/initializers/backtrace_silencers.rb
376
+ - test/dummy/config/initializers/tim.rb
377
+ - test/dummy/config/initializers/session_store.rb
378
+ - test/dummy/config/initializers/secret_token.rb
379
+ - test/dummy/config/initializers/inflections.rb
380
+ - test/dummy/config/initializers/wrap_parameters.rb
381
+ - test/dummy/config/environment.rb
382
+ - test/dummy/config/boot.rb
383
+ - test/dummy/log/development.log
384
+ - test/dummy/log/test.log
385
+ - test/dummy/db/migrate/20120326103723532622_create_users.rb
386
+ - test/dummy/db/migrate/20120911203222_create_provider_types.rb
387
+ - test/dummy/db/migrate/20120911182850_add_pool_family_id_to_tim_base_image.rb
388
+ - test/dummy/db/migrate/20120911205431_create_provider_accounts.rb
389
+ - test/dummy/db/migrate/20120423123114264114_create_pool_families.rb
390
+ - test/dummy/db/migrate/20120911202845_add_provider_type_id_to_tim_target_image.rb
391
+ - test/dummy/db/development.sqlite3
392
+ - test/dummy/db/schema.rb
393
+ - test/dummy/db/test.sqlite3
394
+ - test/dummy/config.ru
395
+ - test/dummy/app/controllers/application_controller.rb
396
+ - test/dummy/app/views/layouts/application.html.erb
397
+ - test/dummy/app/views/tim/image_versions/_custom.xml.haml
398
+ - test/dummy/app/views/tim/layouts/application.html.erb
399
+ - test/dummy/app/views/tim/provider_images/_custom.xml.haml
400
+ - test/dummy/app/views/tim/target_images/_custom.xml.haml
401
+ - test/dummy/app/views/tim/templates/_custom.xml.haml
402
+ - test/dummy/app/views/tim/base_images/_custom.xml.haml
403
+ - test/dummy/app/helpers/application_helper.rb
404
+ - test/dummy/app/assets/javascripts/application.js
405
+ - test/dummy/app/assets/stylesheets/application.css
406
+ - test/dummy/app/models/tim/base_image.rb
407
+ - test/dummy/app/models/provider_account.rb
408
+ - test/dummy/app/models/user.rb
409
+ - test/dummy/app/models/provider_type.rb
410
+ - test/dummy/app/models/pool_family.rb
411
+ - test/dummy/app/decorators/tim/controllers/templates_controller_decorator.rb
412
+ - test/dummy/script/rails
413
+ - test/dummy/test.rb
414
+ - test/dummy/Rakefile
415
+ - test/dummy/public/favicon.ico
416
+ - test/dummy/public/422.html
417
+ - test/dummy/public/500.html
418
+ - test/dummy/public/404.html
419
+ - test/dummy/tmp/cache/assets/D89/200/sprockets%2Ff9b4e953c874ed6a87de6490d055d9db
420
+ - test/dummy/tmp/cache/assets/CE0/690/sprockets%2F04c628c2a636286bfa92a4966b82b92a
421
+ - test/dummy/tmp/cache/assets/D03/040/sprockets%2Fd9e94204d4b307145f12efc109b16c1f
422
+ - test/dummy/tmp/cache/assets/D69/BD0/sprockets%2F0aaf75cf34556b33a9fec534fe4d0415
423
+ - test/dummy/tmp/cache/assets/C7A/BB0/sprockets%2F13445f7a19078dd2df39517062aa6711
424
+ - test/dummy/tmp/cache/assets/D06/DC0/sprockets%2Fcd282851b6e4c463409ba3ece67e0510
425
+ - test/dummy/tmp/cache/assets/CB0/2B0/sprockets%2F79106b90879c02a115d7f6f1c8390ac4
426
+ - test/dummy/tmp/cache/assets/C8C/CC0/sprockets%2F95d79f3b3096348427f3e4e38b5202e3
427
+ - test/dummy/tmp/cache/assets/DF4/430/sprockets%2F403bb1de60cae4325cebd7e6c389b8ad
428
+ - test/dummy/tmp/cache/assets/EB3/CE0/sprockets%2Fd75a89c9fffacd99bce7eed96844eafc
429
+ - test/dummy/tmp/cache/assets/D64/3A0/sprockets%2F56ac1aed10c39b12a88cb1b30f668f58
430
+ - test/dummy/tmp/cache/assets/D87/D80/sprockets%2Fefa3c8b210e87358c7add88cd6f49597
431
+ - test/dummy/tmp/cache/assets/E00/500/sprockets%2Faaddc5b6f2cb6b98930cc54cf4c64a95
432
+ - test/dummy/tmp/cache/assets/D23/5F0/sprockets%2F2a521f3183c6bbcd71bd26a5490b201e