rules_engine 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/LICENSE +20 -0
- data/README.rdoc +17 -0
- data/VERSION +1 -0
- data/init.rb +1 -0
- data/lib/rules_engine/cache.rb +26 -0
- data/lib/rules_engine/discovery.rb +51 -0
- data/lib/rules_engine/job_runner.rb +115 -0
- data/lib/rules_engine/rule.rb +60 -0
- data/lib/rules_engine/rule_outcome.rb +13 -0
- data/lib/rules_engine.rb +6 -0
- data/rails_generators/USAGE +68 -0
- data/rails_generators/blacklist_word.yml +6 -0
- data/rails_generators/blacklist_word_manifest.rb +26 -0
- data/rails_generators/generator.yml +58 -0
- data/rails_generators/generator_manifest.rb +282 -0
- data/rails_generators/rules_engine_generator.rb +35 -0
- data/rails_generators/simple.yml +6 -0
- data/rails_generators/simple_manifest.rb +21 -0
- data/rails_generators/template_manifest.rb +13 -0
- data/rails_generators/templates/app/controllers/re_jobs_controller.rb +18 -0
- data/rails_generators/templates/app/controllers/re_pipeline_jobs_controller.rb +17 -0
- data/rails_generators/templates/app/controllers/re_pipelines_controller.rb +143 -0
- data/rails_generators/templates/app/controllers/re_rules_controller.rb +140 -0
- data/rails_generators/templates/app/helpers/re_pipeline_helper.rb +29 -0
- data/rails_generators/templates/app/models/re_job.rb +123 -0
- data/rails_generators/templates/app/models/re_job_audit.rb +21 -0
- data/rails_generators/templates/app/models/re_pipeline.rb +69 -0
- data/rails_generators/templates/app/models/re_pipeline_activated.rb +26 -0
- data/rails_generators/templates/app/models/re_pipeline_activated_observer.rb +11 -0
- data/rails_generators/templates/app/models/re_pipeline_base.rb +68 -0
- data/rails_generators/templates/app/models/re_rule.rb +78 -0
- data/rails_generators/templates/app/models/re_rule_outcome.rb +40 -0
- data/rails_generators/templates/app/rules/blacklist_word.rb +89 -0
- data/rails_generators/templates/app/rules/simple.rb +44 -0
- data/rails_generators/templates/app/rules/template.rb +51 -0
- data/rails_generators/templates/app/views/layouts/_blockUI.html.erb +3 -0
- data/rails_generators/templates/app/views/re_jobs/_empty.html.erb +11 -0
- data/rails_generators/templates/app/views/re_jobs/_index.html.erb +66 -0
- data/rails_generators/templates/app/views/re_jobs/_show.html.erb +43 -0
- data/rails_generators/templates/app/views/re_jobs/index.html.erb +21 -0
- data/rails_generators/templates/app/views/re_jobs/index.js.erb +9 -0
- data/rails_generators/templates/app/views/re_jobs/show.html.erb +12 -0
- data/rails_generators/templates/app/views/re_jobs/show.js.erb +1 -0
- data/rails_generators/templates/app/views/re_pipeline_jobs/_empty.html.erb +11 -0
- data/rails_generators/templates/app/views/re_pipeline_jobs/_index.html.erb +41 -0
- data/rails_generators/templates/app/views/re_pipeline_jobs/index.html.erb +21 -0
- data/rails_generators/templates/app/views/re_pipeline_jobs/index.js.erb +10 -0
- data/rails_generators/templates/app/views/re_pipelines/_change.html.erb +46 -0
- data/rails_generators/templates/app/views/re_pipelines/_change_actions.html.erb +34 -0
- data/rails_generators/templates/app/views/re_pipelines/_confirm.html.erb +40 -0
- data/rails_generators/templates/app/views/re_pipelines/_edit.html.erb +21 -0
- data/rails_generators/templates/app/views/re_pipelines/_empty.html.erb +13 -0
- data/rails_generators/templates/app/views/re_pipelines/_index.html.erb +58 -0
- data/rails_generators/templates/app/views/re_pipelines/_new.html.erb +18 -0
- data/rails_generators/templates/app/views/re_pipelines/_show.html.erb +32 -0
- data/rails_generators/templates/app/views/re_pipelines/_show_actions.html.erb +3 -0
- data/rails_generators/templates/app/views/re_pipelines/change.html.erb +37 -0
- data/rails_generators/templates/app/views/re_pipelines/create.js.erb +8 -0
- data/rails_generators/templates/app/views/re_pipelines/edit.html.erb +11 -0
- data/rails_generators/templates/app/views/re_pipelines/edit.js.erb +5 -0
- data/rails_generators/templates/app/views/re_pipelines/index.html.erb +14 -0
- data/rails_generators/templates/app/views/re_pipelines/new.html.erb +9 -0
- data/rails_generators/templates/app/views/re_pipelines/new.js.erb +5 -0
- data/rails_generators/templates/app/views/re_pipelines/show.html.erb +41 -0
- data/rails_generators/templates/app/views/re_pipelines/update.js.erb +13 -0
- data/rails_generators/templates/app/views/re_rule_definitions/blacklist_word/_edit.html.erb +7 -0
- data/rails_generators/templates/app/views/re_rule_definitions/blacklist_word/_help.html.erb +2 -0
- data/rails_generators/templates/app/views/re_rule_definitions/blacklist_word/_new.html.erb +7 -0
- data/rails_generators/templates/app/views/re_rule_definitions/blacklist_word/_pipeline.html.erb +18 -0
- data/rails_generators/templates/app/views/re_rule_definitions/blacklist_word/_script.html.erb +26 -0
- data/rails_generators/templates/app/views/re_rule_definitions/blacklist_word/_title.html.erb +6 -0
- data/rails_generators/templates/app/views/re_rule_definitions/blacklist_word/_word.html.erb +12 -0
- data/rails_generators/templates/app/views/re_rule_definitions/blacklist_word/_words.html.erb +16 -0
- data/rails_generators/templates/app/views/re_rule_definitions/simple/_edit.html.erb +6 -0
- data/rails_generators/templates/app/views/re_rule_definitions/simple/_help.html.erb +2 -0
- data/rails_generators/templates/app/views/re_rule_definitions/simple/_new.html.erb +6 -0
- data/rails_generators/templates/app/views/re_rule_definitions/template/_edit.html.erb +6 -0
- data/rails_generators/templates/app/views/re_rule_definitions/template/_help.html.erb +2 -0
- data/rails_generators/templates/app/views/re_rule_definitions/template/_new.html.erb +6 -0
- data/rails_generators/templates/app/views/re_rules/_change.html.erb +57 -0
- data/rails_generators/templates/app/views/re_rules/_edit.html.erb +25 -0
- data/rails_generators/templates/app/views/re_rules/_empty.html.erb +12 -0
- data/rails_generators/templates/app/views/re_rules/_empty.js.erb +7 -0
- data/rails_generators/templates/app/views/re_rules/_error.html.erb +3 -0
- data/rails_generators/templates/app/views/re_rules/_help.html.erb +13 -0
- data/rails_generators/templates/app/views/re_rules/_index.html.erb +38 -0
- data/rails_generators/templates/app/views/re_rules/_menu.html.erb +41 -0
- data/rails_generators/templates/app/views/re_rules/_new.html.erb +26 -0
- data/rails_generators/templates/app/views/re_rules/_show.html.erb +43 -0
- data/rails_generators/templates/app/views/re_rules/destroy.js.erb +13 -0
- data/rails_generators/templates/app/views/re_rules/edit.html.erb +11 -0
- data/rails_generators/templates/app/views/re_rules/edit.js.erb +5 -0
- data/rails_generators/templates/app/views/re_rules/error.html.erb +11 -0
- data/rails_generators/templates/app/views/re_rules/error.js.erb +3 -0
- data/rails_generators/templates/app/views/re_rules/help.html.erb +11 -0
- data/rails_generators/templates/app/views/re_rules/help.js.erb +2 -0
- data/rails_generators/templates/app/views/re_rules/new.html.erb +11 -0
- data/rails_generators/templates/app/views/re_rules/new.js.erb +5 -0
- data/rails_generators/templates/app/views/re_rules/update.js.erb +20 -0
- data/rails_generators/templates/db/migrate/20100308225008_create_re_pipelines.rb +74 -0
- data/rails_generators/templates/lib/tasks/re_runner.rake +12 -0
- data/rails_generators/templates/public/images/re_job/error-14.png +0 -0
- data/rails_generators/templates/public/images/re_job/error-18.png +0 -0
- data/rails_generators/templates/public/images/re_job/error-25.png +0 -0
- data/rails_generators/templates/public/images/re_job/error-48.png +0 -0
- data/rails_generators/templates/public/images/re_job/goto-16.png +0 -0
- data/rails_generators/templates/public/images/re_job/info-14.png +0 -0
- data/rails_generators/templates/public/images/re_job/info-18.png +0 -0
- data/rails_generators/templates/public/images/re_job/info-25.png +0 -0
- data/rails_generators/templates/public/images/re_job/info-48.png +0 -0
- data/rails_generators/templates/public/images/re_job/list-14.png +0 -0
- data/rails_generators/templates/public/images/re_job/list-18.png +0 -0
- data/rails_generators/templates/public/images/re_job/list-25.png +0 -0
- data/rails_generators/templates/public/images/re_job/list-48.png +0 -0
- data/rails_generators/templates/public/images/re_job/loadingAnimation.gif +0 -0
- data/rails_generators/templates/public/images/re_job/next-disabled-14.png +0 -0
- data/rails_generators/templates/public/images/re_job/next-disabled-18.png +0 -0
- data/rails_generators/templates/public/images/re_job/next-disabled-25.png +0 -0
- data/rails_generators/templates/public/images/re_job/next-disabled-48.png +0 -0
- data/rails_generators/templates/public/images/re_job/next-enabled-14.png +0 -0
- data/rails_generators/templates/public/images/re_job/next-enabled-18.png +0 -0
- data/rails_generators/templates/public/images/re_job/next-enabled-25.png +0 -0
- data/rails_generators/templates/public/images/re_job/next-enabled-48.png +0 -0
- data/rails_generators/templates/public/images/re_job/prev-disabled-14.png +0 -0
- data/rails_generators/templates/public/images/re_job/prev-disabled-18.png +0 -0
- data/rails_generators/templates/public/images/re_job/prev-disabled-25.png +0 -0
- data/rails_generators/templates/public/images/re_job/prev-disabled-48.png +0 -0
- data/rails_generators/templates/public/images/re_job/prev-enabled-14.png +0 -0
- data/rails_generators/templates/public/images/re_job/prev-enabled-18.png +0 -0
- data/rails_generators/templates/public/images/re_job/prev-enabled-25.png +0 -0
- data/rails_generators/templates/public/images/re_job/prev-enabled-48.png +0 -0
- data/rails_generators/templates/public/images/re_job/success-14.png +0 -0
- data/rails_generators/templates/public/images/re_job/success-18.png +0 -0
- data/rails_generators/templates/public/images/re_job/success-25.png +0 -0
- data/rails_generators/templates/public/images/re_job/success-48.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/__destroy-14.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/__destroy-18.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/__destroy-25.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/__destroy-48.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/activate-14.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/activate-18.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/activate-25.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/activate-48.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/alert-14.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/alert-18.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/alert-25.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/alert-48.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/change-14.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/change-18.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/change-25.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/change-48.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/changed-14.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/changed-18.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/changed-25.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/changed-48.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/current-14.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/current-18.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/current-25.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/current-48.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/deactivate-14.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/deactivate-18.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/deactivate-25.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/deactivate-48.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/destroy-14.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/destroy-18.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/destroy-25.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/destroy-48.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/draft-14.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/draft-18.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/draft-25.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/draft-48.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/edit-14.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/edit-18.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/edit-25.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/edit-48.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/list-14.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/list-18.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/list-25.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/list-48.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/list-down.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/list-right.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/new-14.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/new-18.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/new-25.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/new-48.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/revert-14.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/revert-18.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/revert-25.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/revert-48.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/show-14.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/show-18.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/show-25.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/show-48.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/verify-14.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/verify-18.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/verify-25.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/verify-48.png +0 -0
- data/rails_generators/templates/public/images/re_rule/__destroy-14.png +0 -0
- data/rails_generators/templates/public/images/re_rule/__destroy-18.png +0 -0
- data/rails_generators/templates/public/images/re_rule/__destroy-25.png +0 -0
- data/rails_generators/templates/public/images/re_rule/__destroy-48.png +0 -0
- data/rails_generators/templates/public/images/re_rule/destroy-14.png +0 -0
- data/rails_generators/templates/public/images/re_rule/destroy-18.png +0 -0
- data/rails_generators/templates/public/images/re_rule/destroy-25.png +0 -0
- data/rails_generators/templates/public/images/re_rule/destroy-48.png +0 -0
- data/rails_generators/templates/public/images/re_rule/edit-14.png +0 -0
- data/rails_generators/templates/public/images/re_rule/edit-18.png +0 -0
- data/rails_generators/templates/public/images/re_rule/edit-25.png +0 -0
- data/rails_generators/templates/public/images/re_rule/edit-48.png +0 -0
- data/rails_generators/templates/public/images/re_rule/goto-pipeline-14.png +0 -0
- data/rails_generators/templates/public/images/re_rule/goto-pipeline-18.png +0 -0
- data/rails_generators/templates/public/images/re_rule/move-down-14.png +0 -0
- data/rails_generators/templates/public/images/re_rule/move-down-18.png +0 -0
- data/rails_generators/templates/public/images/re_rule/move-down-25.png +0 -0
- data/rails_generators/templates/public/images/re_rule/move-down-48.png +0 -0
- data/rails_generators/templates/public/images/re_rule/move-down-off-14.png +0 -0
- data/rails_generators/templates/public/images/re_rule/move-down-off-18.png +0 -0
- data/rails_generators/templates/public/images/re_rule/move-down-off-25.png +0 -0
- data/rails_generators/templates/public/images/re_rule/move-down-off-48.png +0 -0
- data/rails_generators/templates/public/images/re_rule/move-up-14.png +0 -0
- data/rails_generators/templates/public/images/re_rule/move-up-18.png +0 -0
- data/rails_generators/templates/public/images/re_rule/move-up-25.png +0 -0
- data/rails_generators/templates/public/images/re_rule/move-up-48.png +0 -0
- data/rails_generators/templates/public/images/re_rule/move-up-off-14.png +0 -0
- data/rails_generators/templates/public/images/re_rule/move-up-off-18.png +0 -0
- data/rails_generators/templates/public/images/re_rule/move-up-off-25.png +0 -0
- data/rails_generators/templates/public/images/re_rule/move-up-off-48.png +0 -0
- data/rails_generators/templates/public/images/re_rule/next-change-14.png +0 -0
- data/rails_generators/templates/public/images/re_rule/next-change-18.png +0 -0
- data/rails_generators/templates/public/images/re_rule/next-change-25.png +0 -0
- data/rails_generators/templates/public/images/re_rule/next-change-48.png +0 -0
- data/rails_generators/templates/public/images/re_rule/next-show-14.png +0 -0
- data/rails_generators/templates/public/images/re_rule/next-show-18.png +0 -0
- data/rails_generators/templates/public/images/re_rule/next-show-25.png +0 -0
- data/rails_generators/templates/public/images/re_rule/next-show-48.png +0 -0
- data/rails_generators/templates/public/images/re_rule/stop-failure-14.png +0 -0
- data/rails_generators/templates/public/images/re_rule/stop-failure-18.png +0 -0
- data/rails_generators/templates/public/images/re_rule/stop-failure-25.png +0 -0
- data/rails_generators/templates/public/images/re_rule/stop-failure-48.png +0 -0
- data/rails_generators/templates/public/images/re_rule/stop-success-14.png +0 -0
- data/rails_generators/templates/public/images/re_rule/stop-success-18.png +0 -0
- data/rails_generators/templates/public/images/re_rule/stop-success-25.png +0 -0
- data/rails_generators/templates/public/images/re_rule/stop-success-48.png +0 -0
- data/rails_generators/templates/public/images/re_rule/valid-14.png +0 -0
- data/rails_generators/templates/public/images/re_rule/valid-18.png +0 -0
- data/rails_generators/templates/public/images/re_rule/valid-25.png +0 -0
- data/rails_generators/templates/public/images/re_rule/valid-48.png +0 -0
- data/rails_generators/templates/public/images/re_rule/verify-14.png +0 -0
- data/rails_generators/templates/public/images/re_rule/verify-18.png +0 -0
- data/rails_generators/templates/public/images/re_rule/verify-25.png +0 -0
- data/rails_generators/templates/public/images/re_rule/verify-48.png +0 -0
- data/rails_generators/templates/public/images/re_rule_class/add-14.png +0 -0
- data/rails_generators/templates/public/images/re_rule_class/add-18.png +0 -0
- data/rails_generators/templates/public/images/re_rule_class/add-25.png +0 -0
- data/rails_generators/templates/public/images/re_rule_class/add-48.png +0 -0
- data/rails_generators/templates/public/images/re_rule_class/help-14.png +0 -0
- data/rails_generators/templates/public/images/re_rule_class/help-18.png +0 -0
- data/rails_generators/templates/public/images/re_rule_class/help-25.png +0 -0
- data/rails_generators/templates/public/images/re_rule_class/help-48.png +0 -0
- data/rails_generators/templates/public/images/re_rule_class/list-down.png +0 -0
- data/rails_generators/templates/public/images/re_rule_class/list-right.png +0 -0
- data/rails_generators/templates/public/images/re_rule_class/new-14.png +0 -0
- data/rails_generators/templates/public/images/re_rule_class/new-18.png +0 -0
- data/rails_generators/templates/public/images/re_rule_class/new-25.png +0 -0
- data/rails_generators/templates/public/images/re_rule_class/new-48.png +0 -0
- data/rails_generators/templates/public/javascripts/re_jobs.js +59 -0
- data/rails_generators/templates/public/javascripts/re_pipeline.js +54 -0
- data/rails_generators/templates/public/javascripts/re_pipeline_change.js +205 -0
- data/rails_generators/templates/public/javascripts/re_pipeline_index.js +24 -0
- data/rails_generators/templates/public/javascripts/re_pipeline_jobs.js +61 -0
- data/rails_generators/templates/public/javascripts/re_pipeline_new.js +34 -0
- data/rails_generators/templates/public/stylesheets/re_pipeline/accept.png +0 -0
- data/rails_generators/templates/public/stylesheets/re_pipeline/exclamation.png +0 -0
- data/rails_generators/templates/public/stylesheets/re_pipeline.css +509 -0
- data/rails_generators/templates/spec/controllers/re_pipelines_controller_spec.rb +111 -0
- data/rails_generators/templates/spec/models/re_job_audit_spec.rb +24 -0
- data/rails_generators/templates/spec/models/re_job_spec.rb +18 -0
- data/rails_generators/templates/spec/models/re_pipeline_activated_spec.rb +6 -0
- data/rails_generators/templates/spec/models/re_pipeline_base_spec.rb +157 -0
- data/rails_generators/templates/spec/models/re_pipeline_spec.rb +166 -0
- data/rails_generators/templates/spec/models/re_rule_outcome_spec.rb +97 -0
- data/rails_generators/templates/spec/models/re_rule_spec.rb +171 -0
- data/rails_generators/templates/spec/support/blueprint_re_pipelines.rb +11 -0
- data/spec/rules_engine_spec.rb +7 -0
- data/spec/spec.opts +1 -0
- data/spec/spec_helper.rb +9 -0
- data/tasks/rspec.rake +18 -0
- metadata +363 -0
@@ -0,0 +1,74 @@
|
|
1
|
+
class CreateRePipelines < ActiveRecord::Migration
|
2
|
+
def self.up
|
3
|
+
create_table :re_pipelines do |t|
|
4
|
+
t.string :type
|
5
|
+
t.integer :parent_re_pipeline_id
|
6
|
+
|
7
|
+
t.string :code
|
8
|
+
t.string :title
|
9
|
+
t.text :description
|
10
|
+
|
11
|
+
t.datetime :created_at
|
12
|
+
t.datetime :updated_at
|
13
|
+
end
|
14
|
+
|
15
|
+
add_index :re_pipelines, [:id, :type]
|
16
|
+
add_index :re_pipelines, [:type]
|
17
|
+
|
18
|
+
#################################
|
19
|
+
create_table :re_rules do |t|
|
20
|
+
t.integer :re_pipeline_id
|
21
|
+
|
22
|
+
t.integer :position
|
23
|
+
|
24
|
+
t.string :rule_class
|
25
|
+
|
26
|
+
t.string :title
|
27
|
+
t.string :summary
|
28
|
+
t.integer :data_version
|
29
|
+
t.text :data
|
30
|
+
t.string :error
|
31
|
+
|
32
|
+
t.datetime :created_at
|
33
|
+
t.datetime :updated_at
|
34
|
+
end
|
35
|
+
|
36
|
+
#################################
|
37
|
+
create_table :re_rule_outcomes do |t|
|
38
|
+
t.integer :re_rule_id
|
39
|
+
|
40
|
+
t.integer :outcome
|
41
|
+
t.string :pipeline_code
|
42
|
+
|
43
|
+
t.datetime :created_at
|
44
|
+
t.datetime :updated_at
|
45
|
+
end
|
46
|
+
|
47
|
+
#################################
|
48
|
+
create_table :re_jobs do |t|
|
49
|
+
t.integer :job_status
|
50
|
+
t.datetime :created_at
|
51
|
+
end
|
52
|
+
|
53
|
+
create_table :re_job_audits do |t|
|
54
|
+
t.integer :re_job_id
|
55
|
+
t.integer :re_pipeline_id
|
56
|
+
t.integer :re_rule_id
|
57
|
+
|
58
|
+
t.datetime :audit_date
|
59
|
+
t.integer :audit_code
|
60
|
+
t.boolean :audit_success
|
61
|
+
t.text :audit_data
|
62
|
+
|
63
|
+
end
|
64
|
+
|
65
|
+
end
|
66
|
+
|
67
|
+
def self.down
|
68
|
+
drop_table :re_job_audits
|
69
|
+
drop_table :re_jobs
|
70
|
+
drop_table :re_rule_outcomes
|
71
|
+
drop_table :re_rules
|
72
|
+
drop_table :re_pipelines
|
73
|
+
end
|
74
|
+
end
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,59 @@
|
|
1
|
+
block_fetching_thickbox = function() {
|
2
|
+
$('#TB_ajaxContent').block({'message' : 'loading'});
|
3
|
+
}
|
4
|
+
|
5
|
+
unblock_fetching_thickbox = function() {
|
6
|
+
$('#TB_ajaxContent').unblock();
|
7
|
+
}
|
8
|
+
|
9
|
+
get_job_list = function(page) {
|
10
|
+
$.get('/re_jobs?page=' + page, null, null, 'script');
|
11
|
+
}
|
12
|
+
|
13
|
+
|
14
|
+
$(document).ready(function() {
|
15
|
+
|
16
|
+
$('a.pipeline-job-detail').live('click', function() {
|
17
|
+
var job = $(this).attr('href').replace('#', '');
|
18
|
+
|
19
|
+
tb_show("", '#?TB_inline=true&inlineId=tb_temp_frame&height=450&width=800', false);
|
20
|
+
block_fetching_thickbox();
|
21
|
+
$.get('/re_jobs/' + job, null, unblock_fetching_thickbox, 'script');
|
22
|
+
|
23
|
+
return false;
|
24
|
+
});
|
25
|
+
|
26
|
+
|
27
|
+
$('a.job-page-prev-enabled').live('click', function() {
|
28
|
+
var page = $(this).attr('href').replace('#', '');
|
29
|
+
|
30
|
+
$('#job_list').hide();
|
31
|
+
$('#job_list_pending').show();
|
32
|
+
get_job_list(page);
|
33
|
+
|
34
|
+
return false;
|
35
|
+
});
|
36
|
+
|
37
|
+
$('a.job-page-prev-disabled').live('click', function() {
|
38
|
+
return false;
|
39
|
+
});
|
40
|
+
|
41
|
+
|
42
|
+
$('a.job-page-next-enabled').live('click', function() {
|
43
|
+
var page = $(this).attr('href').replace('#', '');
|
44
|
+
|
45
|
+
$('#job_list').hide();
|
46
|
+
$('#job_list_pending').show();
|
47
|
+
get_job_list(page);
|
48
|
+
|
49
|
+
return false;
|
50
|
+
});
|
51
|
+
|
52
|
+
$('a.job-page-next-disabled').live('click', function() {
|
53
|
+
return false;
|
54
|
+
});
|
55
|
+
|
56
|
+
|
57
|
+
});
|
58
|
+
|
59
|
+
|