rules_engine 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (288) hide show
  1. data/LICENSE +20 -0
  2. data/README.rdoc +17 -0
  3. data/VERSION +1 -0
  4. data/init.rb +1 -0
  5. data/lib/rules_engine/cache.rb +26 -0
  6. data/lib/rules_engine/discovery.rb +51 -0
  7. data/lib/rules_engine/job_runner.rb +115 -0
  8. data/lib/rules_engine/rule.rb +60 -0
  9. data/lib/rules_engine/rule_outcome.rb +13 -0
  10. data/lib/rules_engine.rb +6 -0
  11. data/rails_generators/USAGE +68 -0
  12. data/rails_generators/blacklist_word.yml +6 -0
  13. data/rails_generators/blacklist_word_manifest.rb +26 -0
  14. data/rails_generators/generator.yml +58 -0
  15. data/rails_generators/generator_manifest.rb +282 -0
  16. data/rails_generators/rules_engine_generator.rb +35 -0
  17. data/rails_generators/simple.yml +6 -0
  18. data/rails_generators/simple_manifest.rb +21 -0
  19. data/rails_generators/template_manifest.rb +13 -0
  20. data/rails_generators/templates/app/controllers/re_jobs_controller.rb +18 -0
  21. data/rails_generators/templates/app/controllers/re_pipeline_jobs_controller.rb +17 -0
  22. data/rails_generators/templates/app/controllers/re_pipelines_controller.rb +143 -0
  23. data/rails_generators/templates/app/controllers/re_rules_controller.rb +140 -0
  24. data/rails_generators/templates/app/helpers/re_pipeline_helper.rb +29 -0
  25. data/rails_generators/templates/app/models/re_job.rb +123 -0
  26. data/rails_generators/templates/app/models/re_job_audit.rb +21 -0
  27. data/rails_generators/templates/app/models/re_pipeline.rb +69 -0
  28. data/rails_generators/templates/app/models/re_pipeline_activated.rb +26 -0
  29. data/rails_generators/templates/app/models/re_pipeline_activated_observer.rb +11 -0
  30. data/rails_generators/templates/app/models/re_pipeline_base.rb +68 -0
  31. data/rails_generators/templates/app/models/re_rule.rb +78 -0
  32. data/rails_generators/templates/app/models/re_rule_outcome.rb +40 -0
  33. data/rails_generators/templates/app/rules/blacklist_word.rb +89 -0
  34. data/rails_generators/templates/app/rules/simple.rb +44 -0
  35. data/rails_generators/templates/app/rules/template.rb +51 -0
  36. data/rails_generators/templates/app/views/layouts/_blockUI.html.erb +3 -0
  37. data/rails_generators/templates/app/views/re_jobs/_empty.html.erb +11 -0
  38. data/rails_generators/templates/app/views/re_jobs/_index.html.erb +66 -0
  39. data/rails_generators/templates/app/views/re_jobs/_show.html.erb +43 -0
  40. data/rails_generators/templates/app/views/re_jobs/index.html.erb +21 -0
  41. data/rails_generators/templates/app/views/re_jobs/index.js.erb +9 -0
  42. data/rails_generators/templates/app/views/re_jobs/show.html.erb +12 -0
  43. data/rails_generators/templates/app/views/re_jobs/show.js.erb +1 -0
  44. data/rails_generators/templates/app/views/re_pipeline_jobs/_empty.html.erb +11 -0
  45. data/rails_generators/templates/app/views/re_pipeline_jobs/_index.html.erb +41 -0
  46. data/rails_generators/templates/app/views/re_pipeline_jobs/index.html.erb +21 -0
  47. data/rails_generators/templates/app/views/re_pipeline_jobs/index.js.erb +10 -0
  48. data/rails_generators/templates/app/views/re_pipelines/_change.html.erb +46 -0
  49. data/rails_generators/templates/app/views/re_pipelines/_change_actions.html.erb +34 -0
  50. data/rails_generators/templates/app/views/re_pipelines/_confirm.html.erb +40 -0
  51. data/rails_generators/templates/app/views/re_pipelines/_edit.html.erb +21 -0
  52. data/rails_generators/templates/app/views/re_pipelines/_empty.html.erb +13 -0
  53. data/rails_generators/templates/app/views/re_pipelines/_index.html.erb +58 -0
  54. data/rails_generators/templates/app/views/re_pipelines/_new.html.erb +18 -0
  55. data/rails_generators/templates/app/views/re_pipelines/_show.html.erb +32 -0
  56. data/rails_generators/templates/app/views/re_pipelines/_show_actions.html.erb +3 -0
  57. data/rails_generators/templates/app/views/re_pipelines/change.html.erb +37 -0
  58. data/rails_generators/templates/app/views/re_pipelines/create.js.erb +8 -0
  59. data/rails_generators/templates/app/views/re_pipelines/edit.html.erb +11 -0
  60. data/rails_generators/templates/app/views/re_pipelines/edit.js.erb +5 -0
  61. data/rails_generators/templates/app/views/re_pipelines/index.html.erb +14 -0
  62. data/rails_generators/templates/app/views/re_pipelines/new.html.erb +9 -0
  63. data/rails_generators/templates/app/views/re_pipelines/new.js.erb +5 -0
  64. data/rails_generators/templates/app/views/re_pipelines/show.html.erb +41 -0
  65. data/rails_generators/templates/app/views/re_pipelines/update.js.erb +13 -0
  66. data/rails_generators/templates/app/views/re_rule_definitions/blacklist_word/_edit.html.erb +7 -0
  67. data/rails_generators/templates/app/views/re_rule_definitions/blacklist_word/_help.html.erb +2 -0
  68. data/rails_generators/templates/app/views/re_rule_definitions/blacklist_word/_new.html.erb +7 -0
  69. data/rails_generators/templates/app/views/re_rule_definitions/blacklist_word/_pipeline.html.erb +18 -0
  70. data/rails_generators/templates/app/views/re_rule_definitions/blacklist_word/_script.html.erb +26 -0
  71. data/rails_generators/templates/app/views/re_rule_definitions/blacklist_word/_title.html.erb +6 -0
  72. data/rails_generators/templates/app/views/re_rule_definitions/blacklist_word/_word.html.erb +12 -0
  73. data/rails_generators/templates/app/views/re_rule_definitions/blacklist_word/_words.html.erb +16 -0
  74. data/rails_generators/templates/app/views/re_rule_definitions/simple/_edit.html.erb +6 -0
  75. data/rails_generators/templates/app/views/re_rule_definitions/simple/_help.html.erb +2 -0
  76. data/rails_generators/templates/app/views/re_rule_definitions/simple/_new.html.erb +6 -0
  77. data/rails_generators/templates/app/views/re_rule_definitions/template/_edit.html.erb +6 -0
  78. data/rails_generators/templates/app/views/re_rule_definitions/template/_help.html.erb +2 -0
  79. data/rails_generators/templates/app/views/re_rule_definitions/template/_new.html.erb +6 -0
  80. data/rails_generators/templates/app/views/re_rules/_change.html.erb +57 -0
  81. data/rails_generators/templates/app/views/re_rules/_edit.html.erb +25 -0
  82. data/rails_generators/templates/app/views/re_rules/_empty.html.erb +12 -0
  83. data/rails_generators/templates/app/views/re_rules/_empty.js.erb +7 -0
  84. data/rails_generators/templates/app/views/re_rules/_error.html.erb +3 -0
  85. data/rails_generators/templates/app/views/re_rules/_help.html.erb +13 -0
  86. data/rails_generators/templates/app/views/re_rules/_index.html.erb +38 -0
  87. data/rails_generators/templates/app/views/re_rules/_menu.html.erb +41 -0
  88. data/rails_generators/templates/app/views/re_rules/_new.html.erb +26 -0
  89. data/rails_generators/templates/app/views/re_rules/_show.html.erb +43 -0
  90. data/rails_generators/templates/app/views/re_rules/destroy.js.erb +13 -0
  91. data/rails_generators/templates/app/views/re_rules/edit.html.erb +11 -0
  92. data/rails_generators/templates/app/views/re_rules/edit.js.erb +5 -0
  93. data/rails_generators/templates/app/views/re_rules/error.html.erb +11 -0
  94. data/rails_generators/templates/app/views/re_rules/error.js.erb +3 -0
  95. data/rails_generators/templates/app/views/re_rules/help.html.erb +11 -0
  96. data/rails_generators/templates/app/views/re_rules/help.js.erb +2 -0
  97. data/rails_generators/templates/app/views/re_rules/new.html.erb +11 -0
  98. data/rails_generators/templates/app/views/re_rules/new.js.erb +5 -0
  99. data/rails_generators/templates/app/views/re_rules/update.js.erb +20 -0
  100. data/rails_generators/templates/db/migrate/20100308225008_create_re_pipelines.rb +74 -0
  101. data/rails_generators/templates/lib/tasks/re_runner.rake +12 -0
  102. data/rails_generators/templates/public/images/re_job/error-14.png +0 -0
  103. data/rails_generators/templates/public/images/re_job/error-18.png +0 -0
  104. data/rails_generators/templates/public/images/re_job/error-25.png +0 -0
  105. data/rails_generators/templates/public/images/re_job/error-48.png +0 -0
  106. data/rails_generators/templates/public/images/re_job/goto-16.png +0 -0
  107. data/rails_generators/templates/public/images/re_job/info-14.png +0 -0
  108. data/rails_generators/templates/public/images/re_job/info-18.png +0 -0
  109. data/rails_generators/templates/public/images/re_job/info-25.png +0 -0
  110. data/rails_generators/templates/public/images/re_job/info-48.png +0 -0
  111. data/rails_generators/templates/public/images/re_job/list-14.png +0 -0
  112. data/rails_generators/templates/public/images/re_job/list-18.png +0 -0
  113. data/rails_generators/templates/public/images/re_job/list-25.png +0 -0
  114. data/rails_generators/templates/public/images/re_job/list-48.png +0 -0
  115. data/rails_generators/templates/public/images/re_job/loadingAnimation.gif +0 -0
  116. data/rails_generators/templates/public/images/re_job/next-disabled-14.png +0 -0
  117. data/rails_generators/templates/public/images/re_job/next-disabled-18.png +0 -0
  118. data/rails_generators/templates/public/images/re_job/next-disabled-25.png +0 -0
  119. data/rails_generators/templates/public/images/re_job/next-disabled-48.png +0 -0
  120. data/rails_generators/templates/public/images/re_job/next-enabled-14.png +0 -0
  121. data/rails_generators/templates/public/images/re_job/next-enabled-18.png +0 -0
  122. data/rails_generators/templates/public/images/re_job/next-enabled-25.png +0 -0
  123. data/rails_generators/templates/public/images/re_job/next-enabled-48.png +0 -0
  124. data/rails_generators/templates/public/images/re_job/prev-disabled-14.png +0 -0
  125. data/rails_generators/templates/public/images/re_job/prev-disabled-18.png +0 -0
  126. data/rails_generators/templates/public/images/re_job/prev-disabled-25.png +0 -0
  127. data/rails_generators/templates/public/images/re_job/prev-disabled-48.png +0 -0
  128. data/rails_generators/templates/public/images/re_job/prev-enabled-14.png +0 -0
  129. data/rails_generators/templates/public/images/re_job/prev-enabled-18.png +0 -0
  130. data/rails_generators/templates/public/images/re_job/prev-enabled-25.png +0 -0
  131. data/rails_generators/templates/public/images/re_job/prev-enabled-48.png +0 -0
  132. data/rails_generators/templates/public/images/re_job/success-14.png +0 -0
  133. data/rails_generators/templates/public/images/re_job/success-18.png +0 -0
  134. data/rails_generators/templates/public/images/re_job/success-25.png +0 -0
  135. data/rails_generators/templates/public/images/re_job/success-48.png +0 -0
  136. data/rails_generators/templates/public/images/re_pipeline/__destroy-14.png +0 -0
  137. data/rails_generators/templates/public/images/re_pipeline/__destroy-18.png +0 -0
  138. data/rails_generators/templates/public/images/re_pipeline/__destroy-25.png +0 -0
  139. data/rails_generators/templates/public/images/re_pipeline/__destroy-48.png +0 -0
  140. data/rails_generators/templates/public/images/re_pipeline/activate-14.png +0 -0
  141. data/rails_generators/templates/public/images/re_pipeline/activate-18.png +0 -0
  142. data/rails_generators/templates/public/images/re_pipeline/activate-25.png +0 -0
  143. data/rails_generators/templates/public/images/re_pipeline/activate-48.png +0 -0
  144. data/rails_generators/templates/public/images/re_pipeline/alert-14.png +0 -0
  145. data/rails_generators/templates/public/images/re_pipeline/alert-18.png +0 -0
  146. data/rails_generators/templates/public/images/re_pipeline/alert-25.png +0 -0
  147. data/rails_generators/templates/public/images/re_pipeline/alert-48.png +0 -0
  148. data/rails_generators/templates/public/images/re_pipeline/change-14.png +0 -0
  149. data/rails_generators/templates/public/images/re_pipeline/change-18.png +0 -0
  150. data/rails_generators/templates/public/images/re_pipeline/change-25.png +0 -0
  151. data/rails_generators/templates/public/images/re_pipeline/change-48.png +0 -0
  152. data/rails_generators/templates/public/images/re_pipeline/changed-14.png +0 -0
  153. data/rails_generators/templates/public/images/re_pipeline/changed-18.png +0 -0
  154. data/rails_generators/templates/public/images/re_pipeline/changed-25.png +0 -0
  155. data/rails_generators/templates/public/images/re_pipeline/changed-48.png +0 -0
  156. data/rails_generators/templates/public/images/re_pipeline/current-14.png +0 -0
  157. data/rails_generators/templates/public/images/re_pipeline/current-18.png +0 -0
  158. data/rails_generators/templates/public/images/re_pipeline/current-25.png +0 -0
  159. data/rails_generators/templates/public/images/re_pipeline/current-48.png +0 -0
  160. data/rails_generators/templates/public/images/re_pipeline/deactivate-14.png +0 -0
  161. data/rails_generators/templates/public/images/re_pipeline/deactivate-18.png +0 -0
  162. data/rails_generators/templates/public/images/re_pipeline/deactivate-25.png +0 -0
  163. data/rails_generators/templates/public/images/re_pipeline/deactivate-48.png +0 -0
  164. data/rails_generators/templates/public/images/re_pipeline/destroy-14.png +0 -0
  165. data/rails_generators/templates/public/images/re_pipeline/destroy-18.png +0 -0
  166. data/rails_generators/templates/public/images/re_pipeline/destroy-25.png +0 -0
  167. data/rails_generators/templates/public/images/re_pipeline/destroy-48.png +0 -0
  168. data/rails_generators/templates/public/images/re_pipeline/draft-14.png +0 -0
  169. data/rails_generators/templates/public/images/re_pipeline/draft-18.png +0 -0
  170. data/rails_generators/templates/public/images/re_pipeline/draft-25.png +0 -0
  171. data/rails_generators/templates/public/images/re_pipeline/draft-48.png +0 -0
  172. data/rails_generators/templates/public/images/re_pipeline/edit-14.png +0 -0
  173. data/rails_generators/templates/public/images/re_pipeline/edit-18.png +0 -0
  174. data/rails_generators/templates/public/images/re_pipeline/edit-25.png +0 -0
  175. data/rails_generators/templates/public/images/re_pipeline/edit-48.png +0 -0
  176. data/rails_generators/templates/public/images/re_pipeline/list-14.png +0 -0
  177. data/rails_generators/templates/public/images/re_pipeline/list-18.png +0 -0
  178. data/rails_generators/templates/public/images/re_pipeline/list-25.png +0 -0
  179. data/rails_generators/templates/public/images/re_pipeline/list-48.png +0 -0
  180. data/rails_generators/templates/public/images/re_pipeline/list-down.png +0 -0
  181. data/rails_generators/templates/public/images/re_pipeline/list-right.png +0 -0
  182. data/rails_generators/templates/public/images/re_pipeline/new-14.png +0 -0
  183. data/rails_generators/templates/public/images/re_pipeline/new-18.png +0 -0
  184. data/rails_generators/templates/public/images/re_pipeline/new-25.png +0 -0
  185. data/rails_generators/templates/public/images/re_pipeline/new-48.png +0 -0
  186. data/rails_generators/templates/public/images/re_pipeline/revert-14.png +0 -0
  187. data/rails_generators/templates/public/images/re_pipeline/revert-18.png +0 -0
  188. data/rails_generators/templates/public/images/re_pipeline/revert-25.png +0 -0
  189. data/rails_generators/templates/public/images/re_pipeline/revert-48.png +0 -0
  190. data/rails_generators/templates/public/images/re_pipeline/show-14.png +0 -0
  191. data/rails_generators/templates/public/images/re_pipeline/show-18.png +0 -0
  192. data/rails_generators/templates/public/images/re_pipeline/show-25.png +0 -0
  193. data/rails_generators/templates/public/images/re_pipeline/show-48.png +0 -0
  194. data/rails_generators/templates/public/images/re_pipeline/verify-14.png +0 -0
  195. data/rails_generators/templates/public/images/re_pipeline/verify-18.png +0 -0
  196. data/rails_generators/templates/public/images/re_pipeline/verify-25.png +0 -0
  197. data/rails_generators/templates/public/images/re_pipeline/verify-48.png +0 -0
  198. data/rails_generators/templates/public/images/re_rule/__destroy-14.png +0 -0
  199. data/rails_generators/templates/public/images/re_rule/__destroy-18.png +0 -0
  200. data/rails_generators/templates/public/images/re_rule/__destroy-25.png +0 -0
  201. data/rails_generators/templates/public/images/re_rule/__destroy-48.png +0 -0
  202. data/rails_generators/templates/public/images/re_rule/destroy-14.png +0 -0
  203. data/rails_generators/templates/public/images/re_rule/destroy-18.png +0 -0
  204. data/rails_generators/templates/public/images/re_rule/destroy-25.png +0 -0
  205. data/rails_generators/templates/public/images/re_rule/destroy-48.png +0 -0
  206. data/rails_generators/templates/public/images/re_rule/edit-14.png +0 -0
  207. data/rails_generators/templates/public/images/re_rule/edit-18.png +0 -0
  208. data/rails_generators/templates/public/images/re_rule/edit-25.png +0 -0
  209. data/rails_generators/templates/public/images/re_rule/edit-48.png +0 -0
  210. data/rails_generators/templates/public/images/re_rule/goto-pipeline-14.png +0 -0
  211. data/rails_generators/templates/public/images/re_rule/goto-pipeline-18.png +0 -0
  212. data/rails_generators/templates/public/images/re_rule/move-down-14.png +0 -0
  213. data/rails_generators/templates/public/images/re_rule/move-down-18.png +0 -0
  214. data/rails_generators/templates/public/images/re_rule/move-down-25.png +0 -0
  215. data/rails_generators/templates/public/images/re_rule/move-down-48.png +0 -0
  216. data/rails_generators/templates/public/images/re_rule/move-down-off-14.png +0 -0
  217. data/rails_generators/templates/public/images/re_rule/move-down-off-18.png +0 -0
  218. data/rails_generators/templates/public/images/re_rule/move-down-off-25.png +0 -0
  219. data/rails_generators/templates/public/images/re_rule/move-down-off-48.png +0 -0
  220. data/rails_generators/templates/public/images/re_rule/move-up-14.png +0 -0
  221. data/rails_generators/templates/public/images/re_rule/move-up-18.png +0 -0
  222. data/rails_generators/templates/public/images/re_rule/move-up-25.png +0 -0
  223. data/rails_generators/templates/public/images/re_rule/move-up-48.png +0 -0
  224. data/rails_generators/templates/public/images/re_rule/move-up-off-14.png +0 -0
  225. data/rails_generators/templates/public/images/re_rule/move-up-off-18.png +0 -0
  226. data/rails_generators/templates/public/images/re_rule/move-up-off-25.png +0 -0
  227. data/rails_generators/templates/public/images/re_rule/move-up-off-48.png +0 -0
  228. data/rails_generators/templates/public/images/re_rule/next-change-14.png +0 -0
  229. data/rails_generators/templates/public/images/re_rule/next-change-18.png +0 -0
  230. data/rails_generators/templates/public/images/re_rule/next-change-25.png +0 -0
  231. data/rails_generators/templates/public/images/re_rule/next-change-48.png +0 -0
  232. data/rails_generators/templates/public/images/re_rule/next-show-14.png +0 -0
  233. data/rails_generators/templates/public/images/re_rule/next-show-18.png +0 -0
  234. data/rails_generators/templates/public/images/re_rule/next-show-25.png +0 -0
  235. data/rails_generators/templates/public/images/re_rule/next-show-48.png +0 -0
  236. data/rails_generators/templates/public/images/re_rule/stop-failure-14.png +0 -0
  237. data/rails_generators/templates/public/images/re_rule/stop-failure-18.png +0 -0
  238. data/rails_generators/templates/public/images/re_rule/stop-failure-25.png +0 -0
  239. data/rails_generators/templates/public/images/re_rule/stop-failure-48.png +0 -0
  240. data/rails_generators/templates/public/images/re_rule/stop-success-14.png +0 -0
  241. data/rails_generators/templates/public/images/re_rule/stop-success-18.png +0 -0
  242. data/rails_generators/templates/public/images/re_rule/stop-success-25.png +0 -0
  243. data/rails_generators/templates/public/images/re_rule/stop-success-48.png +0 -0
  244. data/rails_generators/templates/public/images/re_rule/valid-14.png +0 -0
  245. data/rails_generators/templates/public/images/re_rule/valid-18.png +0 -0
  246. data/rails_generators/templates/public/images/re_rule/valid-25.png +0 -0
  247. data/rails_generators/templates/public/images/re_rule/valid-48.png +0 -0
  248. data/rails_generators/templates/public/images/re_rule/verify-14.png +0 -0
  249. data/rails_generators/templates/public/images/re_rule/verify-18.png +0 -0
  250. data/rails_generators/templates/public/images/re_rule/verify-25.png +0 -0
  251. data/rails_generators/templates/public/images/re_rule/verify-48.png +0 -0
  252. data/rails_generators/templates/public/images/re_rule_class/add-14.png +0 -0
  253. data/rails_generators/templates/public/images/re_rule_class/add-18.png +0 -0
  254. data/rails_generators/templates/public/images/re_rule_class/add-25.png +0 -0
  255. data/rails_generators/templates/public/images/re_rule_class/add-48.png +0 -0
  256. data/rails_generators/templates/public/images/re_rule_class/help-14.png +0 -0
  257. data/rails_generators/templates/public/images/re_rule_class/help-18.png +0 -0
  258. data/rails_generators/templates/public/images/re_rule_class/help-25.png +0 -0
  259. data/rails_generators/templates/public/images/re_rule_class/help-48.png +0 -0
  260. data/rails_generators/templates/public/images/re_rule_class/list-down.png +0 -0
  261. data/rails_generators/templates/public/images/re_rule_class/list-right.png +0 -0
  262. data/rails_generators/templates/public/images/re_rule_class/new-14.png +0 -0
  263. data/rails_generators/templates/public/images/re_rule_class/new-18.png +0 -0
  264. data/rails_generators/templates/public/images/re_rule_class/new-25.png +0 -0
  265. data/rails_generators/templates/public/images/re_rule_class/new-48.png +0 -0
  266. data/rails_generators/templates/public/javascripts/re_jobs.js +59 -0
  267. data/rails_generators/templates/public/javascripts/re_pipeline.js +54 -0
  268. data/rails_generators/templates/public/javascripts/re_pipeline_change.js +205 -0
  269. data/rails_generators/templates/public/javascripts/re_pipeline_index.js +24 -0
  270. data/rails_generators/templates/public/javascripts/re_pipeline_jobs.js +61 -0
  271. data/rails_generators/templates/public/javascripts/re_pipeline_new.js +34 -0
  272. data/rails_generators/templates/public/stylesheets/re_pipeline/accept.png +0 -0
  273. data/rails_generators/templates/public/stylesheets/re_pipeline/exclamation.png +0 -0
  274. data/rails_generators/templates/public/stylesheets/re_pipeline.css +509 -0
  275. data/rails_generators/templates/spec/controllers/re_pipelines_controller_spec.rb +111 -0
  276. data/rails_generators/templates/spec/models/re_job_audit_spec.rb +24 -0
  277. data/rails_generators/templates/spec/models/re_job_spec.rb +18 -0
  278. data/rails_generators/templates/spec/models/re_pipeline_activated_spec.rb +6 -0
  279. data/rails_generators/templates/spec/models/re_pipeline_base_spec.rb +157 -0
  280. data/rails_generators/templates/spec/models/re_pipeline_spec.rb +166 -0
  281. data/rails_generators/templates/spec/models/re_rule_outcome_spec.rb +97 -0
  282. data/rails_generators/templates/spec/models/re_rule_spec.rb +171 -0
  283. data/rails_generators/templates/spec/support/blueprint_re_pipelines.rb +11 -0
  284. data/spec/rules_engine_spec.rb +7 -0
  285. data/spec/spec.opts +1 -0
  286. data/spec/spec_helper.rb +9 -0
  287. data/tasks/rspec.rake +18 -0
  288. metadata +363 -0
