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,41 @@
1
+ <% set_javascript_include 're_pipeline_jobs' %>
2
+ <% set_subnav 'View Pipeline', link_to("All Pipelines", re_pipelines_path, :class => "pipeline-list") %>
3
+
4
+ <div class="prepend-1 span-16 border">
5
+ <%= render :partial => 'show' %>
6
+ </div>
7
+ <div class="span-7 last">
8
+ <%= render :partial => 'show_actions' %>
9
+ </div>
10
+ <div class="clear"></div>
11
+
12
+ <hr/>
13
+
14
+ <div class="prepend-1 span-16 border">
15
+ <div class="infobox">
16
+
17
+ <div class="clear top-5"></div>
18
+ <% @re_pipeline.re_rules.each do |re_rule | %>
19
+ <%= render '/re_rules/show', :re_rule => re_rule, :first_rule => re_rule == @re_pipeline.re_rules[0], :last_rule => re_rule == @re_pipeline.re_rules[-1] %>
20
+ <div class="clear"></div>
21
+ <% end %>
22
+
23
+ <div class="clear top-5"></div>
24
+ <%= render '/re_rules/empty', :re_pipeline => @re_pipeline %>
25
+ </div>
26
+ </div>
27
+ <div class="span-7 last">
28
+ <%= render '/re_pipeline_jobs/empty', :hide => true %>
29
+
30
+ <div id="job_list_pending" class="infobox">
31
+ <h3 class="left-20">Updating Job List</h3>
32
+ <a id="job_list_pipeline" href="#<%= @re_pipeline.id %>"/>
33
+ </div>
34
+
35
+ <div id="job_list">
36
+ </div>
37
+
38
+ <div class="clear"></div>
39
+
40
+ </div>
41
+ <div class="clear"></div>
@@ -0,0 +1,13 @@
1
+ <%= javascript_alert_messages %>
2
+
3
+ self.parent.tb_remove();
4
+
5
+ $('#change_pipeline').html('<%=escape_javascript(render('/re_pipelines/change'))%>');
6
+ $('#change_pipeline_actions').html('<%=escape_javascript(render('/re_pipelines/change_actions'))%>');
7
+
8
+ <%= render('/re_rules/empty', :re_pipeline => @re_pipeline) %>
9
+
10
+ $('#change_rules').html('')
11
+ <% @re_pipeline.re_rules.each do |re_rule | %>
12
+ $('#change_rules').append('<%=escape_javascript(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]))%>');
13
+ <% end %>
@@ -0,0 +1,7 @@
1
+ <%= render :partial => '/re_rule_definitions/blacklist_word/script' %>
2
+
3
+ <%= render :partial => '/re_rule_definitions/blacklist_word/title' %>
4
+
5
+ <%= render :partial => '/re_rule_definitions/blacklist_word/words', :locals => { :f => f } %>
6
+
7
+ <%= render :partial => '/re_rule_definitions/blacklist_word/pipeline' %>
@@ -0,0 +1,2 @@
1
+ <h2> Blacklist Words </h2>
2
+ <p> Explain this rule</p>
@@ -0,0 +1,7 @@
1
+ <%= render :partial => '/re_rule_definitions/blacklist_word/script' %>
2
+
3
+ <%= render :partial => '/re_rule_definitions/blacklist_word/title' %>
4
+
5
+ <%= render :partial => '/re_rule_definitions/blacklist_word/words', :locals => { :f => f } %>
6
+
7
+ <%= render :partial => '/re_rule_definitions/blacklist_word/pipeline' %>
@@ -0,0 +1,18 @@
1
+ <div class="clear top-10"></div>
2
+ <hr/>
3
+
4
+ <div class="span-8">
5
+ <%= select_ext "Match Outcome", 'blacklist_word_pipeline_action',
6
+ options_for_select([
7
+ ["Continue Next", 'next'],
8
+ ["Stop Success", 'stop_success'],
9
+ ["Stop Failure", 'stop_failure'],
10
+ ["Add to Pipeline", 'start_pipeline']
11
+ ],
12
+ @rule.pipeline_action || params['blacklist_word_pipeline_action']),
13
+ :required => true %>
14
+ </div>
15
+ <div class="prepend-1 span-7 last">
16
+ <%= text_field_ext "Pipeline Name", "blacklist_word_pipeline", @rule.pipeline || params[:blacklist_word_pipeline] || '', :size => 20, :required => true, :span => '3x5' %>
17
+ </div>
18
+
@@ -0,0 +1,26 @@
1
+ <% javascript_tag do %>
2
+ var new_blacklist_word = '<%=escape_javascript(render(:partial => "/re_rule_definitions/blacklist_word/word"))%>'
3
+
4
+ var updatePipelineAction = function() {
5
+ if ($('#blacklist_word_pipeline_action').attr('value') == "start_pipeline")
6
+ {
7
+ $('#blacklist_word_pipeline').dougo_form_enable();
8
+ $('#blacklist_word_pipeline').removeAttr("disabled");
9
+ } else {
10
+ $('#blacklist_word_pipeline').dougo_form_disable();
11
+ $('#blacklist_word_pipeline').attr("disabled", true);
12
+ }
13
+ }
14
+
15
+ $(document).ready(function() {
16
+ $('#rule_title').focus();
17
+ $("#blacklist_word_pipeline").autocomplete('/re_pipelines/lookup?t=title', { multiple: false });
18
+
19
+ $('#blacklist_word_pipeline_action').change(function() {
20
+ updatePipelineAction();
21
+ });
22
+
23
+ updatePipelineAction();
24
+ });
25
+
26
+ <% end %>
@@ -0,0 +1,6 @@
1
+ <%= text_field_ext "Rule Title",
2
+ "blacklist_word_title",
3
+ params[:blacklist_word_title] || @re_rule.title || @rule.options[:name],
4
+ :size => 30,
5
+ :required => true,
6
+ :span => '4x12' %>
@@ -0,0 +1,12 @@
1
+ <% id = local_assigns[:position] ? position : 'NEW_RECORD' %>
2
+
3
+ <div id="blacklist_word_<%=id%>">
4
+ <%= text_field_ext "Words to blacklist", "blacklist_word[#{id}][word]",
5
+ local_assigns[:word] ? word : '',
6
+ :size => 40,
7
+ :required => id == 0,
8
+ :span => '4x12',
9
+ :hint => render_remove_link("Remove", "blacklist_word[#{id}]", id) %>
10
+
11
+ <%= render_delete_field("blacklist_word[#{id}]", id) %>
12
+ </div>
@@ -0,0 +1,16 @@
1
+ <% position = 0 %>
2
+ <% (@rule.words || []).each do | word | %>
3
+ <% f.fields_for :rule_data, {:first => false} do |frd| %>
4
+ <%= render :partial => '/re_rule_definitions/blacklist_word/word', :locals => { :f => frd, :position => position, :word => word} %>
5
+ <% position += 1 %>
6
+ <% end %>
7
+ <% end %>
8
+ <% if position == 0 %>
9
+ <% f.fields_for :rule_data, {:first => false} do |frd| %>
10
+ <%= render :partial => '/re_rule_definitions/blacklist_word/word', :locals => { :f => frd, :position => position} %>
11
+ <% end %>
12
+ <% end %>
13
+
14
+ <div id="new_position_blacklist_word"></div>
15
+ <%= form_text_ext "", render_add_link('Add another word to the blacklist', 'blacklist_word') %>
16
+
@@ -0,0 +1,6 @@
1
+ <%= text_field_ext "Rule Title",
2
+ "simple_title",
3
+ params[:simple_title] || @re_rule.title || @rule.options[:name],
4
+ :size => 30,
5
+ :required => true,
6
+ :span => '4x12' %>
@@ -0,0 +1,2 @@
1
+ <h2> Simple </h2>
2
+ <p> Explain this rule</p>
@@ -0,0 +1,6 @@
1
+ <%= text_field_ext "Rule Title",
2
+ "simple_title",
3
+ params[:simple_title] || @re_rule.title || @rule.options[:name],
4
+ :size => 30,
5
+ :required => true,
6
+ :span => '4x12' %>
@@ -0,0 +1,6 @@
1
+ <%%= text_field_ext "Rule Title",
2
+ "<%=rule_name %>_title",
3
+ params[:<%=rule_name %>_title] || @re_rule.title || @rule.options[:name],
4
+ :size => 30,
5
+ :required => true,
6
+ :span => '4x12' %>
@@ -0,0 +1,2 @@
1
+ <h2> <%=rule_class %> </h2>
2
+ <p> Explain this rule</p>
@@ -0,0 +1,6 @@
1
+ <%%= text_field_ext "Rule Title",
2
+ "<%=rule_name %>_title",
3
+ params[:<%=rule_name %>_title] || @re_rule.title || @rule.options[:name],
4
+ :size => 30,
5
+ :required => true,
6
+ :span => '4x12' %>
@@ -0,0 +1,57 @@
1
+ <% re_rule_verify = re_rule.verify %>
2
+ <% local_first_rule = local_assigns[:first_rule] && first_rule %>
3
+ <% local_last_rule = local_assigns[:last_rule] && last_rule %>
4
+
5
+ <div class="span-15 last rule-change" id="change_rule_<%= re_rule.id %>">
6
+ <div class="<%= re_rule_verify.blank? ? 'bluebox' : 'redbox' %> rule-status-<%= re_rule_verify.blank? ? 'valid' : 'verify' %>">
7
+ <h3 class="float-left"><%= re_rule.title %></h3>
8
+ <div class="float-right">
9
+ <%= link_to("<span>Edit</span>", "##{@re_pipeline.id}|#{re_rule.id}", :class => "rule-edit") %>
10
+ <%= link_to("<span>Delete</span>", "##{@re_pipeline.id}|#{re_rule.id}", :class => "rule-delete") %>
11
+ <%= link_to("<span>Move Down</span>", "##{@re_pipeline.id}|#{re_rule.id}", :class => "#{local_last_rule ? 'rule-move-down-off' : 'rule-move-down'}") %>
12
+ <%= link_to("<span>Move Up</span>", "##{@re_pipeline.id}|#{re_rule.id}", :class => "#{local_first_rule ? 'rule-move-up-off' : 'rule-move-up'}") %>
13
+ </div>
14
+ <div class="clear"></div>
15
+ </div>
16
+ <div class="<%= re_rule_verify.blank? ? 'bluebox' : 'redbox' %> no-top">
17
+ <div class="span-10">
18
+ <p class="top-5 left-10">
19
+ <%= re_rule.summary %>
20
+ </p>
21
+ </div>
22
+
23
+ <div class="prepend-10 top-10">
24
+ <% if re_rule.re_rule_outcomes.empty? %>
25
+ <div class="rule-continue">Continue</div>
26
+ <% end %>
27
+ <% unless re_rule.re_rule_outcome_next.nil? %>
28
+ <div class="rule-continue">Continue</div>
29
+ <% end %>
30
+ <% re_rule.re_rule_outcomes_start_pipeline.each do |re_rule_outcome| %>
31
+ <div class="rule-goto-pipeline"><%= re_rule_outcome.pipeline_code %></div>
32
+ <% end %>
33
+ <% unless re_rule.re_rule_outcome_failure.nil? %>
34
+ <div class="rule-stop-failure">Stop Failure</div>
35
+ <% end %>
36
+ <% unless re_rule.re_rule_outcome_success.nil? %>
37
+ <div class="rule-stop-success">Stop Success</div>
38
+ <% end %>
39
+ </div>
40
+ <div class="clear"></div>
41
+ </div>
42
+ </div>
43
+
44
+ <% unless local_last_rule %>
45
+ <div class="prepend-7 span-2"><div class="rule-next-change"></div></div>
46
+ <% end %>
47
+
48
+ <div style="display:none">
49
+ <% dougo_form_for(re_rule, :url => re_pipeline_re_rule_path(@re_pipeline, re_rule), :html => {:method => :delete, :id => "rule_delete_form_#{re_rule.id}"}) do |f| %>
50
+ <% end %>
51
+
52
+ <% dougo_form_for(re_rule, :url => move_up_re_pipeline_re_rule_path(@re_pipeline, re_rule), :html => {:method => :put, :id => "rule_move_up_form_#{re_rule.id}"}) do |f| %>
53
+ <% end %>
54
+
55
+ <% dougo_form_for(re_rule, :url => move_down_re_pipeline_re_rule_path(@re_pipeline, re_rule), :html => {:method => :put, :id => "rule_move_down_form_#{re_rule.id}"}) do |f| %>
56
+ <% end %>
57
+ </div>
@@ -0,0 +1,25 @@
1
+ <div class="clear prepend-1 span-18">
2
+ <h2 class="rule-edit"> Edit <%= @rule_class.options[:name] %></h2>
3
+ <div class="clear top-10"></div>
4
+
5
+ <% dougo_form_for(@re_rule, :url => re_pipeline_re_rule_path(@re_pipeline, @re_rule), :method => :post, :span => "3x13", :html => {:id => "rule_edit_form"}) do |f| %>
6
+ <%= f.error_messages :message => "Unable To Update Rule : #{@rule_class.options[:name]}" %>
7
+ <% unless @rule.errors.empty? %>
8
+ <div id="errorExplanation" class="errorExplanation">
9
+ <% @rule.errors.each do |error| %>
10
+ <p><%= error %></p>
11
+ <% end %>
12
+ </div>
13
+ <% end %>
14
+
15
+ <% whitebox do %>
16
+
17
+ <%= render(@rule_class.options[:edit_template], :f => f) %>
18
+
19
+ <div class="clear"></div>
20
+ <%= button_submit_green('Update', :id => "rule_edit_update") %>
21
+ <%= button_link_orange('Cancel', change_re_pipeline_path(@re_pipeline), :id => "rule_edit_cancel") %>
22
+ <% end %>
23
+ <% end %>
24
+ </div>
25
+ <div class="clear"></div>
@@ -0,0 +1,12 @@
1
+ <div id="pipeline_rules_empty" style="<%= re_pipeline.re_rules.empty? ? '' : 'display:none' %>">
2
+ <div class="redbox-header"><h3 class="white">No Pipeline Rules</h3></div>
3
+ <div class="redbox no-top">
4
+ <div class="clear top-5 prepend-1 append-1">
5
+ <h4>Add rules to the pipeline.</h4>
6
+ <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>
7
+ </div>
8
+ </div>
9
+ <div class="clear top-5"></div>
10
+ </div>
11
+ <div class="clear"></div>
12
+
@@ -0,0 +1,7 @@
1
+ <% if re_pipeline.re_rules.empty? %>
2
+ $('#pipeline_rules_empty').slideDown(150, function() {
3
+ $('#pipeline_rules_empty').show();
4
+ });
5
+ <% else %>
6
+ $('#pipeline_rules_empty').hide();
7
+ <% end %>
@@ -0,0 +1,3 @@
1
+ Rule Not Found - <%= params[:rule_class].blank? ? 'param :rule_class missing' : params[:rule_class] %>
2
+
3
+ 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.
@@ -0,0 +1,13 @@
1
+ <div class="clear prepend-1 span-18">
2
+ <h2 class="rule-class-help"> Help : <%= @rule_class.options[:name] %></h2>
3
+ <div class="clear top-10"></div>
4
+
5
+ <% whitebox do %>
6
+
7
+ <%= render(@rule_class.options[:help_template]) %>
8
+
9
+ <div class="clear"></div>
10
+ <%= button_link_red('Close', edit_re_pipeline_path(@re_pipeline), :id => "rule_help_cancel") %>
11
+ <% end %>
12
+ </div>
13
+ <div class="clear"></div>
@@ -0,0 +1,38 @@
1
+ <% re_rule_verify = re_rule.verify %>
2
+ <% local_new_row = local_assigns[:new_row] && new_row %>
3
+ <% local_last_rule = local_assigns[:last_rule] && last_rule %>
4
+
5
+ <% if local_new_row %>
6
+ <div class="clear top-5"><hr/></div>
7
+ <div class="clear top-5"></div>
8
+ <% end %>
9
+
10
+ <div class="span-6 <%= local_new_row ? 'left-20' : '' %> rule-show">
11
+ <div class="<%= re_rule_verify.blank? ? 'bluebox' : 'redbox' %> rule-status-<%= re_rule_verify.blank? ? 'valid' : 'verify' %>"><%= re_rule.title %></div>
12
+ <div class="<%= re_rule_verify.blank? ? 'bluebox' : 'redbox' %> no-top">
13
+ <p class="top-5"><%= re_rule.summary %></p>
14
+
15
+ <div class="top-10 float-right">
16
+ <% if re_rule.re_rule_outcomes.empty? %>
17
+ <div class="rule-continue">Continue</div>
18
+ <% end %>
19
+ <% unless re_rule.re_rule_outcome_next.nil? %>
20
+ <div class="rule-continue">Continue</div>
21
+ <% end %>
22
+ <% re_rule.re_rule_outcomes_start_pipeline.each do |re_rule_outcome| %>
23
+ <div class="rule-goto-pipeline"><%= re_rule_outcome.pipeline_code %></div>
24
+ <% end %>
25
+ <% unless re_rule.re_rule_outcome_failure.nil? %>
26
+ <div class="rule-stop-failure">Stop Failure</div>
27
+ <% end %>
28
+ <% unless re_rule.re_rule_outcome_success.nil? %>
29
+ <div class="rule-stop-success">Stop Success</div>
30
+ <% end %>
31
+ </div>
32
+ <div class="clear"></div>
33
+ </div>
34
+ </div>
35
+
36
+ <% unless local_last_rule %>
37
+ <div class="span-1 last"> <div class="rule-next-show"></div> </div>
38
+ <% end %>
@@ -0,0 +1,41 @@
1
+ <div class="rules-menu">
2
+ <% RulesEngine::Discovery.rule_groups.each do |name, rule_classes| %>
3
+ <% shadowbox do %>
4
+ <a href="#" class="rule-class-list-toggle">
5
+ <h5 class="rule-class-list-right"><%=h name %></h5>
6
+ </a>
7
+ <div class="rule-class-list hide">
8
+ <% rule_classes.each do |rule_class| %>
9
+ <div class="yellowbox">
10
+ <h5>
11
+ <%= rule_class.options[:name] %>
12
+ </h5>
13
+ <a href="#<%=@re_pipeline.id%>|<%= rule_class %>" class="rule-class-new"> <span>Add</span> </a>
14
+ <a href="#<%=@re_pipeline.id%>|<%= rule_class %>" class="rule-class-help"> <span>Help</span> </a>
15
+ <div class="clear"></div>
16
+ </div>
17
+ <div class="clear top-5"></div>
18
+ <% end %>
19
+ </div>
20
+ <% end %>
21
+ <% end %>
22
+
23
+ <% shadowbox do %>
24
+ <a href="#" class="rule-class-list-toggle">
25
+ <h5 class="rule-class-list-down">All Rules</h5>
26
+ </a>
27
+ <div class="rule-class-list">
28
+ <% RulesEngine::Discovery.rule_classes.each do |rule_class| %>
29
+ <div class="yellowbox">
30
+ <h5>
31
+ <%= rule_class.options[:name] %>
32
+ </h5>
33
+ <a href="#<%=@re_pipeline.id%>|<%= rule_class %>" class="rule-class-new"> <span>Add</span> </a>
34
+ <a href="#<%=@re_pipeline.id%>|<%= rule_class %>" class="rule-class-help"> <span>Help</span> </a>
35
+ <div class="clear"></div>
36
+ </div>
37
+ <div class="clear top-5"></div>
38
+ <% end %>
39
+ </div>
40
+ <% end %>
41
+ </div>
@@ -0,0 +1,26 @@
1
+ <div class="clear prepend-1 span-18">
2
+ <h2 class="rule-class-new"> New : <%= @rule_class.options[:name] %></h2>
3
+ <div class="clear top-10"></div>
4
+
5
+ <% dougo_form_for(@re_rule, :url => re_pipeline_re_rules_path(@re_pipeline), :method => :post, :span => "3x13", :html => {:id => "rule_new_form"}) do |f| %>
6
+ <%= hidden_field_tag('rule_class', @rule_class) %>
7
+ <%= f.error_messages :message => "Unable To Create Rule : #{@rule_class.options[:name]}" %>
8
+ <% unless @rule.errors.empty? %>
9
+ <div id="errorExplanation" class="errorExplanation">
10
+ <% @rule.errors.each do |error| %>
11
+ <p><%= error %></p>
12
+ <% end %>
13
+ </div>
14
+ <% end %>
15
+
16
+ <% whitebox do %>
17
+
18
+ <%= render(@rule_class.options[:new_template], :f => f) %>
19
+
20
+ <div class="clear"></div>
21
+ <%= button_submit_green('Create', :id => "rule_new_insert") %>
22
+ <%= button_link_orange('Cancel', change_re_pipeline_path(@re_pipeline), :id => "rule_new_cancel") %>
23
+ <% end %>
24
+ <% end %>
25
+ </div>
26
+ <div class="clear"></div>
@@ -0,0 +1,43 @@
1
+ <% re_rule_verify = re_rule.verify %>
2
+ <% local_first_rule = local_assigns[:first_rule] && first_rule %>
3
+ <% local_last_rule = local_assigns[:last_rule] && last_rule %>
4
+
5
+ <div class="span-15 last rule-change" id="change_rule_<%= re_rule.id %>">
6
+ <div class="<%= re_rule_verify.blank? ? 'bluebox' : 'redbox' %> rule-status-<%= re_rule_verify.blank? ? 'valid' : 'verify' %>">
7
+ <h3 class="float-left"><%= re_rule.title %></h3>
8
+ <div class="float-right">
9
+ <!-- NO ACTIONS ON THE RULE -->
10
+ </div>
11
+ <div class="clear"></div>
12
+ </div>
13
+ <div class="<%= re_rule_verify.blank? ? 'bluebox' : 'redbox' %> no-top">
14
+ <div class="span-10">
15
+ <p class="top-5 left-10">
16
+ <%= re_rule.summary %>
17
+ </p>
18
+ </div>
19
+
20
+ <div class="prepend-10 top-10">
21
+ <% if re_rule.re_rule_outcomes.empty? %>
22
+ <div class="rule-continue">Continue</div>
23
+ <% end %>
24
+ <% unless re_rule.re_rule_outcome_next.nil? %>
25
+ <div class="rule-continue">Continue</div>
26
+ <% end %>
27
+ <% re_rule.re_rule_outcomes_start_pipeline.each do |re_rule_outcome| %>
28
+ <div class="rule-goto-pipeline"><%= re_rule_outcome.pipeline_code %></div>
29
+ <% end %>
30
+ <% unless re_rule.re_rule_outcome_failure.nil? %>
31
+ <div class="rule-stop-failure">Stop Failure</div>
32
+ <% end %>
33
+ <% unless re_rule.re_rule_outcome_success.nil? %>
34
+ <div class="rule-stop-success">Stop Success</div>
35
+ <% end %>
36
+ </div>
37
+ <div class="clear"></div>
38
+ </div>
39
+ </div>
40
+
41
+ <% unless local_last_rule %>
42
+ <div class="prepend-7 span-2"><div class="rule-next-change"></div></div>
43
+ <% end %>
@@ -0,0 +1,13 @@
1
+ <%= javascript_alert_messages %>
2
+
3
+ self.parent.tb_remove();
4
+
5
+ $('#change_pipeline').html('<%=escape_javascript(render('/re_pipelines/change'))%>');
6
+ $('#change_pipeline_actions').html('<%=escape_javascript(render('/re_pipelines/change_actions'))%>');
7
+
8
+ $('#change_rules').html('')
9
+ <% @re_pipeline.re_rules.each do |re_rule | %>
10
+ $('#change_rules').append('<%=escape_javascript(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]))%>');
11
+ <% end %>
12
+
13
+ <%= render('/re_rules/empty', :re_pipeline => @re_pipeline) %>
@@ -0,0 +1,11 @@
1
+ <% set_subnav @re_pipeline.title,
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"></div>
9
+ </div>
10
+ </div>
11
+ <div class="clear"></div>
@@ -0,0 +1,5 @@
1
+ $('#tb_temp_container').html('<%=escape_javascript(render(:partial => 'edit'))%>');
2
+
3
+ $('#rule_edit_update').closest('div.form-button').dougo_form_button();
4
+
5
+ $("#rule_edit_form").submit(function() { return false; });
@@ -0,0 +1,11 @@
1
+ <% set_subnav "Rule Error",
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 => 'error' %>
8
+ <div class="clear"></div>
9
+ </div>
10
+ </div>
11
+ <div class="clear"></div>
@@ -0,0 +1,3 @@
1
+ <%= javascript_alert_messages %>
2
+
3
+ $('#tb_temp_container').html('<%=escape_javascript(render(:partial => 'error'))%>');
@@ -0,0 +1,11 @@
1
+ <% set_subnav "Help #{@rule_class.options[:name]}",
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 => 'help' %>
8
+ <div class="clear"></div>
9
+ </div>
10
+ </div>
11
+ <div class="clear"></div>
@@ -0,0 +1,2 @@
1
+ $('#tb_temp_container').html('<%=escape_javascript(render(:partial => 'help'))%>');
2
+
@@ -0,0 +1,11 @@
1
+ <% set_subnav @re_pipeline.title,
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 => 'new' %>
8
+ <div class="clear"></div>
9
+ </div>
10
+ </div>
11
+ <div class="clear"></div>
@@ -0,0 +1,5 @@
1
+ $('#tb_temp_container').html('<%=escape_javascript(render(:partial => 'new'))%>');
2
+
3
+ $('#rule_new_insert').closest('div.form-button').dougo_form_button();
4
+
5
+ $("#rule_new_form").submit(function() { return false; });
@@ -0,0 +1,20 @@
1
+ <%= javascript_alert_messages %>
2
+
3
+ self.parent.tb_remove();
4
+
5
+ $('#change_pipeline').html('<%=escape_javascript(render('/re_pipelines/change'))%>');
6
+ $('#change_pipeline_actions').html('<%=escape_javascript(render('/re_pipelines/change_actions'))%>');
7
+
8
+ <%= render('/re_rules/empty', :re_pipeline => @re_pipeline) %>
9
+
10
+ $('#change_rules').html('')
11
+ <% @re_pipeline.re_rules.each do |re_rule | %>
12
+ $('#change_rules').append('<%=escape_javascript(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]))%>');
13
+ <% end %>
14
+
15
+ $('#change_rule_<%=@re_rule.id%>').attr('style', 'background-color: #fff6bf;');
16
+ $('#change_rule_<%=@re_rule.id%>').fadeTo(750, 0.44, function() {
17
+ $('#change_rule_<%=@re_rule.id%>').attr('style', '');
18
+ $('#change_rule_<%=@re_rule.id%>').fadeTo(1000, 1.00, function() {
19
+ });
20
+ });