@@ -0,0 +1,66 @@
1
+ <table width="100%" border="0" cellpadding="0" cellspacing="0" class="data" id="job_table">
2
+ <tr>
3
+ <th class="" width="110px">
4
+ <span class="left-5">
5
+ Job Id
6
+ </span>
7
+ </th>
8
+ <th class="text-right" width="180px">
9
+ <span class="right-20">
10
+ Start Time
11
+ </span>
12
+ </th>
13
+ <th class="text-right" width="180px">
14
+ <span class="right-20">
15
+ Finish Time
16
+ </span>
17
+ </th>
18
+ <th colspan="2">
19
+ <span class="left-5">
20
+ Data
21
+ </span>
22
+ </th>
23
+ </tr>
24
+ <% @re_jobs.each do | re_job | %>
25
+ <tr class="<%= cycle('', 'odd') %>">
26
+ <td>
27
+ <%
28
+ case re_job['job_status'].to_i
29
+ when ReJob::JOB_STATUS_NONE, ReJob::JOB_STATUS_RUNNING
30
+ job_class = 'job-running'
31
+ when ReJob::JOB_STATUS_SUCCESS
32
+ job_class = 'job-success'
33
+ else
34
+ job_class = 'job-error'
35
+ end
36
+ %>
37
+ <div class="<%= job_class %>">
38
+ <%= re_job['job_id'] %>
39
+ </div>
40
+ </td>
41
+ <td class="text-right">
42
+ <%= re_job['start_date'].strftime('%d %b %Y - %H:%M:%S') %>
43
+ </td>
44
+ <td class="text-right">
45
+ <%= re_job['end_date'] ? re_job['end_date'].strftime('%d %b %Y - %H:%M:%S') : '&nbsp;' %>
46
+ </td>
47
+ <td class="no-border-right">
48
+ <span class="left-5">
49
+ <%= re_job['end_data'] || re_job['start_data'] %>
50
+ </span>
51
+ </td>
52
+ <td class="no-border-left text-right">
53
+ <a class="pipeline-job-detail" href='#<%= re_job['job_id'] %>'>
54
+ </a>
55
+ </td>
56
+ </tr>
57
+ <% end %>
58
+
59
+ <tr class="<%= cycle('', 'odd') %>">
60
+ <td colspan = "5">
61
+ <a class="job-page-next-<%= @re_jobs.next_page ? 'enabled' : 'disabled' %>" href='#<%= @re_jobs.next_page || '0' %>'></a>
62
+ <a class="job-page-prev-<%= @re_jobs.previous_page ? 'enabled' : 'disabled' %>" href='#<%= @re_jobs.previous_page || '0' %>'></a>
63
+
64
+ </td>
65
+ </tr>
66
+ </table>
@@ -0,0 +1,43 @@
1
+ <div class="job-show">
2
+
3
+ <div class="float-left">
4
+ <h3>
5
+ <span class="blue">Job Id :</span> <%= @re_job.id %>
6
+ </h3>
7
+ </div>
8
+ <div class="float-right">
9
+ <h4>
10
+ <span class="blue">Created :</span> <%= @re_job.created_at.strftime('%d %b %Y - %H:%M:%S') %>
11
+ </h4>
12
+ </div>
13
+ <div class="clear"></div>
14
+ <table width="100%" border="0" cellpadding="0" cellspacing="0" class="data" id="job_audit_table">
15
+ <% @re_job_audits.each do | re_job_audit | %>
16
+ <tr class="<%= cycle('', 'odd') %>">
17
+ <td width="150px">
18
+ <%
19
+ if re_job_audit.audit_success
20
+ job_class = 'job-success'
21
+ else
22
+ job_class = 'job-error'
23
+ end
24
+ %>
25
+ <div class="<%= job_class %>">
26
+ <%= re_job_audit.audit_date.strftime('%H:%M:%S') %>
27
+ </div>
28
+ </td>
29
+ <td>
30
+ <%= re_job_audit.audit_data%>
31
+ </td>
32
+ <td class = "text-right">
33
+ <div class = "right-5">
34
+ <% if re_job_audit.audit_code == ReJobAudit::AUDIT_PIPELINE_START %>
35
+ <%= link_to(re_job_audit.re_pipeline.code, re_pipeline_path(re_job_audit.re_pipeline_id), :class => "job-goto") %>
36
+ <% end %>
37
+ </div>
38
+ </td>
39
+ </tr>
40
+ <% end %>
41
+
42
+ </table>
43
+ </div>
@@ -0,0 +1,21 @@
1
+ <% set_javascript_include 're_jobs' %>
2
+ <div class="jobs-index">
3
+ <h1>All Jobs</h1>
4
+ <div class="prepend-1 span-22 append-1">
5
+ <div class="jobs-index-box">
6
+
7
+ <%= render '/re_jobs/empty', :hide => !@re_jobs.empty? %>
8
+
9
+ <div id="job_list_pending" style="display:none">
10
+ <h3 class="left-20">Updating Job List</h3>
11
+ </div>
12
+ <div id="job_list">
13
+ <%= render '/re_jobs/index' %>
14
+ </div>
15
+
16
+
17
+ <div class="clear"></div>
18
+ </div>
19
+ </div>
20
+ <div class="clear"></div>
21
+ </div>
@@ -0,0 +1,9 @@
1
+ <%= javascript_alert_messages %>
2
+
3
+ $('#job_list_pending').hide();
4
+ <% if @re_jobs.empty? %>
5
+ $('#job_list_empty').show();
6
+ <% end %>
7
+
8
+ $('#job_list').html('<%=escape_javascript(render(:partial => '/re_jobs/index'))%>');
9
+ $('#job_list').show();
@@ -0,0 +1,12 @@
1
+ <%# set_javascript_include 're_pipeline_jobs' %>
2
+ <% set_subnav "Show Job",
3
+ link_to("All Jobs", re_jobs_path, :class => "job-list") %>
4
+
5
+ <div class="prepend-1 span-22 append-1">
6
+ <div class="infobox">
7
+
8
+ <%= render '/re_jobs/show' %>
9
+ <div class="clear"></div>
10
+ </div>
11
+ </div>
12
+ <div class="clear"></div>
@@ -0,0 +1 @@
1
+ $('#tb_temp_container').html('<%=escape_javascript(render(:partial => '/re_jobs/show'))%>');
@@ -0,0 +1,11 @@
1
+ <% local_hide = local_assigns[:hide] && hide %>
2
+
3
+ <div id="job_list_empty" style="<%= local_hide ? 'display:none' : '' %>">
4
+ <div class="redbox-header"><h4 class="white">No Pipeline Jobs Created</h4></div>
5
+ <div class="redbox no-top">
6
+ <h4 class="left-5">Jobs are added when run.</h4>
7
+ </div>
8
+ <div class="clear"></div>
9
+ </div>
10
+ <div class="clear"></div>
11
+
@@ -0,0 +1,41 @@
1
+ <h3>Job List</h3>
2
+
3
+ <div class="right-10">
4
+ <table width="100%" border="0" cellpadding="0" cellspacing="0" class="data" id="job_table">
5
+ <% @re_jobs.each do | re_job | %>
6
+ <tr class="<%= cycle('', 'odd') %>">
7
+ <td class="no-border-right text-right">
8
+ <%
9
+ job_date = re_job['start_date']
10
+ case re_job['job_status'].to_i
11
+ when ReJob::JOB_STATUS_NONE, ReJob::JOB_STATUS_RUNNING
12
+ job_class = 'job-running'
13
+ when ReJob::JOB_STATUS_SUCCESS
14
+ job_class = 'job-success'
15
+ else
16
+ job_class = 'job-error'
17
+ end
18
+ %>
19
+ <div class="<%= job_class %>">
20
+ <%= re_job['job_id'] %>
21
+ </div>
22
+ </td>
23
+ <td class="no-border-left no-border-right text-right">
24
+ <%= job_date.strftime('%d %b %Y - %H:%M:%S') %>
25
+ </td>
26
+ <td class="no-border-left text-right">
27
+ <a class="pipeline-job-detail" href='#<%= re_job['job_id'] %>'></a>
28
+ </td>
29
+ </tr>
30
+ <% end %>
31
+
32
+ <tr class="<%= cycle('', 'odd') %>">
33
+ <td colspan = "3">
34
+ <a class="job-page-next-<%= @re_jobs.next_page ? 'enabled' : 'disabled' %>" href='#<%= @re_jobs.next_page || '0' %>'></a>
35
+ <a class="job-page-prev-<%= @re_jobs.previous_page ? 'enabled' : 'disabled' %>" href='#<%= @re_jobs.previous_page || '0' %>'></a>
36
+
37
+ </td>
38
+ </tr>
39
+ </table>
40
+
41
+ </div>
@@ -0,0 +1,21 @@
1
+ <% set_javascript_include 're_pipeline_jobs' %>
2
+ <% set_subnav @re_pipeline.title,
3
+ link_to("All Pipelines", re_pipelines_path, :class => "pipeline-list"),
4
+ link_to("Show Pipeline", re_pipeline_path(@re_pipeline), :class => "pipeline-show") %>
5
+
6
+ <div class="prepend-1 span-22 append-1">
7
+ <div class="infobox">
8
+
9
+ <%= render '/re_pipeline_jobs/empty', :hide => true %>
10
+
11
+ <div id="job_list_pending" class="infobox">
12
+ <h3 class="left-20">Updating Job List</h3>
13
+ <a id="job_list_pipeline" href="#<%= @re_pipeline.id %>"/>
14
+ </div>
15
+
16
+ <div id="job_list">
17
+ </div>
18
+ <div class="clear"></div>
19
+ </div>
20
+ </div>
21
+ <div class="clear"></div>
@@ -0,0 +1,10 @@
1
+ <%= javascript_alert_messages %>
2
+
3
+ $('#job_list_pending').slideUp(150, function() {
4
+ <% if @re_jobs.empty? %>
5
+ $('#job_list_empty').slideDown(150);
6
+ <% end %>
7
+ });
8
+
9
+ $('#job_list').html('<%=escape_javascript(render(:partial => '/re_pipeline_jobs/index'))%>');
10
+ $('#job_list').show();
@@ -0,0 +1,46 @@
1
+ <% re_pipeline_status = re_pipeline_status(@re_pipeline) %>
2
+ <% re_pipeline_verify = @re_pipeline.verify %>
3
+
4
+ <div class="span-16">
5
+ <div class="infobox">
6
+ <div class="span-10" id="pipeline_code">
7
+ <h3 class="pipeline-status-<%= @re_pipeline_verify.blank? ? re_pipeline_status : 'verify' %>"><%=h @re_pipeline.code%></h3>
8
+ </div>
9
+ <div class="span-5 last">
10
+ <% if re_pipeline_verify.blank? %>
11
+ <em class="float-right pipeline-status-<%= re_pipeline_status %>" id="pipeline_status"><%= re_pipeline_status.titleize %></em>
12
+ <% else %>
13
+ <em class="float-right pipeline-status-verify"><%= re_pipeline_verify %></em>
14
+ <% end %>
15
+ </div>
16
+
17
+ <div class="clear"></div>
18
+
19
+ <div class="span-14 prepend-1 last">
20
+ <h5 id="pipeline_title"> <%=h @re_pipeline.title%></h5>
21
+ </div>
22
+ <div class="clear"></div>
23
+
24
+ <div class="span-12 prepend-2 append-1 last" id="pipeline_description">
25
+ <%=h @re_pipeline.description%>
26
+ </div>
27
+ <div class="clear"></div>
28
+
29
+ </div>
30
+ <div class="clear top-5"></div>
31
+ </div>
32
+ <div class="clear"></div>
33
+
34
+ <div style="display:none">
35
+ <% dougo_form_for(@re_pipeline, :url => activate_re_pipeline_path(@re_pipeline), :html => {:method => :put, :id => "pipeline_activate_form"}) do |f| %>
36
+ <% end %>
37
+
38
+ <% dougo_form_for(@re_pipeline, :url => deactivate_re_pipeline_path(@re_pipeline), :html => {:method => :put, :id => "pipeline_deactivate_form"}) do |f| %>
39
+ <% end %>
40
+
41
+ <% dougo_form_for(@re_pipeline, :url => revert_re_pipeline_path(@re_pipeline), :html => {:method => :put, :id => "pipeline_revert_form"}) do |f| %>
42
+ <% end %>
43
+
44
+ <% dougo_form_for(@re_pipeline, :url => re_pipeline_path(@re_pipeline), :html => {:method => :delete, :id => "pipeline_delete_form"}) do |f| %>
45
+ <% end %>
46
+ </div>
@@ -0,0 +1,34 @@
1
+ <% changed_status = @re_pipeline.changed_status %>
2
+
3
+ <h3 class="pipeline-edit float-left clear">
4
+ <%= link_to("Edit Pipeline Details", "##{@re_pipeline.id}", :class => "pipeline-action-edit") %>
5
+ </h3>
6
+
7
+ <% if changed_status == RePipelineBase::CHANGED_STATUS_DRAFT %>
8
+ <h3 class="pipeline-activate float-left clear">
9
+ <%= link_to("Activate Pipeline", "##{@re_pipeline.id}", :class => "pipeline-action-activate") %>
10
+ </h3>
11
+ <% end %>
12
+ <% if changed_status == RePipelineBase::CHANGED_STATUS_CHANGED %>
13
+ <h3 class="pipeline-activate float-left clear">
14
+ <%= link_to("Activate Pipeline Changes", "##{@re_pipeline.id}", :class => "pipeline-action-activate") %>
15
+ </h3>
16
+ <% end %>
17
+
18
+ <% if changed_status != RePipelineBase::CHANGED_STATUS_DRAFT && changed_status != RePipelineBase::CHANGED_STATUS_CHANGED %>
19
+ <h3 class="pipeline-deactivate float-left clear">
20
+ <%= link_to("Deactivate Pipeline", "##{@re_pipeline.id}", :class => "pipeline-action-deactivate") %>
21
+ </h3>
22
+ <% end %>
23
+
24
+ <% if changed_status == RePipelineBase::CHANGED_STATUS_CHANGED %>
25
+ <h3 class="pipeline-revert float-left clear">
26
+ <%= link_to("Discard Pipeline Changes", "##{@re_pipeline.id}", :class => "pipeline-action-revert") %>
27
+ </h3>
28
+ <% end %>
29
+
30
+ <% if changed_status == RePipelineBase::CHANGED_STATUS_DRAFT %>
31
+ <h3 class="pipeline-delete float-left clear">
32
+ <%= link_to("Delete Pipeline", "##{@re_pipeline.id}", :class => "pipeline-action-delete") %>
33
+ </h3>
34
+ <% end %>
@@ -0,0 +1,40 @@
1
+ <div style="display:none">
2
+
3
+ <div id="pipeline_action_confirm" style="display:none;">
4
+ <div class="span-14 prepend-1 last">
5
+ <% whitebox do %>
6
+ <h2 class="pipeline-alert red" id="pipeline_action_title"></h2>
7
+ <div class="clear top-5"></div>
8
+ <hr/>
9
+ <div class="clear top-5"></div>
10
+
11
+ <div class="span-13 last" id="pipeline_action_content_code">
12
+ </div>
13
+ <div class="clear"></div>
14
+
15
+ <div class="span-12 prepend-1 last">
16
+ <h5 id="pipeline_action_content_title"></h5>
17
+ </div>
18
+ <div class="clear"></div>
19
+ <%= button_link_green('Action', "#", :id => "pipeline_action_ok") %>
20
+ <%= button_link_orange('Cancel', "#", :id => "pipeline_action_cancel") %>
21
+ <% end %>
22
+ </div>
23
+ </div>
24
+
25
+ <div id="rule_delete_confirm" style="display:none">
26
+ <div class="span-11 prepend-1 last">
27
+ <% whitebox do %>
28
+ <h2 class="pipeline-delete red">Confirm Delete</h2>
29
+ <div class="clear top-5"></div>
30
+ <hr/>
31
+ <h5 class="float-left"><strong>This cannot be undone !!!</strong></h5>
32
+ <%= button_link_green('Delete', "#", :id => "rule_delete_ok") %>
33
+ <%= button_link_orange('Cancel', "#", :id => "rule_delete_cancel") %>
34
+ <div class="clear"></div>
35
+
36
+ <% end %>
37
+ </div>
38
+ </div>
39
+
40
+ </div>
@@ -0,0 +1,21 @@
1
+ <div class="clear prepend-1 span-18">
2
+ <h2 class="pipeline-edit">Edit Pipeline Details</h2>
3
+ <div class="clear top-10"></div>
4
+
5
+ <% dougo_form_for(@re_pipeline, :url => re_pipeline_path(@re_pipeline), :method => :post, :span => "3x13", :html => {:id => "pipeline_edit_form"}) do |f| %>
6
+ <%= f.error_messages :message => "Unable To Update Pipeline" %>
7
+ <% whitebox do %>
8
+ <%= f.text_field(:title, :required => true) %>
9
+
10
+ <%= form_text_ext("Code", @re_pipeline.code, :span => "3x13", :hint => "<strong>NOTE :</strong> the pipeline code cannot be changed") %>
11
+ <div class="clear top-5"></div>
12
+
13
+ <%= f.text_area(:description) %>
14
+
15
+ <div class="clear"></div>
16
+ <%= button_submit_green('Update', :id => "pipeline_edit_update") %>
17
+ <%= button_link_orange('Cancel', change_re_pipeline_path(@re_pipeline), :id => "pipeline_edit_cancel") %>
18
+ <% end %>
19
+ <% end %>
20
+ </div>
21
+ <div class="clear"></div>
@@ -0,0 +1,13 @@
1
+ <% local_hide = local_assigns[:hide] && hide %>
2
+
3
+ <div class="span-22" id="pipelines_empty" style="<%= local_hide ? 'display:none' : '' %>">
4
+ <div class="redbox-header"><h3 class="white">No Pipelines Defined</h3></div>
5
+ <div class="redbox no-top">
6
+ <div class="clear top-5 prepend-1 append-1">
7
+ <h4>Create a new pipeline and define the rules.</h4>
8
+ <p>TODO: "Why this message" Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
9
+ </div>
10
+ </div>
11
+ <div class="clear top-5"></div>
12
+ </div>
13
+ <div class="clear"></div>
@@ -0,0 +1,58 @@
1
+ <% local_hide = local_assigns[:hide] && hide %>
2
+ <% re_pipeline_status = re_pipeline_status(re_pipeline) %>
3
+ <% re_pipeline_verify = re_pipeline.verify %>
4
+
5
+ <div class="span-22" id="pipeline_index_<%= re_pipeline.id %>" style="<%= local_hide ? 'display:none' : '' %>">
6
+ <div class="infobox">
7
+ <div class="span-16">
8
+ <h3 class="pipeline-status-<%= re_pipeline_verify.blank? ? re_pipeline_status : 'verify' %>"><%=h re_pipeline.code %></h3>
9
+ </div>
10
+ <div class="span-5 last">
11
+ <div>
12
+ <h3 class="pipeline-change float-right"><%= link_to("Edit", change_re_pipeline_path(re_pipeline)) %></h3>
13
+ <h3 class="pipeline-show float-right"><%= link_to("View", re_pipeline_path(re_pipeline)) %></h3>
14
+ </div>
15
+ </div>
16
+ <div class="clear"></div>
17
+
18
+ <div class="span-1">
19
+ <div class="clear top-5"></div>
20
+ <a href="#<%= re_pipeline.id %>" class="pipeline-rule-list-toggle">
21
+ <% if re_pipeline.re_rules.empty? %>
22
+ <div class="left-5 pipeline-rule-list-right"><span class="red">Rules</span></div>
23
+ <% else %>
24
+ <div class="left-5 pipeline-rule-list-right"> Rules </div>
25
+ <% end %>
26
+ </a>
27
+ </div>
28
+ <div class="span-15">
29
+ <h5 class="left-20"> <%=h re_pipeline.title%></h5>
30
+ </div>
31
+ <div class="span-5 last">
32
+ <% if re_pipeline_verify.blank? %>
33
+ <em class="float-right right-10 pipeline-status-<%= re_pipeline_status %>"><%= re_pipeline_status.titleize %></em>
34
+ <% else %>
35
+ <em class="float-right right-10 red"><%= re_pipeline_verify %></em>
36
+ <% end %>
37
+ </div>
38
+ <div class="clear"></div>
39
+
40
+ <div class="span-18 prepend-2 append-1 last">
41
+ <%=h re_pipeline.description%>
42
+ </div>
43
+ <div class="clear"></div>
44
+
45
+ </div>
46
+ <div class="infobox no-top hide" id="pipeline_rule_list_<%= re_pipeline.id %>">
47
+ <%= render '/re_rules/empty', :re_pipeline => re_pipeline %>
48
+
49
+ <% re_pipeline.re_rules.each_with_index do |re_rule, index | %>
50
+ <%= render '/re_rules/index', :re_rule => re_rule, :new_row => (index != 0 && (index % 3) == 0), :first_rule => re_rule == re_pipeline.re_rules[0], :last_rule => re_rule == re_pipeline.re_rules[-1] %>
51
+ <% end %>
52
+
53
+ <div class="clear"></div>
54
+ </div>
55
+
56
+ <div class="clear top-5"></div>
57
+ </div>
58
+ <div class="clear"></div>
@@ -0,0 +1,18 @@
1
+ <div class="clear prepend-1 span-18">
2
+ <h2 class="pipeline-new"> New Pipeline</h2>
3
+ <div class="clear top-10"></div>
4
+
5
+ <% dougo_form_for(@re_pipeline, :url => re_pipelines_path, :method => :post, :span => "3x13", :html => {:id => "pipeline_new_form"}) do |f| %>
6
+ <%= f.error_messages :message => "Unable To Create Pipeline" %>
7
+ <% whitebox do %>
8
+ <%= f.text_field(:title, :required => true) %>
9
+ <%= f.text_field(:code, :required => true, :hint => "must be unique") %>
10
+ <%= f.text_area(:description) %>
11
+
12
+ <div class="clear"></div>
13
+ <%= button_submit_green('Insert', :id => "pipeline_new_insert") %>
14
+ <%= button_link_orange('Cancel', re_pipelines_path, :id => "pipeline_new_cancel") %>
15
+ <% end %>
16
+ <% end %>
17
+ </div>
18
+ <div class="clear"></div>
@@ -0,0 +1,32 @@
1
+ <% re_pipeline_status = re_pipeline_status(@re_pipeline) %>
2
+ <% re_pipeline_verify = @re_pipeline.verify %>
3
+
4
+ <div class="span-16">
5
+ <div class="infobox">
6
+ <div class="span-10">
7
+ <h3 class="pipeline-status-<%= @re_pipeline_verify.blank? ? re_pipeline_status : 'verify' %>"><%=h @re_pipeline.code%></h3>
8
+ </div>
9
+ <div class="span-5 last">
10
+ <% if re_pipeline_verify.blank? %>
11
+ <em class="float-right pipeline-status-<%= re_pipeline_status %>"><%= re_pipeline_status.titleize %></em>
12
+ <% else %>
13
+ <em class="float-right pipeline-status-verify"><%= re_pipeline_verify %></em>
14
+ <% end %>
15
+ </div>
16
+
17
+ <div class="clear"></div>
18
+
19
+ <div class="span-14 prepend-1 last">
20
+ <h5> <%=h @re_pipeline.title%></h5>
21
+ </div>
22
+ <div class="clear"></div>
23
+
24
+ <div class="span-12 prepend-2 append-1 last">
25
+ <%=h @re_pipeline.description%>
26
+ </div>
27
+ <div class="clear"></div>
28
+
29
+ </div>
30
+ <div class="clear top-5"></div>
31
+ </div>
32
+ <div class="clear"></div>
@@ -0,0 +1,3 @@
1
+ <h3 class="pipeline-change float-left clear">
2
+ <%= link_to("Edit Pipeline", change_re_pipeline_path(@re_pipeline)) %>
3
+ </h3>
@@ -0,0 +1,37 @@
1
+ <% set_javascript_include 're_pipeline_change' %>
2
+ <% set_subnav 'Edit Pipeline',
3
+ link_to("All Pipelines", re_pipelines_path, :class => "pipeline-list"),
4
+ link_to("View Pipeline", re_pipeline_path(@re_pipeline), :class => "pipeline-show") %>
5
+
6
+ <div class="prepend-1 span-16 border" id="change_pipeline">
7
+ <%= render :partial => 'change' %>
8
+ </div>
9
+ <div class="span-7 last" id="change_pipeline_actions">
10
+ <%= render :partial => 'change_actions' %>
11
+ </div>
12
+ <div class="clear"></div>
13
+
14
+ <hr/>
15
+
16
+ <div class="prepend-1 span-16 border">
17
+ <div class="infobox">
18
+
19
+ <div class="clear top-5"></div>
20
+ <div id="change_rules">
21
+ <% @re_pipeline.re_rules.each do |re_rule | %>
22
+ <%= render '/re_rules/change', :re_rule => re_rule, :first_rule => re_rule == @re_pipeline.re_rules[0], :last_rule => re_rule == @re_pipeline.re_rules[-1] %>
23
+ <div class="clear"></div>
24
+ <% end %>
25
+ </div>
26
+
27
+ <div class="clear top-5"></div>
28
+ <%= render '/re_rules/empty', :re_pipeline => @re_pipeline %>
29
+ </div>
30
+ </div>
31
+ <div class="span-7 last">
32
+ <%= render :partial => '/re_rules/menu' %>
33
+ </div>
34
+ <div class="clear"></div>
35
+
36
+ <%= render :partial => 'confirm' %>
37
+
@@ -0,0 +1,8 @@
1
+ <%= javascript_alert_messages %>
2
+
3
+ self.parent.tb_remove();
4
+
5
+ $('#pipeline_index').after('<%=escape_javascript(render('/re_pipelines/index', :re_pipeline => @re_pipeline, :hide => true))%>');
6
+
7
+ $('#pipelines_empty').hide();
8
+ $('#pipeline_index_<%=@re_pipeline.id%>').slideDown();
@@ -0,0 +1,11 @@
1
+ <% set_subnav 'Edit Pipeline Details',
2
+ link_to("All Pipelines", re_pipelines_path, :class => "pipeline-list"),
3
+ link_to("Edit Pipeline", change_re_pipeline_path(@re_pipeline), :class => "pipeline-change") %>
4
+
5
+ <div class="prepend-1 span-22 append-1">
6
+ <div class="infobox">
7
+ <%= render :partial => 'edit' %>
8
+ <div class="clear top-5"></div>
9
+ </div>
10
+ </div>
11
+ <div class="clear"></div>
@@ -0,0 +1,5 @@
1
+ $('#tb_temp_container').html('<%=escape_javascript(render(:partial => '/re_pipelines/edit'))%>');
2
+
3
+ $('#pipeline_edit_update').closest('div.form-button').dougo_form_button();
4
+
5
+ $("#pipeline_edit_form").submit(function() { return false; });
@@ -0,0 +1,14 @@
1
+ <% set_javascript_include ['re_pipeline_index', 're_pipeline_new'] %>
2
+ <% set_subnav 'All Pipelines', link_to("New Pipeline", new_re_pipeline_path, :class => "pipeline-new") %>
3
+
4
+ <div class="prepend-1 span-22 append-1" id="index_pipelines_empty">
5
+ <div class="clear" id="pipeline_index"></div>
6
+
7
+ <%= render 'empty', :hide => !@re_pipelines.empty? %>
8
+
9
+ <% @re_pipelines.each do | re_pipeline | %>
10
+ <%= render 'index', :re_pipeline => re_pipeline %>
11
+ <% end %>
12
+
13
+ </div>
14
+ <div class="clear"></div>
@@ -0,0 +1,9 @@
1
+ <% set_subnav 'New Pipeline', link_to("All Pipelines", re_pipelines_path, :class => "pipeline-list") %>
2
+
3
+ <div class="prepend-1 span-22 append-1">
4
+ <div class="infobox">
5
+ <%= render :partial => 'new' %>
6
+ <div class="clear top-5"></div>
7
+ </div>
8
+ </div>
9
+ <div class="clear"></div>
@@ -0,0 +1,5 @@
1
+ $('#tb_temp_container').html('<%=escape_javascript(render(:partial => '/re_pipelines/new'))%>');
2
+
3
+ $('#pipeline_new_insert').closest('div.form-button').dougo_form_button();
4
+
5
+ $("#pipeline_new_form").submit(function() { return false; });