rails_workflow 0.2.0 → 0.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (113) hide show
  1. checksums.yaml +4 -4
  2. data/Rakefile +1 -1
  3. data/app/assets/javascripts/{workflow → rails_workflow}/application.js +0 -0
  4. data/app/assets/stylesheets/{workflow → rails_workflow}/application.css +0 -0
  5. data/app/concerns/{workflow → rails_workflow}/operation_status.rb +2 -2
  6. data/app/concerns/{workflow → rails_workflow}/operation_templates/assignments.rb +4 -4
  7. data/app/concerns/{workflow → rails_workflow}/operation_templates/default_builder.rb +3 -3
  8. data/app/concerns/{workflow → rails_workflow}/operation_templates/dependencies.rb +1 -2
  9. data/app/concerns/{workflow → rails_workflow}/operations/assignments.rb +3 -4
  10. data/app/concerns/{workflow → rails_workflow}/operations/default_runner.rb +8 -8
  11. data/app/concerns/{workflow → rails_workflow}/operations/dependencies.rb +2 -2
  12. data/app/concerns/{workflow → rails_workflow}/process_status.rb +2 -2
  13. data/app/concerns/{workflow → rails_workflow}/process_templates/default_builder.rb +2 -2
  14. data/app/concerns/{workflow → rails_workflow}/processes/default_runner.rb +2 -3
  15. data/app/concerns/{workflow → rails_workflow}/processes/dependency_resolver.rb +2 -3
  16. data/app/concerns/{workflow → rails_workflow}/user/assignment.rb +2 -3
  17. data/app/controllers/rails_workflow/application_controller.rb +10 -0
  18. data/app/controllers/{workflow → rails_workflow}/errors_controller.rb +2 -2
  19. data/app/controllers/{workflow → rails_workflow}/operation_templates_controller.rb +5 -6
  20. data/app/controllers/{workflow → rails_workflow}/operations_controller.rb +5 -5
  21. data/app/controllers/{workflow → rails_workflow}/process_templates_controller.rb +4 -5
  22. data/app/controllers/{workflow → rails_workflow}/processes_controller.rb +10 -11
  23. data/app/decorators/{workflow → rails_workflow}/context_decorator.rb +1 -1
  24. data/app/decorators/{workflow → rails_workflow}/decorator.rb +1 -1
  25. data/app/decorators/{workflow → rails_workflow}/operation_decorator.rb +3 -3
  26. data/app/decorators/{workflow → rails_workflow}/operation_helper_decorator.rb +1 -2
  27. data/app/decorators/{workflow → rails_workflow}/operation_template_decorator.rb +1 -2
  28. data/app/decorators/{workflow → rails_workflow}/paginating_decorator.rb +1 -1
  29. data/app/decorators/{workflow → rails_workflow}/process_decorator.rb +1 -4
  30. data/app/decorators/{workflow → rails_workflow}/process_template_decorator.rb +4 -5
  31. data/app/decorators/{workflow → rails_workflow}/status_decorator.rb +1 -2
  32. data/app/helpers/{workflow → rails_workflow}/application_helper.rb +1 -1
  33. data/app/managers/{workflow → rails_workflow}/process_manager.rb +3 -4
  34. data/app/models/{workflow → rails_workflow}/context.rb +1 -1
  35. data/app/models/{workflow → rails_workflow}/error.rb +14 -14
  36. data/app/models/{workflow → rails_workflow}/operation.rb +6 -7
  37. data/app/models/{workflow → rails_workflow}/operation_template.rb +7 -8
  38. data/app/models/{workflow → rails_workflow}/process.rb +8 -9
  39. data/app/models/{workflow → rails_workflow}/process_template.rb +3 -4
  40. data/app/models/{workflow → rails_workflow}/user_by_group_operation.rb +1 -2
  41. data/app/models/{workflow → rails_workflow}/user_by_role_operation.rb +1 -2
  42. data/app/views/layouts/{workflow → rails_workflow}/application.html.slim +3 -3
  43. data/app/views/{workflow → rails_workflow}/operation_templates/_default_form.html.slim +0 -0
  44. data/app/views/{workflow → rails_workflow}/operation_templates/_user_group_form.html.slim +0 -0
  45. data/app/views/{workflow → rails_workflow}/operation_templates/_user_role_form.html.slim +0 -0
  46. data/app/views/{workflow → rails_workflow}/operation_templates/edit.html.slim +0 -0
  47. data/app/views/{workflow → rails_workflow}/operation_templates/index.html.slim +1 -1
  48. data/app/views/{workflow → rails_workflow}/operation_templates/new.html.slim +0 -0
  49. data/app/views/{workflow → rails_workflow}/operation_templates/show.html.slim +0 -0
  50. data/app/views/{workflow → rails_workflow}/operations/index.html.slim +0 -0
  51. data/app/views/{workflow → rails_workflow}/operations/show.html.slim +0 -0
  52. data/app/views/{workflow → rails_workflow}/process_templates/_form.html.slim +0 -0
  53. data/app/views/{workflow → rails_workflow}/process_templates/edit.html.slim +0 -0
  54. data/app/views/{workflow → rails_workflow}/process_templates/index.html.slim +0 -0
  55. data/app/views/{workflow → rails_workflow}/process_templates/new.html.slim +0 -0
  56. data/app/views/{workflow → rails_workflow}/process_templates/show.html.slim +1 -1
  57. data/app/views/{workflow → rails_workflow}/processes/_form.html.slim +0 -0
  58. data/app/views/{workflow → rails_workflow}/processes/edit.html.slim +0 -0
  59. data/app/views/{workflow → rails_workflow}/processes/index.html.slim +6 -6
  60. data/app/views/{workflow → rails_workflow}/processes/new.html.slim +0 -0
  61. data/app/views/{workflow → rails_workflow}/processes/show.html.slim +0 -0
  62. data/app/workers/{workflow → rails_workflow}/error_worker.rb +5 -5
  63. data/app/workers/{workflow → rails_workflow}/operation_worker.rb +1 -1
  64. data/config/initializers/{workflow.rb → rails_workflow.rb} +8 -8
  65. data/config/routes.rb +1 -1
  66. data/db/migrate/20150210070051_change_namespace.rb +10 -0
  67. data/lib/generators/{workflow → rails_workflow}/install/install_generator.rb +1 -1
  68. data/lib/generators/{workflow → rails_workflow}/install/templates/create_workflow_processes.rb +22 -12
  69. data/lib/{workflow → rails_workflow}/engine.rb +2 -8
  70. data/lib/rails_workflow/version.rb +3 -0
  71. data/lib/{workflow.rb → rails_workflow.rb} +9 -9
  72. data/lib/tasks/{workflow_tasks.rake → rails_workflow_tasks.rake} +0 -0
  73. data/spec/controllers/{workflow → rails_workflow}/operation_templates_controller_spec.rb +6 -6
  74. data/spec/controllers/{workflow → rails_workflow}/operations_controller_spec.rb +2 -2
  75. data/spec/controllers/{workflow → rails_workflow}/process_templates_controller_spec.rb +2 -2
  76. data/spec/controllers/{workflow → rails_workflow}/processes_controller_spec.rb +2 -2
  77. data/spec/core/{worklow → rails_workflow}/process_manager_spec.rb +11 -11
  78. data/spec/dummy/app/controllers/sales_contacts_controller.rb +1 -1
  79. data/spec/dummy/app/models/bad_operation.rb +1 -1
  80. data/spec/dummy/app/models/bad_operation_template.rb +1 -1
  81. data/spec/dummy/app/models/user.rb +1 -1
  82. data/spec/dummy/config/application.rb +1 -1
  83. data/spec/dummy/config/initializers/workflow.rb +1 -1
  84. data/spec/dummy/config/routes.rb +1 -1
  85. data/spec/dummy/db/schema.rb +34 -34
  86. data/spec/dummy/log/development.log +1324 -0
  87. data/spec/dummy/log/test.log +7697 -0
  88. data/spec/dummy/tmp/cache/assets/development/sprockets/0aeea3efe13c49227e4f05894224629b +0 -0
  89. data/spec/dummy/tmp/cache/assets/development/sprockets/17093127c2a964b159dacb6baee0c707 +0 -0
  90. data/spec/dummy/tmp/cache/assets/development/sprockets/844434b6c7324d1785e26864aee28316 +0 -0
  91. data/spec/dummy/tmp/cache/assets/development/sprockets/ab0c70eaae03da94a23f832513ff652b +0 -0
  92. data/spec/dummy/tmp/cache/assets/development/sprockets/d8f3150c250e5b7c730f1c8b883bf033 +0 -0
  93. data/spec/dummy/tmp/cache/assets/development/sprockets/f794c7b05987535f7000622afe6630d1 +0 -0
  94. data/spec/dummy/tmp/pids/server.pid +1 -0
  95. data/spec/factories/context.rb +1 -1
  96. data/spec/factories/operation_templates.rb +1 -1
  97. data/spec/factories/operations.rb +3 -3
  98. data/spec/factories/process_templates.rb +1 -1
  99. data/spec/factories/processes.rb +2 -2
  100. data/spec/factories/workflow_errors.rb +1 -1
  101. data/spec/features/process_template_spec.rb +0 -1
  102. data/spec/models/{workflow → rails_workflow}/context_spec.rb +4 -4
  103. data/spec/models/{workflow → rails_workflow}/error_spec.rb +1 -1
  104. data/spec/models/{workflow → rails_workflow}/operation_spec.rb +19 -19
  105. data/spec/models/{workflow → rails_workflow}/operation_template_spec.rb +5 -5
  106. data/spec/models/{workflow → rails_workflow}/process_spec.rb +1 -1
  107. data/spec/models/{workflow → rails_workflow}/process_template_spec.rb +3 -3
  108. data/spec/rails_helper.rb +2 -2
  109. data/spec/support/{workflow → rails_workflow}/custom_operation.rb +1 -1
  110. data/spec/support/{workflow → rails_workflow}/custom_operation_template.rb +1 -1
  111. metadata +111 -96
  112. data/app/controllers/workflow/application_controller.rb +0 -10
  113. data/lib/workflow/version.rb +0 -3
@@ -102906,3 +102906,1327 @@ Started GET "/assets/bootstrap/bootstrap.js?body=1" for 127.0.0.1 at 2015-02-08
102906
102906
 
102907
102907
 
102908
102908
  Started GET "/assets/bootstrap/bootstrap.css?body=1" for 127.0.0.1 at 2015-02-08 20:01:44 +0400
102909
+
102910
+
102911
+ Started GET "/" for 127.0.0.1 at 2015-02-10 19:55:45 +0400
102912
+ ActiveRecord::SchemaMigration Load (7.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
102913
+
102914
+ ActionController::RoutingError (uninitialized constant Workflow):
102915
+ activesupport (4.1.9) lib/active_support/inflector/methods.rb:238:in `const_get'
102916
+ activesupport (4.1.9) lib/active_support/inflector/methods.rb:238:in `block in constantize'
102917
+ activesupport (4.1.9) lib/active_support/inflector/methods.rb:236:in `each'
102918
+ activesupport (4.1.9) lib/active_support/inflector/methods.rb:236:in `inject'
102919
+ activesupport (4.1.9) lib/active_support/inflector/methods.rb:236:in `constantize'
102920
+ actionpack (4.1.9) lib/action_dispatch/routing/route_set.rb:78:in `controller_reference'
102921
+ actionpack (4.1.9) lib/action_dispatch/routing/route_set.rb:68:in `controller'
102922
+ actionpack (4.1.9) lib/action_dispatch/routing/route_set.rb:46:in `call'
102923
+ actionpack (4.1.9) lib/action_dispatch/journey/router.rb:73:in `block in call'
102924
+ actionpack (4.1.9) lib/action_dispatch/journey/router.rb:59:in `each'
102925
+ actionpack (4.1.9) lib/action_dispatch/journey/router.rb:59:in `call'
102926
+ actionpack (4.1.9) lib/action_dispatch/routing/route_set.rb:685:in `call'
102927
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
102928
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
102929
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
102930
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
102931
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
102932
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
102933
+ actionpack (4.1.9) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
102934
+ actionpack (4.1.9) lib/action_dispatch/middleware/flash.rb:254:in `call'
102935
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
102936
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
102937
+ actionpack (4.1.9) lib/action_dispatch/middleware/cookies.rb:562:in `call'
102938
+ activerecord (4.1.9) lib/active_record/query_cache.rb:36:in `call'
102939
+ activerecord (4.1.9) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
102940
+ activerecord (4.1.9) lib/active_record/migration.rb:380:in `call'
102941
+ actionpack (4.1.9) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
102942
+ activesupport (4.1.9) lib/active_support/callbacks.rb:82:in `run_callbacks'
102943
+ actionpack (4.1.9) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
102944
+ actionpack (4.1.9) lib/action_dispatch/middleware/reloader.rb:73:in `call'
102945
+ actionpack (4.1.9) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
102946
+ actionpack (4.1.9) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
102947
+ actionpack (4.1.9) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
102948
+ railties (4.1.9) lib/rails/rack/logger.rb:38:in `call_app'
102949
+ railties (4.1.9) lib/rails/rack/logger.rb:20:in `block in call'
102950
+ activesupport (4.1.9) lib/active_support/tagged_logging.rb:68:in `block in tagged'
102951
+ activesupport (4.1.9) lib/active_support/tagged_logging.rb:26:in `tagged'
102952
+ activesupport (4.1.9) lib/active_support/tagged_logging.rb:68:in `tagged'
102953
+ railties (4.1.9) lib/rails/rack/logger.rb:20:in `call'
102954
+ request_store (1.0.8) lib/request_store/middleware.rb:8:in `call'
102955
+ actionpack (4.1.9) lib/action_dispatch/middleware/request_id.rb:21:in `call'
102956
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
102957
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
102958
+ activesupport (4.1.9) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
102959
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
102960
+ actionpack (4.1.9) lib/action_dispatch/middleware/static.rb:84:in `call'
102961
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
102962
+ railties (4.1.9) lib/rails/engine.rb:514:in `call'
102963
+ railties (4.1.9) lib/rails/application.rb:144:in `call'
102964
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
102965
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
102966
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
102967
+ /Users/maxim/.rbenv/versions/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
102968
+ /Users/maxim/.rbenv/versions/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
102969
+ /Users/maxim/.rbenv/versions/2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
102970
+
102971
+
102972
+ Rendered /Users/maxim/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms)
102973
+ Rendered /Users/maxim/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/routes/_route.html.erb (19.9ms)
102974
+ Rendered /Users/maxim/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/routes/_route.html.erb (18.0ms)
102975
+ Rendered /Users/maxim/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/routes/_table.html.erb (11.1ms)
102976
+ Rendered /Users/maxim/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (305.1ms)
102977
+
102978
+
102979
+ Started GET "/" for 127.0.0.1 at 2015-02-10 19:56:23 +0400
102980
+
102981
+ ArgumentError (controller name should not start with a slash):
102982
+ config/routes.rb:12:in `block in <top (required)>'
102983
+ config/routes.rb:3:in `<top (required)>'
102984
+
102985
+
102986
+ Rendered /Users/maxim/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.6ms)
102987
+ Rendered /Users/maxim/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms)
102988
+ Rendered /Users/maxim/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.8ms)
102989
+ Rendered /Users/maxim/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (22.2ms)
102990
+
102991
+
102992
+ Started GET "/processes" for 127.0.0.1 at 2015-02-10 19:57:30 +0400
102993
+
102994
+ ActionController::RoutingError (No route matches [GET] "/processes"):
102995
+ actionpack (4.1.9) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
102996
+ actionpack (4.1.9) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
102997
+ railties (4.1.9) lib/rails/rack/logger.rb:38:in `call_app'
102998
+ railties (4.1.9) lib/rails/rack/logger.rb:20:in `block in call'
102999
+ activesupport (4.1.9) lib/active_support/tagged_logging.rb:68:in `block in tagged'
103000
+ activesupport (4.1.9) lib/active_support/tagged_logging.rb:26:in `tagged'
103001
+ activesupport (4.1.9) lib/active_support/tagged_logging.rb:68:in `tagged'
103002
+ railties (4.1.9) lib/rails/rack/logger.rb:20:in `call'
103003
+ request_store (1.0.8) lib/request_store/middleware.rb:8:in `call'
103004
+ actionpack (4.1.9) lib/action_dispatch/middleware/request_id.rb:21:in `call'
103005
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
103006
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
103007
+ activesupport (4.1.9) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
103008
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
103009
+ actionpack (4.1.9) lib/action_dispatch/middleware/static.rb:84:in `call'
103010
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
103011
+ railties (4.1.9) lib/rails/engine.rb:514:in `call'
103012
+ railties (4.1.9) lib/rails/application.rb:144:in `call'
103013
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
103014
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
103015
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
103016
+ /Users/maxim/.rbenv/versions/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
103017
+ /Users/maxim/.rbenv/versions/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
103018
+ /Users/maxim/.rbenv/versions/2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
103019
+
103020
+
103021
+ Rendered /Users/maxim/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms)
103022
+ Rendered /Users/maxim/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/routes/_route.html.erb (12.9ms)
103023
+ Rendered /Users/maxim/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/routes/_route.html.erb (15.7ms)
103024
+ Rendered /Users/maxim/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.3ms)
103025
+ Rendered /Users/maxim/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (174.3ms)
103026
+
103027
+
103028
+ Started GET "/workflow/processes" for 127.0.0.1 at 2015-02-10 19:57:38 +0400
103029
+ Processing by RailsWorkflow::ProcessesController#index as HTML
103030
+ User Load (23.9ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
103031
+ PG::UndefinedTable: ERROR: relation "rails_workflow_processes" does not exist
103032
+ LINE 5: WHERE a.attrelid = '"rails_workflow_processes...
103033
+ ^
103034
+ : SELECT a.attname, format_type(a.atttypid, a.atttypmod),
103035
+ pg_get_expr(d.adbin, d.adrelid), a.attnotnull, a.atttypid, a.atttypmod
103036
+ FROM pg_attribute a LEFT JOIN pg_attrdef d
103037
+ ON a.attrelid = d.adrelid AND a.attnum = d.adnum
103038
+ WHERE a.attrelid = '"rails_workflow_processes"'::regclass
103039
+ AND a.attnum > 0 AND NOT a.attisdropped
103040
+ ORDER BY a.attnum
103041
+
103042
+ Completed 500 Internal Server Error in 126ms
103043
+
103044
+ ActiveRecord::StatementInvalid (PG::UndefinedTable: ERROR: relation "rails_workflow_processes" does not exist
103045
+ LINE 5: WHERE a.attrelid = '"rails_workflow_processes...
103046
+ ^
103047
+ : SELECT a.attname, format_type(a.atttypid, a.atttypmod),
103048
+ pg_get_expr(d.adbin, d.adrelid), a.attnotnull, a.atttypid, a.atttypmod
103049
+ FROM pg_attribute a LEFT JOIN pg_attrdef d
103050
+ ON a.attrelid = d.adrelid AND a.attnum = d.adnum
103051
+ WHERE a.attrelid = '"rails_workflow_processes"'::regclass
103052
+ AND a.attnum > 0 AND NOT a.attisdropped
103053
+ ORDER BY a.attnum
103054
+ ):
103055
+ activerecord (4.1.9) lib/active_record/connection_adapters/postgresql_adapter.rb:822:in `async_exec'
103056
+ activerecord (4.1.9) lib/active_record/connection_adapters/postgresql_adapter.rb:822:in `block in exec_no_cache'
103057
+ activerecord (4.1.9) lib/active_record/connection_adapters/abstract_adapter.rb:373:in `block in log'
103058
+ activesupport (4.1.9) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
103059
+ activerecord (4.1.9) lib/active_record/connection_adapters/abstract_adapter.rb:367:in `log'
103060
+ activerecord (4.1.9) lib/active_record/connection_adapters/postgresql_adapter.rb:822:in `exec_no_cache'
103061
+ activerecord (4.1.9) lib/active_record/connection_adapters/postgresql/database_statements.rb:137:in `exec_query'
103062
+ activerecord (4.1.9) lib/active_record/connection_adapters/postgresql_adapter.rb:976:in `column_definitions'
103063
+ activerecord (4.1.9) lib/active_record/connection_adapters/postgresql/schema_statements.rb:187:in `columns'
103064
+ activerecord (4.1.9) lib/active_record/connection_adapters/schema_cache.rb:93:in `block in prepare_default_proc'
103065
+ activerecord (4.1.9) lib/active_record/connection_adapters/schema_cache.rb:44:in `yield'
103066
+ activerecord (4.1.9) lib/active_record/connection_adapters/schema_cache.rb:44:in `columns'
103067
+ activerecord (4.1.9) lib/active_record/model_schema.rb:214:in `columns'
103068
+ activerecord (4.1.9) lib/active_record/model_schema.rb:260:in `column_names'
103069
+ activerecord (4.1.9) lib/active_record/relation/calculations.rb:232:in `aggregate_column'
103070
+ activerecord (4.1.9) lib/active_record/relation/calculations.rb:255:in `execute_simple_calculation'
103071
+ activerecord (4.1.9) lib/active_record/relation/calculations.rb:227:in `perform_calculation'
103072
+ activerecord (4.1.9) lib/active_record/relation/calculations.rb:119:in `calculate'
103073
+ activerecord (4.1.9) lib/active_record/relation/calculations.rb:34:in `count'
103074
+ activerecord (4.1.9) lib/active_record/querying.rb:13:in `count'
103075
+ /Users/maxim/workflow/rails_workflow/app/controllers/rails_workflow/processes_controller.rb:34:in `index'
103076
+ actionpack (4.1.9) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
103077
+ actionpack (4.1.9) lib/abstract_controller/base.rb:189:in `process_action'
103078
+ actionpack (4.1.9) lib/action_controller/metal/rendering.rb:10:in `process_action'
103079
+ actionpack (4.1.9) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
103080
+ activesupport (4.1.9) lib/active_support/callbacks.rb:113:in `call'
103081
+ activesupport (4.1.9) lib/active_support/callbacks.rb:113:in `call'
103082
+ activesupport (4.1.9) lib/active_support/callbacks.rb:166:in `block in halting'
103083
+ activesupport (4.1.9) lib/active_support/callbacks.rb:166:in `call'
103084
+ activesupport (4.1.9) lib/active_support/callbacks.rb:166:in `block in halting'
103085
+ activesupport (4.1.9) lib/active_support/callbacks.rb:229:in `call'
103086
+ activesupport (4.1.9) lib/active_support/callbacks.rb:229:in `block in halting'
103087
+ activesupport (4.1.9) lib/active_support/callbacks.rb:166:in `call'
103088
+ activesupport (4.1.9) lib/active_support/callbacks.rb:166:in `block in halting'
103089
+ activesupport (4.1.9) lib/active_support/callbacks.rb:166:in `call'
103090
+ activesupport (4.1.9) lib/active_support/callbacks.rb:166:in `block in halting'
103091
+ activesupport (4.1.9) lib/active_support/callbacks.rb:86:in `call'
103092
+ activesupport (4.1.9) lib/active_support/callbacks.rb:86:in `run_callbacks'
103093
+ actionpack (4.1.9) lib/abstract_controller/callbacks.rb:19:in `process_action'
103094
+ actionpack (4.1.9) lib/action_controller/metal/rescue.rb:29:in `process_action'
103095
+ actionpack (4.1.9) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
103096
+ activesupport (4.1.9) lib/active_support/notifications.rb:159:in `block in instrument'
103097
+ activesupport (4.1.9) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
103098
+ activesupport (4.1.9) lib/active_support/notifications.rb:159:in `instrument'
103099
+ actionpack (4.1.9) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
103100
+ actionpack (4.1.9) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
103101
+ activerecord (4.1.9) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
103102
+ actionpack (4.1.9) lib/abstract_controller/base.rb:136:in `process'
103103
+ actionview (4.1.9) lib/action_view/rendering.rb:30:in `process'
103104
+ actionpack (4.1.9) lib/action_controller/metal.rb:196:in `dispatch'
103105
+ actionpack (4.1.9) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
103106
+ actionpack (4.1.9) lib/action_controller/metal.rb:232:in `block in action'
103107
+ actionpack (4.1.9) lib/action_dispatch/routing/route_set.rb:82:in `call'
103108
+ actionpack (4.1.9) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
103109
+ actionpack (4.1.9) lib/action_dispatch/routing/route_set.rb:50:in `call'
103110
+ actionpack (4.1.9) lib/action_dispatch/journey/router.rb:73:in `block in call'
103111
+ actionpack (4.1.9) lib/action_dispatch/journey/router.rb:59:in `each'
103112
+ actionpack (4.1.9) lib/action_dispatch/journey/router.rb:59:in `call'
103113
+ actionpack (4.1.9) lib/action_dispatch/routing/route_set.rb:685:in `call'
103114
+ railties (4.1.9) lib/rails/engine.rb:514:in `call'
103115
+ railties (4.1.9) lib/rails/railtie.rb:194:in `public_send'
103116
+ railties (4.1.9) lib/rails/railtie.rb:194:in `method_missing'
103117
+ actionpack (4.1.9) lib/action_dispatch/journey/router.rb:73:in `block in call'
103118
+ actionpack (4.1.9) lib/action_dispatch/journey/router.rb:59:in `each'
103119
+ actionpack (4.1.9) lib/action_dispatch/journey/router.rb:59:in `call'
103120
+ actionpack (4.1.9) lib/action_dispatch/routing/route_set.rb:685:in `call'
103121
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
103122
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
103123
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
103124
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
103125
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
103126
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
103127
+ actionpack (4.1.9) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
103128
+ actionpack (4.1.9) lib/action_dispatch/middleware/flash.rb:254:in `call'
103129
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
103130
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
103131
+ actionpack (4.1.9) lib/action_dispatch/middleware/cookies.rb:562:in `call'
103132
+ activerecord (4.1.9) lib/active_record/query_cache.rb:36:in `call'
103133
+ activerecord (4.1.9) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
103134
+ activerecord (4.1.9) lib/active_record/migration.rb:380:in `call'
103135
+ actionpack (4.1.9) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
103136
+ activesupport (4.1.9) lib/active_support/callbacks.rb:82:in `run_callbacks'
103137
+ actionpack (4.1.9) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
103138
+ actionpack (4.1.9) lib/action_dispatch/middleware/reloader.rb:73:in `call'
103139
+ actionpack (4.1.9) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
103140
+ actionpack (4.1.9) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
103141
+ actionpack (4.1.9) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
103142
+ railties (4.1.9) lib/rails/rack/logger.rb:38:in `call_app'
103143
+ railties (4.1.9) lib/rails/rack/logger.rb:20:in `block in call'
103144
+ activesupport (4.1.9) lib/active_support/tagged_logging.rb:68:in `block in tagged'
103145
+ activesupport (4.1.9) lib/active_support/tagged_logging.rb:26:in `tagged'
103146
+ activesupport (4.1.9) lib/active_support/tagged_logging.rb:68:in `tagged'
103147
+ railties (4.1.9) lib/rails/rack/logger.rb:20:in `call'
103148
+ request_store (1.0.8) lib/request_store/middleware.rb:8:in `call'
103149
+ actionpack (4.1.9) lib/action_dispatch/middleware/request_id.rb:21:in `call'
103150
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
103151
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
103152
+ activesupport (4.1.9) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
103153
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
103154
+ actionpack (4.1.9) lib/action_dispatch/middleware/static.rb:84:in `call'
103155
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
103156
+ railties (4.1.9) lib/rails/engine.rb:514:in `call'
103157
+ railties (4.1.9) lib/rails/application.rb:144:in `call'
103158
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
103159
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
103160
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
103161
+ /Users/maxim/.rbenv/versions/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
103162
+ /Users/maxim/.rbenv/versions/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
103163
+ /Users/maxim/.rbenv/versions/2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
103164
+
103165
+
103166
+ Rendered /Users/maxim/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.8ms)
103167
+ Rendered /Users/maxim/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms)
103168
+ Rendered /Users/maxim/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.7ms)
103169
+ Rendered /Users/maxim/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (17.7ms)
103170
+
103171
+
103172
+ Started GET "/workflow/processes" for 127.0.0.1 at 2015-02-10 19:57:39 +0400
103173
+ Processing by RailsWorkflow::ProcessesController#index as HTML
103174
+ User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
103175
+ PG::UndefinedTable: ERROR: relation "rails_workflow_processes" does not exist
103176
+ LINE 5: WHERE a.attrelid = '"rails_workflow_processes...
103177
+ ^
103178
+ : SELECT a.attname, format_type(a.atttypid, a.atttypmod),
103179
+ pg_get_expr(d.adbin, d.adrelid), a.attnotnull, a.atttypid, a.atttypmod
103180
+ FROM pg_attribute a LEFT JOIN pg_attrdef d
103181
+ ON a.attrelid = d.adrelid AND a.attnum = d.adnum
103182
+ WHERE a.attrelid = '"rails_workflow_processes"'::regclass
103183
+ AND a.attnum > 0 AND NOT a.attisdropped
103184
+ ORDER BY a.attnum
103185
+
103186
+ Completed 500 Internal Server Error in 8ms
103187
+
103188
+ ActiveRecord::StatementInvalid (PG::UndefinedTable: ERROR: relation "rails_workflow_processes" does not exist
103189
+ LINE 5: WHERE a.attrelid = '"rails_workflow_processes...
103190
+ ^
103191
+ : SELECT a.attname, format_type(a.atttypid, a.atttypmod),
103192
+ pg_get_expr(d.adbin, d.adrelid), a.attnotnull, a.atttypid, a.atttypmod
103193
+ FROM pg_attribute a LEFT JOIN pg_attrdef d
103194
+ ON a.attrelid = d.adrelid AND a.attnum = d.adnum
103195
+ WHERE a.attrelid = '"rails_workflow_processes"'::regclass
103196
+ AND a.attnum > 0 AND NOT a.attisdropped
103197
+ ORDER BY a.attnum
103198
+ ):
103199
+ activerecord (4.1.9) lib/active_record/connection_adapters/postgresql_adapter.rb:822:in `async_exec'
103200
+ activerecord (4.1.9) lib/active_record/connection_adapters/postgresql_adapter.rb:822:in `block in exec_no_cache'
103201
+ activerecord (4.1.9) lib/active_record/connection_adapters/abstract_adapter.rb:373:in `block in log'
103202
+ activesupport (4.1.9) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
103203
+ activerecord (4.1.9) lib/active_record/connection_adapters/abstract_adapter.rb:367:in `log'
103204
+ activerecord (4.1.9) lib/active_record/connection_adapters/postgresql_adapter.rb:822:in `exec_no_cache'
103205
+ activerecord (4.1.9) lib/active_record/connection_adapters/postgresql/database_statements.rb:137:in `exec_query'
103206
+ activerecord (4.1.9) lib/active_record/connection_adapters/postgresql_adapter.rb:976:in `column_definitions'
103207
+ activerecord (4.1.9) lib/active_record/connection_adapters/postgresql/schema_statements.rb:187:in `columns'
103208
+ activerecord (4.1.9) lib/active_record/connection_adapters/schema_cache.rb:93:in `block in prepare_default_proc'
103209
+ activerecord (4.1.9) lib/active_record/connection_adapters/schema_cache.rb:44:in `yield'
103210
+ activerecord (4.1.9) lib/active_record/connection_adapters/schema_cache.rb:44:in `columns'
103211
+ activerecord (4.1.9) lib/active_record/model_schema.rb:214:in `columns'
103212
+ activerecord (4.1.9) lib/active_record/model_schema.rb:260:in `column_names'
103213
+ activerecord (4.1.9) lib/active_record/relation/calculations.rb:232:in `aggregate_column'
103214
+ activerecord (4.1.9) lib/active_record/relation/calculations.rb:255:in `execute_simple_calculation'
103215
+ activerecord (4.1.9) lib/active_record/relation/calculations.rb:227:in `perform_calculation'
103216
+ activerecord (4.1.9) lib/active_record/relation/calculations.rb:119:in `calculate'
103217
+ activerecord (4.1.9) lib/active_record/relation/calculations.rb:34:in `count'
103218
+ activerecord (4.1.9) lib/active_record/querying.rb:13:in `count'
103219
+ /Users/maxim/workflow/rails_workflow/app/controllers/rails_workflow/processes_controller.rb:34:in `index'
103220
+ actionpack (4.1.9) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
103221
+ actionpack (4.1.9) lib/abstract_controller/base.rb:189:in `process_action'
103222
+ actionpack (4.1.9) lib/action_controller/metal/rendering.rb:10:in `process_action'
103223
+ actionpack (4.1.9) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
103224
+ activesupport (4.1.9) lib/active_support/callbacks.rb:113:in `call'
103225
+ activesupport (4.1.9) lib/active_support/callbacks.rb:113:in `call'
103226
+ activesupport (4.1.9) lib/active_support/callbacks.rb:166:in `block in halting'
103227
+ activesupport (4.1.9) lib/active_support/callbacks.rb:166:in `call'
103228
+ activesupport (4.1.9) lib/active_support/callbacks.rb:166:in `block in halting'
103229
+ activesupport (4.1.9) lib/active_support/callbacks.rb:229:in `call'
103230
+ activesupport (4.1.9) lib/active_support/callbacks.rb:229:in `block in halting'
103231
+ activesupport (4.1.9) lib/active_support/callbacks.rb:166:in `call'
103232
+ activesupport (4.1.9) lib/active_support/callbacks.rb:166:in `block in halting'
103233
+ activesupport (4.1.9) lib/active_support/callbacks.rb:166:in `call'
103234
+ activesupport (4.1.9) lib/active_support/callbacks.rb:166:in `block in halting'
103235
+ activesupport (4.1.9) lib/active_support/callbacks.rb:86:in `call'
103236
+ activesupport (4.1.9) lib/active_support/callbacks.rb:86:in `run_callbacks'
103237
+ actionpack (4.1.9) lib/abstract_controller/callbacks.rb:19:in `process_action'
103238
+ actionpack (4.1.9) lib/action_controller/metal/rescue.rb:29:in `process_action'
103239
+ actionpack (4.1.9) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
103240
+ activesupport (4.1.9) lib/active_support/notifications.rb:159:in `block in instrument'
103241
+ activesupport (4.1.9) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
103242
+ activesupport (4.1.9) lib/active_support/notifications.rb:159:in `instrument'
103243
+ actionpack (4.1.9) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
103244
+ actionpack (4.1.9) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
103245
+ activerecord (4.1.9) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
103246
+ actionpack (4.1.9) lib/abstract_controller/base.rb:136:in `process'
103247
+ actionview (4.1.9) lib/action_view/rendering.rb:30:in `process'
103248
+ actionpack (4.1.9) lib/action_controller/metal.rb:196:in `dispatch'
103249
+ actionpack (4.1.9) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
103250
+ actionpack (4.1.9) lib/action_controller/metal.rb:232:in `block in action'
103251
+ actionpack (4.1.9) lib/action_dispatch/routing/route_set.rb:82:in `call'
103252
+ actionpack (4.1.9) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
103253
+ actionpack (4.1.9) lib/action_dispatch/routing/route_set.rb:50:in `call'
103254
+ actionpack (4.1.9) lib/action_dispatch/journey/router.rb:73:in `block in call'
103255
+ actionpack (4.1.9) lib/action_dispatch/journey/router.rb:59:in `each'
103256
+ actionpack (4.1.9) lib/action_dispatch/journey/router.rb:59:in `call'
103257
+ actionpack (4.1.9) lib/action_dispatch/routing/route_set.rb:685:in `call'
103258
+ railties (4.1.9) lib/rails/engine.rb:514:in `call'
103259
+ railties (4.1.9) lib/rails/railtie.rb:194:in `public_send'
103260
+ railties (4.1.9) lib/rails/railtie.rb:194:in `method_missing'
103261
+ actionpack (4.1.9) lib/action_dispatch/journey/router.rb:73:in `block in call'
103262
+ actionpack (4.1.9) lib/action_dispatch/journey/router.rb:59:in `each'
103263
+ actionpack (4.1.9) lib/action_dispatch/journey/router.rb:59:in `call'
103264
+ actionpack (4.1.9) lib/action_dispatch/routing/route_set.rb:685:in `call'
103265
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
103266
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
103267
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
103268
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
103269
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
103270
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
103271
+ actionpack (4.1.9) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
103272
+ actionpack (4.1.9) lib/action_dispatch/middleware/flash.rb:254:in `call'
103273
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
103274
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
103275
+ actionpack (4.1.9) lib/action_dispatch/middleware/cookies.rb:562:in `call'
103276
+ activerecord (4.1.9) lib/active_record/query_cache.rb:36:in `call'
103277
+ activerecord (4.1.9) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
103278
+ activerecord (4.1.9) lib/active_record/migration.rb:380:in `call'
103279
+ actionpack (4.1.9) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
103280
+ activesupport (4.1.9) lib/active_support/callbacks.rb:82:in `run_callbacks'
103281
+ actionpack (4.1.9) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
103282
+ actionpack (4.1.9) lib/action_dispatch/middleware/reloader.rb:73:in `call'
103283
+ actionpack (4.1.9) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
103284
+ actionpack (4.1.9) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
103285
+ actionpack (4.1.9) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
103286
+ railties (4.1.9) lib/rails/rack/logger.rb:38:in `call_app'
103287
+ railties (4.1.9) lib/rails/rack/logger.rb:20:in `block in call'
103288
+ activesupport (4.1.9) lib/active_support/tagged_logging.rb:68:in `block in tagged'
103289
+ activesupport (4.1.9) lib/active_support/tagged_logging.rb:26:in `tagged'
103290
+ activesupport (4.1.9) lib/active_support/tagged_logging.rb:68:in `tagged'
103291
+ railties (4.1.9) lib/rails/rack/logger.rb:20:in `call'
103292
+ request_store (1.0.8) lib/request_store/middleware.rb:8:in `call'
103293
+ actionpack (4.1.9) lib/action_dispatch/middleware/request_id.rb:21:in `call'
103294
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
103295
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
103296
+ activesupport (4.1.9) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
103297
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
103298
+ actionpack (4.1.9) lib/action_dispatch/middleware/static.rb:84:in `call'
103299
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
103300
+ railties (4.1.9) lib/rails/engine.rb:514:in `call'
103301
+ railties (4.1.9) lib/rails/application.rb:144:in `call'
103302
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
103303
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
103304
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
103305
+ /Users/maxim/.rbenv/versions/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
103306
+ /Users/maxim/.rbenv/versions/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
103307
+ /Users/maxim/.rbenv/versions/2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
103308
+
103309
+
103310
+ Rendered /Users/maxim/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.8ms)
103311
+ Rendered /Users/maxim/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms)
103312
+ Rendered /Users/maxim/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.8ms)
103313
+ Rendered /Users/maxim/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (18.3ms)
103314
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
103315
+ Migrating to ChangeNamespace (20150210070051)
103316
+  (6.3ms) BEGIN
103317
+  (34.3ms) ALTER TABLE "workflow_processes" RENAME TO "rails_workflow_processes"
103318
+  (1.8ms) ALTER TABLE "workflow_processes_id_seq" RENAME TO "rails_workflow_processes_id_seq"
103319
+  (3.2ms) ALTER INDEX "workflow_processes_pkey" RENAME TO "rails_workflow_processes_pkey"
103320
+  (2.6ms) ALTER TABLE "workflow_operations" RENAME TO "rails_workflow_operations"
103321
+  (0.4ms) ALTER TABLE "workflow_operations_id_seq" RENAME TO "rails_workflow_operations_id_seq"
103322
+  (0.3ms) ALTER INDEX "workflow_operations_pkey" RENAME TO "rails_workflow_operations_pkey"
103323
+  (0.4ms) ALTER TABLE "workflow_process_templates" RENAME TO "rails_workflow_process_templates"
103324
+  (0.4ms) ALTER TABLE "workflow_process_templates_id_seq" RENAME TO "rails_workflow_process_templates_id_seq"
103325
+  (2.1ms) ALTER INDEX "workflow_process_templates_pkey" RENAME TO "rails_workflow_process_templates_pkey"
103326
+  (1.1ms) ALTER TABLE "workflow_operation_templates" RENAME TO "rails_workflow_operation_templates"
103327
+  (0.6ms) ALTER TABLE "workflow_operation_templates_id_seq" RENAME TO "rails_workflow_operation_templates_id_seq"
103328
+  (0.5ms) ALTER INDEX "workflow_operation_templates_pkey" RENAME TO "rails_workflow_operation_templates_pkey"
103329
+  (0.7ms) ALTER TABLE "workflow_contexts" RENAME TO "rails_workflow_contexts"
103330
+  (0.2ms) ALTER TABLE "workflow_contexts_id_seq" RENAME TO "rails_workflow_contexts_id_seq"
103331
+  (1.4ms) ALTER INDEX "workflow_contexts_pkey" RENAME TO "rails_workflow_contexts_pkey"
103332
+  (0.4ms) ALTER INDEX "index_workflow_contexts_on_parent_id_and_parent_type" RENAME TO "index_rails_workflow_contexts_on_parent_id_and_parent_type"
103333
+  (0.4ms) ALTER TABLE "workflow_errors" RENAME TO "rails_workflow_errors"
103334
+  (0.4ms) ALTER TABLE "workflow_errors_id_seq" RENAME TO "rails_workflow_errors_id_seq"
103335
+  (0.3ms) ALTER INDEX "workflow_errors_pkey" RENAME TO "rails_workflow_errors_pkey"
103336
+ SQL (1.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150210070051"]]
103337
+  (1.8ms) COMMIT
103338
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
103339
+
103340
+
103341
+ Started GET "/workflow/processes" for 127.0.0.1 at 2015-02-10 19:57:58 +0400
103342
+ Processing by RailsWorkflow::ProcessesController#index as HTML
103343
+ User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
103344
+  (0.7ms) SELECT COUNT(*) FROM "rails_workflow_processes"
103345
+  (2.2ms) select status, cnt from (
103346
+ select row_number() over (partition by status),
103347
+ count(*) over (partition by status) cnt,
103348
+ status from rails_workflow_processes)t
103349
+ where row_number = 1
103350
+ RailsWorkflow::Process Load (1.6ms) SELECT "rails_workflow_processes".* FROM "rails_workflow_processes" ORDER BY "rails_workflow_processes"."created_at" DESC LIMIT 30 OFFSET 0
103351
+ CACHE (0.1ms) SELECT COUNT(*) FROM "rails_workflow_processes"
103352
+ RailsWorkflow::Operation Load (1.5ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."child_process_id" = $1 LIMIT 1 [["child_process_id", 270]]
103353
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."process_id" = $1 AND ("rails_workflow_operations"."child_process_id" IS NOT NULL) [["process_id", 270]]
103354
+ RailsWorkflow::Operation Load (0.4ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."child_process_id" = $1 LIMIT 1 [["child_process_id", 269]]
103355
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."process_id" = $1 AND ("rails_workflow_operations"."child_process_id" IS NOT NULL) [["process_id", 269]]
103356
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."child_process_id" = $1 LIMIT 1 [["child_process_id", 268]]
103357
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."process_id" = $1 AND ("rails_workflow_operations"."child_process_id" IS NOT NULL) [["process_id", 268]]
103358
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."child_process_id" = $1 LIMIT 1 [["child_process_id", 267]]
103359
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."process_id" = $1 AND ("rails_workflow_operations"."child_process_id" IS NOT NULL) [["process_id", 267]]
103360
+ RailsWorkflow::Operation Load (0.4ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."child_process_id" = $1 LIMIT 1 [["child_process_id", 266]]
103361
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."process_id" = $1 AND ("rails_workflow_operations"."child_process_id" IS NOT NULL) [["process_id", 266]]
103362
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."child_process_id" = $1 LIMIT 1 [["child_process_id", 265]]
103363
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."process_id" = $1 AND ("rails_workflow_operations"."child_process_id" IS NOT NULL) [["process_id", 265]]
103364
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."child_process_id" = $1 LIMIT 1 [["child_process_id", 264]]
103365
+ RailsWorkflow::Operation Load (0.4ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."process_id" = $1 AND ("rails_workflow_operations"."child_process_id" IS NOT NULL) [["process_id", 264]]
103366
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."child_process_id" = $1 LIMIT 1 [["child_process_id", 263]]
103367
+ RailsWorkflow::Operation Load (0.2ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."process_id" = $1 AND ("rails_workflow_operations"."child_process_id" IS NOT NULL) [["process_id", 263]]
103368
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."child_process_id" = $1 LIMIT 1 [["child_process_id", 262]]
103369
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."process_id" = $1 AND ("rails_workflow_operations"."child_process_id" IS NOT NULL) [["process_id", 262]]
103370
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."child_process_id" = $1 LIMIT 1 [["child_process_id", 261]]
103371
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."process_id" = $1 AND ("rails_workflow_operations"."child_process_id" IS NOT NULL) [["process_id", 261]]
103372
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."child_process_id" = $1 LIMIT 1 [["child_process_id", 260]]
103373
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."process_id" = $1 AND ("rails_workflow_operations"."child_process_id" IS NOT NULL) [["process_id", 260]]
103374
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."child_process_id" = $1 LIMIT 1 [["child_process_id", 259]]
103375
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."process_id" = $1 AND ("rails_workflow_operations"."child_process_id" IS NOT NULL) [["process_id", 259]]
103376
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."child_process_id" = $1 LIMIT 1 [["child_process_id", 258]]
103377
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."process_id" = $1 AND ("rails_workflow_operations"."child_process_id" IS NOT NULL) [["process_id", 258]]
103378
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."child_process_id" = $1 LIMIT 1 [["child_process_id", 257]]
103379
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."process_id" = $1 AND ("rails_workflow_operations"."child_process_id" IS NOT NULL) [["process_id", 257]]
103380
+ RailsWorkflow::Operation Load (0.2ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."child_process_id" = $1 LIMIT 1 [["child_process_id", 256]]
103381
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."process_id" = $1 AND ("rails_workflow_operations"."child_process_id" IS NOT NULL) [["process_id", 256]]
103382
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."child_process_id" = $1 LIMIT 1 [["child_process_id", 255]]
103383
+ RailsWorkflow::Operation Load (0.2ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."process_id" = $1 AND ("rails_workflow_operations"."child_process_id" IS NOT NULL) [["process_id", 255]]
103384
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."child_process_id" = $1 LIMIT 1 [["child_process_id", 254]]
103385
+ RailsWorkflow::Operation Load (0.2ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."process_id" = $1 AND ("rails_workflow_operations"."child_process_id" IS NOT NULL) [["process_id", 254]]
103386
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."child_process_id" = $1 LIMIT 1 [["child_process_id", 253]]
103387
+ RailsWorkflow::Operation Load (0.4ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."process_id" = $1 AND ("rails_workflow_operations"."child_process_id" IS NOT NULL) [["process_id", 253]]
103388
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."child_process_id" = $1 LIMIT 1 [["child_process_id", 252]]
103389
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."process_id" = $1 AND ("rails_workflow_operations"."child_process_id" IS NOT NULL) [["process_id", 252]]
103390
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."child_process_id" = $1 LIMIT 1 [["child_process_id", 251]]
103391
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."process_id" = $1 AND ("rails_workflow_operations"."child_process_id" IS NOT NULL) [["process_id", 251]]
103392
+ RailsWorkflow::Operation Load (0.4ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."child_process_id" = $1 LIMIT 1 [["child_process_id", 250]]
103393
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."process_id" = $1 AND ("rails_workflow_operations"."child_process_id" IS NOT NULL) [["process_id", 250]]
103394
+ RailsWorkflow::Operation Load (0.4ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."child_process_id" = $1 LIMIT 1 [["child_process_id", 249]]
103395
+ RailsWorkflow::Operation Load (0.2ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."process_id" = $1 AND ("rails_workflow_operations"."child_process_id" IS NOT NULL) [["process_id", 249]]
103396
+ RailsWorkflow::Operation Load (0.4ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."child_process_id" = $1 LIMIT 1 [["child_process_id", 248]]
103397
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."process_id" = $1 AND ("rails_workflow_operations"."child_process_id" IS NOT NULL) [["process_id", 248]]
103398
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."child_process_id" = $1 LIMIT 1 [["child_process_id", 247]]
103399
+ RailsWorkflow::Operation Load (0.4ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."process_id" = $1 AND ("rails_workflow_operations"."child_process_id" IS NOT NULL) [["process_id", 247]]
103400
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."child_process_id" = $1 LIMIT 1 [["child_process_id", 246]]
103401
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."process_id" = $1 AND ("rails_workflow_operations"."child_process_id" IS NOT NULL) [["process_id", 246]]
103402
+ RailsWorkflow::Operation Load (0.4ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."child_process_id" = $1 LIMIT 1 [["child_process_id", 245]]
103403
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."process_id" = $1 AND ("rails_workflow_operations"."child_process_id" IS NOT NULL) [["process_id", 245]]
103404
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."child_process_id" = $1 LIMIT 1 [["child_process_id", 244]]
103405
+ RailsWorkflow::Operation Load (0.2ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."process_id" = $1 AND ("rails_workflow_operations"."child_process_id" IS NOT NULL) [["process_id", 244]]
103406
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."child_process_id" = $1 LIMIT 1 [["child_process_id", 243]]
103407
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."process_id" = $1 AND ("rails_workflow_operations"."child_process_id" IS NOT NULL) [["process_id", 243]]
103408
+ RailsWorkflow::Operation Load (0.2ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."child_process_id" = $1 LIMIT 1 [["child_process_id", 242]]
103409
+ RailsWorkflow::Operation Load (0.2ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."process_id" = $1 AND ("rails_workflow_operations"."child_process_id" IS NOT NULL) [["process_id", 242]]
103410
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."child_process_id" = $1 LIMIT 1 [["child_process_id", 241]]
103411
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."process_id" = $1 AND ("rails_workflow_operations"."child_process_id" IS NOT NULL) [["process_id", 241]]
103412
+ RailsWorkflow::Error Load (1.5ms) SELECT "rails_workflow_errors".* FROM "rails_workflow_errors" WHERE (resolved is null or resolved = false) ORDER BY "rails_workflow_errors"."id" ASC LIMIT 10
103413
+ Rendered /Users/maxim/workflow/rails_workflow/app/views/rails_workflow/processes/index.html.slim within layouts/rails_workflow/application (529.9ms)
103414
+ Completed 500 Internal Server Error in 590ms
103415
+
103416
+ ActionView::Template::Error (uninitialized constant Workflow):
103417
+ 70: tr
103418
+ 71: th Message
103419
+ 72: tbody
103420
+ 73: - @errors.each do |error|
103421
+ 74: tr
103422
+ 75: - if error.parent.is_a? RailsWorkflow::Operation
103423
+ 76: td = link_to error.message, process_operation_path(error.parent.process, error.parent)
103424
+ activesupport (4.1.9) lib/active_support/inflector/methods.rb:238:in `const_get'
103425
+ activesupport (4.1.9) lib/active_support/inflector/methods.rb:238:in `block in constantize'
103426
+ activesupport (4.1.9) lib/active_support/inflector/methods.rb:236:in `each'
103427
+ activesupport (4.1.9) lib/active_support/inflector/methods.rb:236:in `inject'
103428
+ activesupport (4.1.9) lib/active_support/inflector/methods.rb:236:in `constantize'
103429
+ activesupport (4.1.9) lib/active_support/core_ext/string/inflections.rb:66:in `constantize'
103430
+ activerecord (4.1.9) lib/active_record/associations/belongs_to_polymorphic_association.rb:7:in `klass'
103431
+ activerecord (4.1.9) lib/active_record/associations/preloader.rb:149:in `block in grouped_records'
103432
+ activerecord (4.1.9) lib/active_record/associations/preloader.rb:145:in `each'
103433
+ activerecord (4.1.9) lib/active_record/associations/preloader.rb:145:in `grouped_records'
103434
+ activerecord (4.1.9) lib/active_record/associations/preloader.rb:134:in `preloaders_for_one'
103435
+ activerecord (4.1.9) lib/active_record/associations/preloader.rb:106:in `preloaders_on'
103436
+ activerecord (4.1.9) lib/active_record/associations/preloader.rb:94:in `block in preload'
103437
+ activerecord (4.1.9) lib/active_record/associations/preloader.rb:93:in `each'
103438
+ activerecord (4.1.9) lib/active_record/associations/preloader.rb:93:in `flat_map'
103439
+ activerecord (4.1.9) lib/active_record/associations/preloader.rb:93:in `preload'
103440
+ activerecord (4.1.9) lib/active_record/relation.rb:617:in `block in exec_queries'
103441
+ activerecord (4.1.9) lib/active_record/relation.rb:616:in `each'
103442
+ activerecord (4.1.9) lib/active_record/relation.rb:616:in `exec_queries'
103443
+ activerecord (4.1.9) lib/active_record/relation.rb:493:in `load'
103444
+ activerecord (4.1.9) lib/active_record/relation.rb:238:in `to_a'
103445
+ activerecord (4.1.9) lib/active_record/relation/delegation.rb:46:in `each'
103446
+ /Users/maxim/workflow/rails_workflow/app/views/rails_workflow/processes/index.html.slim:73:in `___sers_maxim_workflow_rails_workflow_app_views_rails_workflow_processes_index_html_slim___1191382674575589882_70119282673860'
103447
+ actionview (4.1.9) lib/action_view/template.rb:145:in `block in render'
103448
+ activesupport (4.1.9) lib/active_support/notifications.rb:161:in `instrument'
103449
+ actionview (4.1.9) lib/action_view/template.rb:339:in `instrument'
103450
+ actionview (4.1.9) lib/action_view/template.rb:143:in `render'
103451
+ actionview (4.1.9) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template'
103452
+ actionview (4.1.9) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
103453
+ activesupport (4.1.9) lib/active_support/notifications.rb:159:in `block in instrument'
103454
+ activesupport (4.1.9) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
103455
+ activesupport (4.1.9) lib/active_support/notifications.rb:159:in `instrument'
103456
+ actionview (4.1.9) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
103457
+ actionview (4.1.9) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template'
103458
+ actionview (4.1.9) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout'
103459
+ actionview (4.1.9) lib/action_view/renderer/template_renderer.rb:53:in `render_template'
103460
+ actionview (4.1.9) lib/action_view/renderer/template_renderer.rb:17:in `render'
103461
+ actionview (4.1.9) lib/action_view/renderer/renderer.rb:42:in `render_template'
103462
+ actionview (4.1.9) lib/action_view/renderer/renderer.rb:23:in `render'
103463
+ actionview (4.1.9) lib/action_view/rendering.rb:99:in `_render_template'
103464
+ actionpack (4.1.9) lib/action_controller/metal/streaming.rb:217:in `_render_template'
103465
+ actionview (4.1.9) lib/action_view/rendering.rb:82:in `render_to_body'
103466
+ actionpack (4.1.9) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
103467
+ actionpack (4.1.9) lib/action_controller/metal/renderers.rb:32:in `render_to_body'
103468
+ actionpack (4.1.9) lib/abstract_controller/rendering.rb:25:in `render'
103469
+ actionpack (4.1.9) lib/action_controller/metal/rendering.rb:16:in `render'
103470
+ actionpack (4.1.9) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
103471
+ activesupport (4.1.9) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
103472
+ /Users/maxim/.rbenv/versions/2.1.2/lib/ruby/2.1.0/benchmark.rb:294:in `realtime'
103473
+ activesupport (4.1.9) lib/active_support/core_ext/benchmark.rb:12:in `ms'
103474
+ actionpack (4.1.9) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
103475
+ actionpack (4.1.9) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
103476
+ activerecord (4.1.9) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
103477
+ actionpack (4.1.9) lib/action_controller/metal/instrumentation.rb:40:in `render'
103478
+ actionpack (4.1.9) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
103479
+ actionpack (4.1.9) lib/action_controller/metal/responder.rb:238:in `default_render'
103480
+ actionpack (4.1.9) lib/action_controller/metal/responder.rb:165:in `to_html'
103481
+ responders (1.1.2) lib/responders/flash_responder.rb:107:in `to_html'
103482
+ actionpack (4.1.9) lib/action_controller/metal/responder.rb:158:in `respond'
103483
+ actionpack (4.1.9) lib/action_controller/metal/responder.rb:151:in `call'
103484
+ actionpack (4.1.9) lib/action_controller/metal/mime_responds.rb:400:in `respond_with'
103485
+ inherited_resources (1.5.1) lib/inherited_resources/actions.rb:7:in `index'
103486
+ /Users/maxim/workflow/rails_workflow/app/controllers/rails_workflow/processes_controller.rb:38:in `index'
103487
+ actionpack (4.1.9) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
103488
+ actionpack (4.1.9) lib/abstract_controller/base.rb:189:in `process_action'
103489
+ actionpack (4.1.9) lib/action_controller/metal/rendering.rb:10:in `process_action'
103490
+ actionpack (4.1.9) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
103491
+ activesupport (4.1.9) lib/active_support/callbacks.rb:113:in `call'
103492
+ activesupport (4.1.9) lib/active_support/callbacks.rb:113:in `call'
103493
+ activesupport (4.1.9) lib/active_support/callbacks.rb:166:in `block in halting'
103494
+ activesupport (4.1.9) lib/active_support/callbacks.rb:166:in `call'
103495
+ activesupport (4.1.9) lib/active_support/callbacks.rb:166:in `block in halting'
103496
+ activesupport (4.1.9) lib/active_support/callbacks.rb:229:in `call'
103497
+ activesupport (4.1.9) lib/active_support/callbacks.rb:229:in `block in halting'
103498
+ activesupport (4.1.9) lib/active_support/callbacks.rb:166:in `call'
103499
+ activesupport (4.1.9) lib/active_support/callbacks.rb:166:in `block in halting'
103500
+ activesupport (4.1.9) lib/active_support/callbacks.rb:166:in `call'
103501
+ activesupport (4.1.9) lib/active_support/callbacks.rb:166:in `block in halting'
103502
+ activesupport (4.1.9) lib/active_support/callbacks.rb:86:in `call'
103503
+ activesupport (4.1.9) lib/active_support/callbacks.rb:86:in `run_callbacks'
103504
+ actionpack (4.1.9) lib/abstract_controller/callbacks.rb:19:in `process_action'
103505
+ actionpack (4.1.9) lib/action_controller/metal/rescue.rb:29:in `process_action'
103506
+ actionpack (4.1.9) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
103507
+ activesupport (4.1.9) lib/active_support/notifications.rb:159:in `block in instrument'
103508
+ activesupport (4.1.9) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
103509
+ activesupport (4.1.9) lib/active_support/notifications.rb:159:in `instrument'
103510
+ actionpack (4.1.9) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
103511
+ actionpack (4.1.9) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
103512
+ activerecord (4.1.9) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
103513
+ actionpack (4.1.9) lib/abstract_controller/base.rb:136:in `process'
103514
+ actionview (4.1.9) lib/action_view/rendering.rb:30:in `process'
103515
+ actionpack (4.1.9) lib/action_controller/metal.rb:196:in `dispatch'
103516
+ actionpack (4.1.9) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
103517
+ actionpack (4.1.9) lib/action_controller/metal.rb:232:in `block in action'
103518
+ actionpack (4.1.9) lib/action_dispatch/routing/route_set.rb:82:in `call'
103519
+ actionpack (4.1.9) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
103520
+ actionpack (4.1.9) lib/action_dispatch/routing/route_set.rb:50:in `call'
103521
+ actionpack (4.1.9) lib/action_dispatch/journey/router.rb:73:in `block in call'
103522
+ actionpack (4.1.9) lib/action_dispatch/journey/router.rb:59:in `each'
103523
+ actionpack (4.1.9) lib/action_dispatch/journey/router.rb:59:in `call'
103524
+ actionpack (4.1.9) lib/action_dispatch/routing/route_set.rb:685:in `call'
103525
+ railties (4.1.9) lib/rails/engine.rb:514:in `call'
103526
+ railties (4.1.9) lib/rails/railtie.rb:194:in `public_send'
103527
+ railties (4.1.9) lib/rails/railtie.rb:194:in `method_missing'
103528
+ actionpack (4.1.9) lib/action_dispatch/journey/router.rb:73:in `block in call'
103529
+ actionpack (4.1.9) lib/action_dispatch/journey/router.rb:59:in `each'
103530
+ actionpack (4.1.9) lib/action_dispatch/journey/router.rb:59:in `call'
103531
+ actionpack (4.1.9) lib/action_dispatch/routing/route_set.rb:685:in `call'
103532
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
103533
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
103534
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
103535
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
103536
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
103537
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
103538
+ actionpack (4.1.9) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
103539
+ actionpack (4.1.9) lib/action_dispatch/middleware/flash.rb:254:in `call'
103540
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
103541
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
103542
+ actionpack (4.1.9) lib/action_dispatch/middleware/cookies.rb:562:in `call'
103543
+ activerecord (4.1.9) lib/active_record/query_cache.rb:36:in `call'
103544
+ activerecord (4.1.9) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
103545
+ activerecord (4.1.9) lib/active_record/migration.rb:380:in `call'
103546
+ actionpack (4.1.9) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
103547
+ activesupport (4.1.9) lib/active_support/callbacks.rb:82:in `run_callbacks'
103548
+ actionpack (4.1.9) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
103549
+ actionpack (4.1.9) lib/action_dispatch/middleware/reloader.rb:73:in `call'
103550
+ actionpack (4.1.9) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
103551
+ actionpack (4.1.9) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
103552
+ actionpack (4.1.9) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
103553
+ railties (4.1.9) lib/rails/rack/logger.rb:38:in `call_app'
103554
+ railties (4.1.9) lib/rails/rack/logger.rb:20:in `block in call'
103555
+ activesupport (4.1.9) lib/active_support/tagged_logging.rb:68:in `block in tagged'
103556
+ activesupport (4.1.9) lib/active_support/tagged_logging.rb:26:in `tagged'
103557
+ activesupport (4.1.9) lib/active_support/tagged_logging.rb:68:in `tagged'
103558
+ railties (4.1.9) lib/rails/rack/logger.rb:20:in `call'
103559
+ request_store (1.0.8) lib/request_store/middleware.rb:8:in `call'
103560
+ actionpack (4.1.9) lib/action_dispatch/middleware/request_id.rb:21:in `call'
103561
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
103562
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
103563
+ activesupport (4.1.9) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
103564
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
103565
+ actionpack (4.1.9) lib/action_dispatch/middleware/static.rb:84:in `call'
103566
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
103567
+ railties (4.1.9) lib/rails/engine.rb:514:in `call'
103568
+ railties (4.1.9) lib/rails/application.rb:144:in `call'
103569
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
103570
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
103571
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
103572
+ /Users/maxim/.rbenv/versions/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
103573
+ /Users/maxim/.rbenv/versions/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
103574
+ /Users/maxim/.rbenv/versions/2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
103575
+
103576
+
103577
+ Rendered /Users/maxim/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms)
103578
+ Rendered /Users/maxim/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms)
103579
+ Rendered /Users/maxim/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (16.4ms)
103580
+
103581
+
103582
+ Started GET "/workflow/processes" for 127.0.0.1 at 2015-02-10 20:04:02 +0400
103583
+ Processing by RailsWorkflow::ProcessesController#index as HTML
103584
+ User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
103585
+  (0.4ms) SELECT COUNT(*) FROM "rails_workflow_processes"
103586
+  (0.5ms) select status, cnt from (
103587
+ select row_number() over (partition by status),
103588
+ count(*) over (partition by status) cnt,
103589
+ status from rails_workflow_processes)t
103590
+ where row_number = 1
103591
+ RailsWorkflow::Process Load (0.6ms) SELECT "rails_workflow_processes".* FROM "rails_workflow_processes" ORDER BY "rails_workflow_processes"."created_at" DESC LIMIT 30 OFFSET 0
103592
+ CACHE (0.1ms) SELECT COUNT(*) FROM "rails_workflow_processes"
103593
+ RailsWorkflow::Operation Load (0.4ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."child_process_id" = $1 LIMIT 1 [["child_process_id", 270]]
103594
+ RailsWorkflow::Operation Load (0.4ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."process_id" = $1 AND ("rails_workflow_operations"."child_process_id" IS NOT NULL) [["process_id", 270]]
103595
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."child_process_id" = $1 LIMIT 1 [["child_process_id", 269]]
103596
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."process_id" = $1 AND ("rails_workflow_operations"."child_process_id" IS NOT NULL) [["process_id", 269]]
103597
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."child_process_id" = $1 LIMIT 1 [["child_process_id", 268]]
103598
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."process_id" = $1 AND ("rails_workflow_operations"."child_process_id" IS NOT NULL) [["process_id", 268]]
103599
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."child_process_id" = $1 LIMIT 1 [["child_process_id", 267]]
103600
+ RailsWorkflow::Operation Load (0.2ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."process_id" = $1 AND ("rails_workflow_operations"."child_process_id" IS NOT NULL) [["process_id", 267]]
103601
+ RailsWorkflow::Operation Load (0.5ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."child_process_id" = $1 LIMIT 1 [["child_process_id", 266]]
103602
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."process_id" = $1 AND ("rails_workflow_operations"."child_process_id" IS NOT NULL) [["process_id", 266]]
103603
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."child_process_id" = $1 LIMIT 1 [["child_process_id", 265]]
103604
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."process_id" = $1 AND ("rails_workflow_operations"."child_process_id" IS NOT NULL) [["process_id", 265]]
103605
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."child_process_id" = $1 LIMIT 1 [["child_process_id", 264]]
103606
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."process_id" = $1 AND ("rails_workflow_operations"."child_process_id" IS NOT NULL) [["process_id", 264]]
103607
+ RailsWorkflow::Operation Load (0.4ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."child_process_id" = $1 LIMIT 1 [["child_process_id", 263]]
103608
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."process_id" = $1 AND ("rails_workflow_operations"."child_process_id" IS NOT NULL) [["process_id", 263]]
103609
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."child_process_id" = $1 LIMIT 1 [["child_process_id", 262]]
103610
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."process_id" = $1 AND ("rails_workflow_operations"."child_process_id" IS NOT NULL) [["process_id", 262]]
103611
+ RailsWorkflow::Operation Load (0.4ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."child_process_id" = $1 LIMIT 1 [["child_process_id", 261]]
103612
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."process_id" = $1 AND ("rails_workflow_operations"."child_process_id" IS NOT NULL) [["process_id", 261]]
103613
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."child_process_id" = $1 LIMIT 1 [["child_process_id", 260]]
103614
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."process_id" = $1 AND ("rails_workflow_operations"."child_process_id" IS NOT NULL) [["process_id", 260]]
103615
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."child_process_id" = $1 LIMIT 1 [["child_process_id", 259]]
103616
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."process_id" = $1 AND ("rails_workflow_operations"."child_process_id" IS NOT NULL) [["process_id", 259]]
103617
+ RailsWorkflow::Operation Load (0.4ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."child_process_id" = $1 LIMIT 1 [["child_process_id", 258]]
103618
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."process_id" = $1 AND ("rails_workflow_operations"."child_process_id" IS NOT NULL) [["process_id", 258]]
103619
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."child_process_id" = $1 LIMIT 1 [["child_process_id", 257]]
103620
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."process_id" = $1 AND ("rails_workflow_operations"."child_process_id" IS NOT NULL) [["process_id", 257]]
103621
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."child_process_id" = $1 LIMIT 1 [["child_process_id", 256]]
103622
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."process_id" = $1 AND ("rails_workflow_operations"."child_process_id" IS NOT NULL) [["process_id", 256]]
103623
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."child_process_id" = $1 LIMIT 1 [["child_process_id", 255]]
103624
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."process_id" = $1 AND ("rails_workflow_operations"."child_process_id" IS NOT NULL) [["process_id", 255]]
103625
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."child_process_id" = $1 LIMIT 1 [["child_process_id", 254]]
103626
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."process_id" = $1 AND ("rails_workflow_operations"."child_process_id" IS NOT NULL) [["process_id", 254]]
103627
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."child_process_id" = $1 LIMIT 1 [["child_process_id", 253]]
103628
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."process_id" = $1 AND ("rails_workflow_operations"."child_process_id" IS NOT NULL) [["process_id", 253]]
103629
+ RailsWorkflow::Operation Load (0.4ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."child_process_id" = $1 LIMIT 1 [["child_process_id", 252]]
103630
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."process_id" = $1 AND ("rails_workflow_operations"."child_process_id" IS NOT NULL) [["process_id", 252]]
103631
+ RailsWorkflow::Operation Load (0.4ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."child_process_id" = $1 LIMIT 1 [["child_process_id", 251]]
103632
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."process_id" = $1 AND ("rails_workflow_operations"."child_process_id" IS NOT NULL) [["process_id", 251]]
103633
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."child_process_id" = $1 LIMIT 1 [["child_process_id", 250]]
103634
+ RailsWorkflow::Operation Load (0.2ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."process_id" = $1 AND ("rails_workflow_operations"."child_process_id" IS NOT NULL) [["process_id", 250]]
103635
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."child_process_id" = $1 LIMIT 1 [["child_process_id", 249]]
103636
+ RailsWorkflow::Operation Load (0.4ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."process_id" = $1 AND ("rails_workflow_operations"."child_process_id" IS NOT NULL) [["process_id", 249]]
103637
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."child_process_id" = $1 LIMIT 1 [["child_process_id", 248]]
103638
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."process_id" = $1 AND ("rails_workflow_operations"."child_process_id" IS NOT NULL) [["process_id", 248]]
103639
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."child_process_id" = $1 LIMIT 1 [["child_process_id", 247]]
103640
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."process_id" = $1 AND ("rails_workflow_operations"."child_process_id" IS NOT NULL) [["process_id", 247]]
103641
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."child_process_id" = $1 LIMIT 1 [["child_process_id", 246]]
103642
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."process_id" = $1 AND ("rails_workflow_operations"."child_process_id" IS NOT NULL) [["process_id", 246]]
103643
+ RailsWorkflow::Operation Load (0.4ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."child_process_id" = $1 LIMIT 1 [["child_process_id", 245]]
103644
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."process_id" = $1 AND ("rails_workflow_operations"."child_process_id" IS NOT NULL) [["process_id", 245]]
103645
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."child_process_id" = $1 LIMIT 1 [["child_process_id", 244]]
103646
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."process_id" = $1 AND ("rails_workflow_operations"."child_process_id" IS NOT NULL) [["process_id", 244]]
103647
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."child_process_id" = $1 LIMIT 1 [["child_process_id", 243]]
103648
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."process_id" = $1 AND ("rails_workflow_operations"."child_process_id" IS NOT NULL) [["process_id", 243]]
103649
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."child_process_id" = $1 LIMIT 1 [["child_process_id", 242]]
103650
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."process_id" = $1 AND ("rails_workflow_operations"."child_process_id" IS NOT NULL) [["process_id", 242]]
103651
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."child_process_id" = $1 LIMIT 1 [["child_process_id", 241]]
103652
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."process_id" = $1 AND ("rails_workflow_operations"."child_process_id" IS NOT NULL) [["process_id", 241]]
103653
+ RailsWorkflow::Operation Load (0.5ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."status" IN (3) AND "rails_workflow_operations"."assignment_id" IS NULL LIMIT 20
103654
+ RailsWorkflow::OperationTemplate Load (0.6ms) SELECT "rails_workflow_operation_templates".* FROM "rails_workflow_operation_templates" WHERE "rails_workflow_operation_templates"."id" IN (63, 51, 65)
103655
+ RailsWorkflow::Error Load (1.8ms) SELECT "rails_workflow_errors".* FROM "rails_workflow_errors" WHERE (resolved is null or resolved = false) ORDER BY "rails_workflow_errors"."id" ASC LIMIT 10
103656
+ RailsWorkflow::Process Load (0.5ms) SELECT "rails_workflow_processes".* FROM "rails_workflow_processes" WHERE "rails_workflow_processes"."id" IN (204, 205, 211, 212, 213, 214, 215, 216, 218)
103657
+ RailsWorkflow::ProcessTemplate Load (0.6ms) SELECT "rails_workflow_process_templates".* FROM "rails_workflow_process_templates" WHERE "rails_workflow_process_templates"."id" IN (27)
103658
+ Rendered /Users/maxim/workflow/rails_workflow/app/views/rails_workflow/processes/index.html.slim within layouts/rails_workflow/application (3810.9ms)
103659
+ Completed 200 OK in 4105ms (Views: 4062.7ms | ActiveRecord: 30.4ms)
103660
+
103661
+
103662
+ Started GET "/assets/rails_workflow/application.css?body=1" for 127.0.0.1 at 2015-02-10 20:04:07 +0400
103663
+
103664
+
103665
+ Started GET "/assets/bootstrap/bootstrap.css?body=1" for 127.0.0.1 at 2015-02-10 20:04:07 +0400
103666
+
103667
+
103668
+ Started GET "/assets/rails_workflow/application.js?body=1" for 127.0.0.1 at 2015-02-10 20:04:07 +0400
103669
+
103670
+
103671
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-02-10 20:04:07 +0400
103672
+
103673
+
103674
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-02-10 20:04:07 +0400
103675
+
103676
+
103677
+ Started GET "/assets/bootstrap/bootstrap.js?body=1" for 127.0.0.1 at 2015-02-10 20:04:07 +0400
103678
+
103679
+
103680
+ Started GET "/workflow/processes/270" for 127.0.0.1 at 2015-02-10 20:08:05 +0400
103681
+ Processing by RailsWorkflow::ProcessesController#show as HTML
103682
+ Parameters: {"id"=>"270"}
103683
+ User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
103684
+ RailsWorkflow::Process Load (0.3ms) SELECT "rails_workflow_processes".* FROM "rails_workflow_processes" WHERE "rails_workflow_processes"."id" = $1 LIMIT 1 [["id", 270]]
103685
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."child_process_id" = $1 LIMIT 1 [["child_process_id", 270]]
103686
+ Rendered /Users/maxim/workflow/rails_workflow/app/views/application/_flash.html.slim (25.0ms)
103687
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."process_id" = $1 [["process_id", 270]]
103688
+ RailsWorkflow::OperationTemplate Load (0.3ms) SELECT "rails_workflow_operation_templates".* FROM "rails_workflow_operation_templates" WHERE "rails_workflow_operation_templates"."id" = $1 LIMIT 1 [["id", 65]]
103689
+ RailsWorkflow::OperationTemplate Load (0.4ms) SELECT "rails_workflow_operation_templates".* FROM "rails_workflow_operation_templates" WHERE "rails_workflow_operation_templates"."id" = $1 LIMIT 1 [["id", 66]]
103690
+ RailsWorkflow::ProcessTemplate Load (0.4ms) SELECT "rails_workflow_process_templates".* FROM "rails_workflow_process_templates" WHERE "rails_workflow_process_templates"."id" = $1 LIMIT 1 [["id", 27]]
103691
+ RailsWorkflow::OperationTemplate Load (0.4ms) SELECT "rails_workflow_operation_templates".* FROM "rails_workflow_operation_templates" WHERE "rails_workflow_operation_templates"."process_template_id" = $1 [["process_template_id", 27]]
103692
+ RailsWorkflow::Error Load (0.6ms) SELECT "rails_workflow_errors".* FROM "rails_workflow_errors" WHERE "rails_workflow_errors"."parent_id" = $1 AND "rails_workflow_errors"."parent_type" = $2 AND (resolved is null or resolved = false) [["parent_id", 270], ["parent_type", "RailsWorkflow::Process"]]
103693
+ RailsWorkflow::Context Load (0.6ms) SELECT "rails_workflow_contexts".* FROM "rails_workflow_contexts" WHERE "rails_workflow_contexts"."parent_id" = $1 AND "rails_workflow_contexts"."parent_type" = $2 LIMIT 1 [["parent_id", 270], ["parent_type", "RailsWorkflow::Process"]]
103694
+ Rendered /Users/maxim/workflow/rails_workflow/app/views/rails_workflow/processes/show.html.slim within layouts/rails_workflow/application (255.9ms)
103695
+ Completed 200 OK in 348ms (Views: 333.2ms | ActiveRecord: 6.4ms)
103696
+
103697
+
103698
+ Started GET "/assets/bootstrap/bootstrap.css?body=1" for 127.0.0.1 at 2015-02-10 20:08:05 +0400
103699
+
103700
+
103701
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-02-10 20:08:05 +0400
103702
+
103703
+
103704
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-02-10 20:08:05 +0400
103705
+
103706
+
103707
+ Started GET "/assets/bootstrap/bootstrap.js?body=1" for 127.0.0.1 at 2015-02-10 20:08:05 +0400
103708
+
103709
+
103710
+ Started GET "/workflow/processes/270/operations/442" for 127.0.0.1 at 2015-02-10 20:08:07 +0400
103711
+ Processing by RailsWorkflow::OperationsController#show as HTML
103712
+ Parameters: {"process_id"=>"270", "id"=>"442"}
103713
+ User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
103714
+ RailsWorkflow::Process Load (0.4ms) SELECT "rails_workflow_processes".* FROM "rails_workflow_processes" WHERE "rails_workflow_processes"."id" = $1 LIMIT 1 [["id", 270]]
103715
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."id" = $1 LIMIT 1 [["id", 442]]
103716
+ Rendered /Users/maxim/workflow/rails_workflow/app/views/application/_flash.html.slim (0.1ms)
103717
+ RailsWorkflow::OperationTemplate Load (0.4ms) SELECT "rails_workflow_operation_templates".* FROM "rails_workflow_operation_templates" WHERE "rails_workflow_operation_templates"."id" = $1 LIMIT 1 [["id", 65]]
103718
+ RailsWorkflow::ProcessTemplate Load (0.4ms) SELECT "rails_workflow_process_templates".* FROM "rails_workflow_process_templates" WHERE "rails_workflow_process_templates"."id" = $1 LIMIT 1 [["id", 27]]
103719
+ RailsWorkflow::Process Load (0.4ms) SELECT "rails_workflow_processes".* FROM "rails_workflow_processes" WHERE "rails_workflow_processes"."id" = $1 LIMIT 1 [["id", 270]]
103720
+ RailsWorkflow::Context Load (0.5ms) SELECT "rails_workflow_contexts".* FROM "rails_workflow_contexts" WHERE "rails_workflow_contexts"."parent_id" = $1 AND "rails_workflow_contexts"."parent_type" = $2 LIMIT 1 [["parent_id", 442], ["parent_type", "RailsWorkflow::Operation"]]
103721
+ RailsWorkflow::Error Load (0.4ms) SELECT "rails_workflow_errors".* FROM "rails_workflow_errors" WHERE "rails_workflow_errors"."parent_id" = $1 AND "rails_workflow_errors"."parent_type" = $2 AND (resolved is null or resolved = false) [["parent_id", 442], ["parent_type", "RailsWorkflow::Operation"]]
103722
+ Rendered /Users/maxim/workflow/rails_workflow/app/views/rails_workflow/operations/show.html.slim within layouts/rails_workflow/application (195.1ms)
103723
+ Completed 200 OK in 294ms (Views: 277.7ms | ActiveRecord: 3.2ms)
103724
+
103725
+
103726
+ Started GET "/assets/bootstrap/bootstrap.css?body=1" for 127.0.0.1 at 2015-02-10 20:08:07 +0400
103727
+
103728
+
103729
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-02-10 20:08:07 +0400
103730
+
103731
+
103732
+ Started GET "/assets/bootstrap/bootstrap.js?body=1" for 127.0.0.1 at 2015-02-10 20:08:07 +0400
103733
+
103734
+
103735
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-02-10 20:08:07 +0400
103736
+
103737
+
103738
+ Started GET "/workflow/config/27/operation_templates/65" for 127.0.0.1 at 2015-02-10 20:08:09 +0400
103739
+ Processing by RailsWorkflow::OperationTemplatesController#show as HTML
103740
+ Parameters: {"process_template_id"=>"27", "id"=>"65"}
103741
+ User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
103742
+ RailsWorkflow::OperationTemplate Load (0.4ms) SELECT "rails_workflow_operation_templates".* FROM "rails_workflow_operation_templates" WHERE "rails_workflow_operation_templates"."id" = $1 LIMIT 1 [["id", 65]]
103743
+ RailsWorkflow::ProcessTemplate Load (0.4ms) SELECT "rails_workflow_process_templates".* FROM "rails_workflow_process_templates" WHERE "rails_workflow_process_templates"."id" = $1 LIMIT 1 [["id", 27]]
103744
+ Rendered /Users/maxim/workflow/rails_workflow/app/views/application/_flash.html.slim (0.1ms)
103745
+ Rendered /Users/maxim/workflow/rails_workflow/app/views/rails_workflow/operation_templates/show.html.slim within layouts/rails_workflow/application (70.3ms)
103746
+ Completed 200 OK in 164ms (Views: 150.5ms | ActiveRecord: 1.2ms)
103747
+
103748
+
103749
+ Started GET "/assets/bootstrap/bootstrap.css?body=1" for 127.0.0.1 at 2015-02-10 20:08:09 +0400
103750
+
103751
+
103752
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-02-10 20:08:09 +0400
103753
+
103754
+
103755
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-02-10 20:08:09 +0400
103756
+
103757
+
103758
+ Started GET "/assets/bootstrap/bootstrap.js?body=1" for 127.0.0.1 at 2015-02-10 20:08:09 +0400
103759
+
103760
+
103761
+ Started GET "/workflow/config/27" for 127.0.0.1 at 2015-02-10 20:08:11 +0400
103762
+ Processing by RailsWorkflow::ProcessTemplatesController#show as HTML
103763
+ Parameters: {"id"=>"27"}
103764
+ User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
103765
+ RailsWorkflow::ProcessTemplate Load (0.3ms) SELECT "rails_workflow_process_templates".* FROM "rails_workflow_process_templates" WHERE "rails_workflow_process_templates"."id" = $1 LIMIT 1 [["id", 27]]
103766
+ Rendered /Users/maxim/workflow/rails_workflow/app/views/application/_flash.html.slim (0.1ms)
103767
+ Rendered /Users/maxim/workflow/rails_workflow/app/views/rails_workflow/process_templates/show.html.slim within layouts/rails_workflow/application (86.5ms)
103768
+ Completed 200 OK in 186ms (Views: 174.0ms | ActiveRecord: 0.8ms)
103769
+
103770
+
103771
+ Started GET "/assets/bootstrap/bootstrap.css?body=1" for 127.0.0.1 at 2015-02-10 20:08:11 +0400
103772
+
103773
+
103774
+ Started GET "/assets/bootstrap/bootstrap.js?body=1" for 127.0.0.1 at 2015-02-10 20:08:11 +0400
103775
+
103776
+
103777
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-02-10 20:08:11 +0400
103778
+
103779
+
103780
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-02-10 20:08:11 +0400
103781
+
103782
+
103783
+ Started GET "/workflow/config" for 127.0.0.1 at 2015-02-10 20:08:16 +0400
103784
+ Processing by RailsWorkflow::ProcessTemplatesController#index as HTML
103785
+ User Load (0.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
103786
+ Rendered /Users/maxim/workflow/rails_workflow/app/views/application/_flash.html.slim (0.2ms)
103787
+ RailsWorkflow::ProcessTemplate Load (0.5ms) SELECT "rails_workflow_process_templates".* FROM "rails_workflow_process_templates"
103788
+ Rendered /Users/maxim/workflow/rails_workflow/app/views/rails_workflow/process_templates/index.html.slim within layouts/rails_workflow/application (94.5ms)
103789
+ Completed 200 OK in 181ms (Views: 171.4ms | ActiveRecord: 1.1ms)
103790
+
103791
+
103792
+ Started GET "/assets/bootstrap/bootstrap.css?body=1" for 127.0.0.1 at 2015-02-10 20:08:16 +0400
103793
+
103794
+
103795
+ Started GET "/assets/bootstrap/bootstrap.js?body=1" for 127.0.0.1 at 2015-02-10 20:08:16 +0400
103796
+
103797
+
103798
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-02-10 20:08:16 +0400
103799
+
103800
+
103801
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-02-10 20:08:16 +0400
103802
+
103803
+
103804
+ Started GET "/workflow/config/18/operation_templates" for 127.0.0.1 at 2015-02-10 20:08:18 +0400
103805
+ Processing by RailsWorkflow::OperationTemplatesController#index as HTML
103806
+ Parameters: {"process_template_id"=>"18"}
103807
+ User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
103808
+ RailsWorkflow::ProcessTemplate Load (0.4ms) SELECT "rails_workflow_process_templates".* FROM "rails_workflow_process_templates" WHERE "rails_workflow_process_templates"."id" = $1 LIMIT 1 [["id", 18]]
103809
+ Rendered /Users/maxim/workflow/rails_workflow/app/views/application/_flash.html.slim (0.1ms)
103810
+ RailsWorkflow::OperationTemplate Load (0.4ms) SELECT "rails_workflow_operation_templates".* FROM "rails_workflow_operation_templates" WHERE "rails_workflow_operation_templates"."process_template_id" = $1 ORDER BY "rails_workflow_operation_templates"."id" ASC [["process_template_id", 18]]
103811
+  (0.4ms) SELECT "rails_workflow_operation_templates"."title" FROM "rails_workflow_operation_templates" WHERE "rails_workflow_operation_templates"."id" = 50
103812
+  (0.4ms) SELECT "rails_workflow_operation_templates"."title" FROM "rails_workflow_operation_templates" WHERE "rails_workflow_operation_templates"."id" = 51
103813
+ CACHE (0.1ms) SELECT "rails_workflow_operation_templates"."title" FROM "rails_workflow_operation_templates" WHERE "rails_workflow_operation_templates"."id" = 51
103814
+ Rendered /Users/maxim/workflow/rails_workflow/app/views/rails_workflow/operation_templates/index.html.slim within layouts/rails_workflow/application (118.1ms)
103815
+ Completed 200 OK in 215ms (Views: 202.3ms | ActiveRecord: 2.6ms)
103816
+
103817
+
103818
+ Started GET "/assets/bootstrap/bootstrap.css?body=1" for 127.0.0.1 at 2015-02-10 20:08:18 +0400
103819
+
103820
+
103821
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-02-10 20:08:18 +0400
103822
+
103823
+
103824
+ Started GET "/assets/bootstrap/bootstrap.js?body=1" for 127.0.0.1 at 2015-02-10 20:08:18 +0400
103825
+
103826
+
103827
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-02-10 20:08:18 +0400
103828
+
103829
+
103830
+ Started GET "/workflow/config/20/operation_templates" for 127.0.0.1 at 2015-02-10 20:08:26 +0400
103831
+ Processing by RailsWorkflow::OperationTemplatesController#index as HTML
103832
+ Parameters: {"process_template_id"=>"20"}
103833
+ User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
103834
+ RailsWorkflow::ProcessTemplate Load (0.5ms) SELECT "rails_workflow_process_templates".* FROM "rails_workflow_process_templates" WHERE "rails_workflow_process_templates"."id" = $1 LIMIT 1 [["id", 20]]
103835
+ Rendered /Users/maxim/workflow/rails_workflow/app/views/application/_flash.html.slim (0.1ms)
103836
+ RailsWorkflow::OperationTemplate Load (0.5ms) SELECT "rails_workflow_operation_templates".* FROM "rails_workflow_operation_templates" WHERE "rails_workflow_operation_templates"."process_template_id" = $1 ORDER BY "rails_workflow_operation_templates"."id" ASC [["process_template_id", 20]]
103837
+ Rendered /Users/maxim/workflow/rails_workflow/app/views/rails_workflow/operation_templates/index.html.slim within layouts/rails_workflow/application (11.8ms)
103838
+ Completed 200 OK in 109ms (Views: 96.7ms | ActiveRecord: 1.5ms)
103839
+
103840
+
103841
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-02-10 20:08:26 +0400
103842
+
103843
+
103844
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-02-10 20:08:26 +0400
103845
+
103846
+
103847
+ Started GET "/assets/bootstrap/bootstrap.js?body=1" for 127.0.0.1 at 2015-02-10 20:08:26 +0400
103848
+
103849
+
103850
+ Started GET "/assets/bootstrap/bootstrap.css?body=1" for 127.0.0.1 at 2015-02-10 20:08:26 +0400
103851
+
103852
+
103853
+ Started GET "/workflow/config/21/operation_templates" for 127.0.0.1 at 2015-02-10 20:08:28 +0400
103854
+ Processing by RailsWorkflow::OperationTemplatesController#index as HTML
103855
+ Parameters: {"process_template_id"=>"21"}
103856
+ User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
103857
+ RailsWorkflow::ProcessTemplate Load (0.3ms) SELECT "rails_workflow_process_templates".* FROM "rails_workflow_process_templates" WHERE "rails_workflow_process_templates"."id" = $1 LIMIT 1 [["id", 21]]
103858
+ Rendered /Users/maxim/workflow/rails_workflow/app/views/application/_flash.html.slim (0.1ms)
103859
+ RailsWorkflow::OperationTemplate Load (0.5ms) SELECT "rails_workflow_operation_templates".* FROM "rails_workflow_operation_templates" WHERE "rails_workflow_operation_templates"."process_template_id" = $1 ORDER BY "rails_workflow_operation_templates"."id" ASC [["process_template_id", 21]]
103860
+  (0.4ms) SELECT "rails_workflow_operation_templates"."title" FROM "rails_workflow_operation_templates" WHERE "rails_workflow_operation_templates"."id" = 54
103861
+ Rendered /Users/maxim/workflow/rails_workflow/app/views/rails_workflow/operation_templates/index.html.slim within layouts/rails_workflow/application (22.0ms)
103862
+ Completed 200 OK in 127ms (Views: 116.7ms | ActiveRecord: 1.7ms)
103863
+
103864
+
103865
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-02-10 20:08:28 +0400
103866
+
103867
+
103868
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-02-10 20:08:28 +0400
103869
+
103870
+
103871
+ Started GET "/assets/bootstrap/bootstrap.js?body=1" for 127.0.0.1 at 2015-02-10 20:08:28 +0400
103872
+
103873
+
103874
+ Started GET "/assets/bootstrap/bootstrap.css?body=1" for 127.0.0.1 at 2015-02-10 20:08:28 +0400
103875
+
103876
+
103877
+ Started GET "/workflow/config/24/operation_templates" for 127.0.0.1 at 2015-02-10 20:08:33 +0400
103878
+ Processing by RailsWorkflow::OperationTemplatesController#index as HTML
103879
+ Parameters: {"process_template_id"=>"24"}
103880
+ User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
103881
+ RailsWorkflow::ProcessTemplate Load (0.3ms) SELECT "rails_workflow_process_templates".* FROM "rails_workflow_process_templates" WHERE "rails_workflow_process_templates"."id" = $1 LIMIT 1 [["id", 24]]
103882
+ Rendered /Users/maxim/workflow/rails_workflow/app/views/application/_flash.html.slim (0.1ms)
103883
+ RailsWorkflow::OperationTemplate Load (1.3ms) SELECT "rails_workflow_operation_templates".* FROM "rails_workflow_operation_templates" WHERE "rails_workflow_operation_templates"."process_template_id" = $1 ORDER BY "rails_workflow_operation_templates"."id" ASC [["process_template_id", 24]]
103884
+  (0.4ms) SELECT "rails_workflow_operation_templates"."title" FROM "rails_workflow_operation_templates" WHERE "rails_workflow_operation_templates"."id" = 59
103885
+ RailsWorkflow::ProcessTemplate Load (0.3ms) SELECT "rails_workflow_process_templates".* FROM "rails_workflow_process_templates" WHERE "rails_workflow_process_templates"."id" = $1 LIMIT 1 [["id", 25]]
103886
+  (0.4ms) SELECT "rails_workflow_operation_templates"."title" FROM "rails_workflow_operation_templates" WHERE "rails_workflow_operation_templates"."id" = 60
103887
+ Rendered /Users/maxim/workflow/rails_workflow/app/views/rails_workflow/operation_templates/index.html.slim within layouts/rails_workflow/application (30.3ms)
103888
+ Completed 200 OK in 128ms (Views: 114.2ms | ActiveRecord: 3.2ms)
103889
+
103890
+
103891
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-02-10 20:08:34 +0400
103892
+
103893
+
103894
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-02-10 20:08:34 +0400
103895
+
103896
+
103897
+ Started GET "/assets/bootstrap/bootstrap.css?body=1" for 127.0.0.1 at 2015-02-10 20:08:34 +0400
103898
+
103899
+
103900
+ Started GET "/assets/bootstrap/bootstrap.js?body=1" for 127.0.0.1 at 2015-02-10 20:08:34 +0400
103901
+
103902
+
103903
+ Started GET "/workflow/config/24/operation_templates/59" for 127.0.0.1 at 2015-02-10 20:08:35 +0400
103904
+ Processing by RailsWorkflow::OperationTemplatesController#show as HTML
103905
+ Parameters: {"process_template_id"=>"24", "id"=>"59"}
103906
+ User Load (1.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
103907
+ RailsWorkflow::OperationTemplate Load (0.6ms) SELECT "rails_workflow_operation_templates".* FROM "rails_workflow_operation_templates" WHERE "rails_workflow_operation_templates"."id" = $1 LIMIT 1 [["id", 59]]
103908
+ RailsWorkflow::ProcessTemplate Load (0.3ms) SELECT "rails_workflow_process_templates".* FROM "rails_workflow_process_templates" WHERE "rails_workflow_process_templates"."id" = $1 LIMIT 1 [["id", 24]]
103909
+ Rendered /Users/maxim/workflow/rails_workflow/app/views/application/_flash.html.slim (0.1ms)
103910
+ Rendered /Users/maxim/workflow/rails_workflow/app/views/rails_workflow/operation_templates/show.html.slim within layouts/rails_workflow/application (7.8ms)
103911
+ Completed 200 OK in 108ms (Views: 94.4ms | ActiveRecord: 2.2ms)
103912
+
103913
+
103914
+ Started GET "/assets/bootstrap/bootstrap.css?body=1" for 127.0.0.1 at 2015-02-10 20:08:35 +0400
103915
+
103916
+
103917
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-02-10 20:08:35 +0400
103918
+
103919
+
103920
+ Started GET "/assets/bootstrap/bootstrap.js?body=1" for 127.0.0.1 at 2015-02-10 20:08:35 +0400
103921
+
103922
+
103923
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-02-10 20:08:35 +0400
103924
+
103925
+
103926
+ Started GET "/workflow/config/21/operation_templates" for 127.0.0.1 at 2015-02-10 20:08:40 +0400
103927
+ Processing by RailsWorkflow::OperationTemplatesController#index as HTML
103928
+ Parameters: {"process_template_id"=>"21"}
103929
+ User Load (0.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
103930
+ RailsWorkflow::ProcessTemplate Load (0.4ms) SELECT "rails_workflow_process_templates".* FROM "rails_workflow_process_templates" WHERE "rails_workflow_process_templates"."id" = $1 LIMIT 1 [["id", 21]]
103931
+ Rendered /Users/maxim/workflow/rails_workflow/app/views/application/_flash.html.slim (0.1ms)
103932
+ RailsWorkflow::OperationTemplate Load (0.5ms) SELECT "rails_workflow_operation_templates".* FROM "rails_workflow_operation_templates" WHERE "rails_workflow_operation_templates"."process_template_id" = $1 ORDER BY "rails_workflow_operation_templates"."id" ASC [["process_template_id", 21]]
103933
+  (0.4ms) SELECT "rails_workflow_operation_templates"."title" FROM "rails_workflow_operation_templates" WHERE "rails_workflow_operation_templates"."id" = 54
103934
+ Rendered /Users/maxim/workflow/rails_workflow/app/views/rails_workflow/operation_templates/index.html.slim within layouts/rails_workflow/application (21.0ms)
103935
+ Completed 200 OK in 116ms (Views: 103.3ms | ActiveRecord: 1.9ms)
103936
+
103937
+
103938
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-02-10 20:08:40 +0400
103939
+
103940
+
103941
+ Started GET "/assets/bootstrap/bootstrap.js?body=1" for 127.0.0.1 at 2015-02-10 20:08:40 +0400
103942
+
103943
+
103944
+ Started GET "/assets/bootstrap/bootstrap.css?body=1" for 127.0.0.1 at 2015-02-10 20:08:40 +0400
103945
+
103946
+
103947
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-02-10 20:08:40 +0400
103948
+
103949
+
103950
+ Started GET "/workflow/config/22/operation_templates" for 127.0.0.1 at 2015-02-10 20:08:42 +0400
103951
+ Processing by RailsWorkflow::OperationTemplatesController#index as HTML
103952
+ Parameters: {"process_template_id"=>"22"}
103953
+ User Load (0.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
103954
+ RailsWorkflow::ProcessTemplate Load (0.3ms) SELECT "rails_workflow_process_templates".* FROM "rails_workflow_process_templates" WHERE "rails_workflow_process_templates"."id" = $1 LIMIT 1 [["id", 22]]
103955
+ Rendered /Users/maxim/workflow/rails_workflow/app/views/application/_flash.html.slim (0.1ms)
103956
+ RailsWorkflow::OperationTemplate Load (1.1ms) SELECT "rails_workflow_operation_templates".* FROM "rails_workflow_operation_templates" WHERE "rails_workflow_operation_templates"."process_template_id" = $1 ORDER BY "rails_workflow_operation_templates"."id" ASC [["process_template_id", 22]]
103957
+  (0.4ms) SELECT "rails_workflow_operation_templates"."title" FROM "rails_workflow_operation_templates" WHERE "rails_workflow_operation_templates"."id" = 56
103958
+ Rendered /Users/maxim/workflow/rails_workflow/app/views/rails_workflow/operation_templates/index.html.slim within layouts/rails_workflow/application (21.5ms)
103959
+ Completed 200 OK in 119ms (Views: 106.5ms | ActiveRecord: 2.6ms)
103960
+
103961
+
103962
+ Started GET "/assets/bootstrap/bootstrap.css?body=1" for 127.0.0.1 at 2015-02-10 20:08:42 +0400
103963
+
103964
+
103965
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-02-10 20:08:42 +0400
103966
+
103967
+
103968
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-02-10 20:08:42 +0400
103969
+
103970
+
103971
+ Started GET "/assets/bootstrap/bootstrap.js?body=1" for 127.0.0.1 at 2015-02-10 20:08:42 +0400
103972
+
103973
+
103974
+ Started GET "/workflow/config/23/operation_templates" for 127.0.0.1 at 2015-02-10 20:08:45 +0400
103975
+ Processing by RailsWorkflow::OperationTemplatesController#index as HTML
103976
+ Parameters: {"process_template_id"=>"23"}
103977
+ User Load (1.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
103978
+ RailsWorkflow::ProcessTemplate Load (0.3ms) SELECT "rails_workflow_process_templates".* FROM "rails_workflow_process_templates" WHERE "rails_workflow_process_templates"."id" = $1 LIMIT 1 [["id", 23]]
103979
+ Rendered /Users/maxim/workflow/rails_workflow/app/views/application/_flash.html.slim (0.1ms)
103980
+ RailsWorkflow::OperationTemplate Load (0.6ms) SELECT "rails_workflow_operation_templates".* FROM "rails_workflow_operation_templates" WHERE "rails_workflow_operation_templates"."process_template_id" = $1 ORDER BY "rails_workflow_operation_templates"."id" ASC [["process_template_id", 23]]
103981
+ Rendered /Users/maxim/workflow/rails_workflow/app/views/rails_workflow/operation_templates/index.html.slim within layouts/rails_workflow/application (12.7ms)
103982
+ Completed 200 OK in 114ms (Views: 102.2ms | ActiveRecord: 2.1ms)
103983
+
103984
+
103985
+ Started GET "/assets/bootstrap/bootstrap.css?body=1" for 127.0.0.1 at 2015-02-10 20:08:45 +0400
103986
+
103987
+
103988
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-02-10 20:08:45 +0400
103989
+
103990
+
103991
+ Started GET "/assets/bootstrap/bootstrap.js?body=1" for 127.0.0.1 at 2015-02-10 20:08:45 +0400
103992
+
103993
+
103994
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-02-10 20:08:45 +0400
103995
+
103996
+
103997
+ Started GET "/workflow/config/24/operation_templates" for 127.0.0.1 at 2015-02-10 20:08:48 +0400
103998
+ Processing by RailsWorkflow::OperationTemplatesController#index as HTML
103999
+ Parameters: {"process_template_id"=>"24"}
104000
+ User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
104001
+ RailsWorkflow::ProcessTemplate Load (0.4ms) SELECT "rails_workflow_process_templates".* FROM "rails_workflow_process_templates" WHERE "rails_workflow_process_templates"."id" = $1 LIMIT 1 [["id", 24]]
104002
+ Rendered /Users/maxim/workflow/rails_workflow/app/views/application/_flash.html.slim (0.2ms)
104003
+ RailsWorkflow::OperationTemplate Load (0.6ms) SELECT "rails_workflow_operation_templates".* FROM "rails_workflow_operation_templates" WHERE "rails_workflow_operation_templates"."process_template_id" = $1 ORDER BY "rails_workflow_operation_templates"."id" ASC [["process_template_id", 24]]
104004
+  (0.4ms) SELECT "rails_workflow_operation_templates"."title" FROM "rails_workflow_operation_templates" WHERE "rails_workflow_operation_templates"."id" = 59
104005
+ RailsWorkflow::ProcessTemplate Load (0.3ms) SELECT "rails_workflow_process_templates".* FROM "rails_workflow_process_templates" WHERE "rails_workflow_process_templates"."id" = $1 LIMIT 1 [["id", 25]]
104006
+  (0.4ms) SELECT "rails_workflow_operation_templates"."title" FROM "rails_workflow_operation_templates" WHERE "rails_workflow_operation_templates"."id" = 60
104007
+ Rendered /Users/maxim/workflow/rails_workflow/app/views/rails_workflow/operation_templates/index.html.slim within layouts/rails_workflow/application (29.1ms)
104008
+ Completed 200 OK in 121ms (Views: 107.0ms | ActiveRecord: 2.7ms)
104009
+
104010
+
104011
+ Started GET "/assets/bootstrap/bootstrap.css?body=1" for 127.0.0.1 at 2015-02-10 20:08:48 +0400
104012
+
104013
+
104014
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-02-10 20:08:48 +0400
104015
+
104016
+
104017
+ Started GET "/assets/bootstrap/bootstrap.js?body=1" for 127.0.0.1 at 2015-02-10 20:08:48 +0400
104018
+
104019
+
104020
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-02-10 20:08:48 +0400
104021
+
104022
+
104023
+ Started POST "/workflow/processes?process%5Btemplate_id%5D=24" for 127.0.0.1 at 2015-02-10 20:08:50 +0400
104024
+ Processing by RailsWorkflow::ProcessesController#create as HTML
104025
+ Parameters: {"authenticity_token"=>"0+3p2PICq1Sbo2ZSZSF1dOuhJXG1VssGcs96umTcbrc=", "process"=>{"template_id"=>"24"}}
104026
+ User Load (0.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
104027
+ RailsWorkflow::ProcessTemplate Load (0.4ms) SELECT "rails_workflow_process_templates".* FROM "rails_workflow_process_templates" WHERE "rails_workflow_process_templates"."id" = $1 LIMIT 1 [["id", 24]]
104028
+  (0.2ms) BEGIN
104029
+ SQL (0.5ms) INSERT INTO "rails_workflow_processes" ("created_at", "template_id", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-02-10 16:08:50.426653"], ["template_id", 24], ["updated_at", "2015-02-10 16:08:50.426653"]]
104030
+  (1.3ms) COMMIT
104031
+  (0.2ms) BEGIN
104032
+ SQL (0.4ms) UPDATE "rails_workflow_processes" SET "status" = $1, "title" = $2, "updated_at" = $3 WHERE "rails_workflow_processes"."id" = 271 [["status", 0], ["title", "Parent Process"], ["updated_at", "2015-02-10 16:08:50.435809"]]
104033
+ SQL (0.6ms) INSERT INTO "rails_workflow_contexts" ("body", "created_at", "parent_id", "parent_type", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "{}"], ["created_at", "2015-02-10 16:08:50.444777"], ["parent_id", 271], ["parent_type", "RailsWorkflow::Process"], ["updated_at", "2015-02-10 16:08:50.444777"]]
104034
+ RailsWorkflow::Context Load (0.4ms) SELECT "rails_workflow_contexts".* FROM "rails_workflow_contexts" WHERE "rails_workflow_contexts"."parent_id" = $1 AND "rails_workflow_contexts"."parent_type" = $2 LIMIT 1 [["parent_id", 271], ["parent_type", "RailsWorkflow::Process"]]
104035
+ RailsWorkflow::OperationTemplate Load (0.3ms) SELECT "rails_workflow_operation_templates".* FROM "rails_workflow_operation_templates" WHERE "rails_workflow_operation_templates"."process_template_id" = $1 AND "rails_workflow_operation_templates"."dependencies" IS NULL [["process_template_id", 24]]
104036
+ SQL (0.9ms) INSERT INTO "rails_workflow_operations" ("async", "created_at", "dependencies", "is_background", "process_id", "status", "template_id", "title", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id" [["async", "f"], ["created_at", "2015-02-10 16:08:50.462175"], ["dependencies", "[]"], ["is_background", "f"], ["process_id", 271], ["status", 0], ["template_id", 59], ["title", "Start Operation"], ["updated_at", "2015-02-10 16:08:50.462175"]]
104037
+ SQL (0.4ms) INSERT INTO "rails_workflow_contexts" ("body", "created_at", "parent_id", "parent_type", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "{}"], ["created_at", "2015-02-10 16:08:50.468961"], ["parent_id", 444], ["parent_type", "RailsWorkflow::Operation"], ["updated_at", "2015-02-10 16:08:50.468961"]]
104038
+ RailsWorkflow::Process Load (0.4ms) SELECT "rails_workflow_processes".* FROM "rails_workflow_processes" WHERE "rails_workflow_processes"."id" = $1 LIMIT 1 [["id", 271]]
104039
+  (0.5ms) COMMIT
104040
+  (0.3ms) SELECT COUNT(*) FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."process_id" = $1 [["process_id", 271]]
104041
+  (0.2ms) BEGIN
104042
+ SQL (0.3ms) UPDATE "rails_workflow_processes" SET "status" = $1, "updated_at" = $2 WHERE "rails_workflow_processes"."id" = 271 [["status", 1], ["updated_at", "2015-02-10 16:08:50.485500"]]
104043
+  (0.4ms) COMMIT
104044
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."process_id" = $1 AND "rails_workflow_operations"."status" = 0 [["process_id", 271]]
104045
+  (0.2ms) BEGIN
104046
+ SQL (0.3ms) UPDATE "rails_workflow_operations" SET "status" = $1, "updated_at" = $2 WHERE "rails_workflow_operations"."id" = 444 [["status", 1], ["updated_at", "2015-02-10 16:08:50.493726"]]
104047
+  (0.4ms) COMMIT
104048
+ RailsWorkflow::Operation Load (0.4ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."id" = $1 LIMIT 1 [["id", 444]]
104049
+  (0.2ms) BEGIN
104050
+  (0.2ms) COMMIT
104051
+  (0.2ms) BEGIN
104052
+ SQL (0.3ms) UPDATE "rails_workflow_operations" SET "completed_at" = $1, "status" = $2, "updated_at" = $3 WHERE "rails_workflow_operations"."id" = 444 [["completed_at", "2015-02-10 16:08:50.505777"], ["status", 2], ["updated_at", "2015-02-10 16:08:50.507369"]]
104053
+  (6.1ms) COMMIT
104054
+ RailsWorkflow::Process Load (0.4ms) SELECT "rails_workflow_processes".* FROM "rails_workflow_processes" WHERE "rails_workflow_processes"."id" = $1 LIMIT 1 [["id", 271]]
104055
+ RailsWorkflow::ProcessTemplate Load (0.3ms) SELECT "rails_workflow_process_templates".* FROM "rails_workflow_process_templates" WHERE "rails_workflow_process_templates"."id" = $1 LIMIT 1 [["id", 24]]
104056
+ RailsWorkflow::OperationTemplate Load (0.3ms) SELECT "rails_workflow_operation_templates".* FROM "rails_workflow_operation_templates" WHERE "rails_workflow_operation_templates"."process_template_id" = $1 [["process_template_id", 24]]
104057
+ RailsWorkflow::OperationTemplate Load (0.5ms) SELECT "rails_workflow_operation_templates".* FROM "rails_workflow_operation_templates" WHERE "rails_workflow_operation_templates"."id" = $1 LIMIT 1 [["id", 59]]
104058
+ RailsWorkflow::Operation Load (0.5ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."process_id" = $1 [["process_id", 271]]
104059
+ CACHE (0.1ms) SELECT "rails_workflow_operation_templates".* FROM "rails_workflow_operation_templates" WHERE "rails_workflow_operation_templates"."id" = $1 LIMIT 1 [["id", 59]]
104060
+ RailsWorkflow::Context Load (0.4ms) SELECT "rails_workflow_contexts".* FROM "rails_workflow_contexts" WHERE "rails_workflow_contexts"."parent_id" = $1 AND "rails_workflow_contexts"."parent_type" = $2 LIMIT 1 [["parent_id", 444], ["parent_type", "RailsWorkflow::Operation"]]
104061
+  (0.2ms) BEGIN
104062
+ SQL (0.5ms) INSERT INTO "rails_workflow_operations" ("async", "created_at", "dependencies", "is_background", "process_id", "status", "template_id", "title", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id" [["async", "f"], ["created_at", "2015-02-10 16:08:50.546387"], ["dependencies", "[{\"operation_id\":444,\"status\":2}]"], ["is_background", "f"], ["process_id", 271], ["status", 0], ["template_id", 60], ["title", "Child Process"], ["updated_at", "2015-02-10 16:08:50.546387"]]
104063
+ SQL (0.4ms) INSERT INTO "rails_workflow_contexts" ("body", "created_at", "parent_id", "parent_type", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "{}"], ["created_at", "2015-02-10 16:08:50.551387"], ["parent_id", 445], ["parent_type", "RailsWorkflow::Operation"], ["updated_at", "2015-02-10 16:08:50.551387"]]
104064
+  (0.5ms) COMMIT
104065
+ RailsWorkflow::ProcessTemplate Load (0.3ms) SELECT "rails_workflow_process_templates".* FROM "rails_workflow_process_templates" WHERE "rails_workflow_process_templates"."id" = $1 LIMIT 1 [["id", 25]]
104066
+ RailsWorkflow::ProcessTemplate Load (0.2ms) SELECT "rails_workflow_process_templates".* FROM "rails_workflow_process_templates" WHERE "rails_workflow_process_templates"."id" = $1 LIMIT 1 [["id", 25]]
104067
+  (0.2ms) BEGIN
104068
+ SQL (0.4ms) INSERT INTO "rails_workflow_processes" ("created_at", "template_id", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-02-10 16:08:50.563732"], ["template_id", 25], ["updated_at", "2015-02-10 16:08:50.563732"]]
104069
+  (0.5ms) COMMIT
104070
+  (0.2ms) BEGIN
104071
+ SQL (0.3ms) UPDATE "rails_workflow_processes" SET "status" = $1, "title" = $2, "updated_at" = $3 WHERE "rails_workflow_processes"."id" = 272 [["status", 0], ["title", "Child Process"], ["updated_at", "2015-02-10 16:08:50.569815"]]
104072
+ SQL (0.3ms) INSERT INTO "rails_workflow_contexts" ("body", "created_at", "parent_id", "parent_type", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "{}"], ["created_at", "2015-02-10 16:08:50.575752"], ["parent_id", 272], ["parent_type", "RailsWorkflow::Process"], ["updated_at", "2015-02-10 16:08:50.575752"]]
104073
+ RailsWorkflow::Context Load (0.4ms) SELECT "rails_workflow_contexts".* FROM "rails_workflow_contexts" WHERE "rails_workflow_contexts"."parent_id" = $1 AND "rails_workflow_contexts"."parent_type" = $2 LIMIT 1 [["parent_id", 272], ["parent_type", "RailsWorkflow::Process"]]
104074
+ RailsWorkflow::OperationTemplate Load (0.4ms) SELECT "rails_workflow_operation_templates".* FROM "rails_workflow_operation_templates" WHERE "rails_workflow_operation_templates"."process_template_id" = $1 AND "rails_workflow_operation_templates"."dependencies" IS NULL [["process_template_id", 25]]
104075
+ SQL (0.4ms) INSERT INTO "rails_workflow_operations" ("async", "created_at", "dependencies", "is_background", "process_id", "status", "template_id", "title", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id" [["async", "f"], ["created_at", "2015-02-10 16:08:50.590592"], ["dependencies", "[]"], ["is_background", "f"], ["process_id", 272], ["status", 0], ["template_id", 58], ["title", "Child Process Operation "], ["updated_at", "2015-02-10 16:08:50.590592"]]
104076
+ SQL (0.4ms) INSERT INTO "rails_workflow_contexts" ("body", "created_at", "parent_id", "parent_type", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "{}"], ["created_at", "2015-02-10 16:08:50.594999"], ["parent_id", 446], ["parent_type", "RailsWorkflow::Operation"], ["updated_at", "2015-02-10 16:08:50.594999"]]
104077
+ RailsWorkflow::Process Load (0.4ms) SELECT "rails_workflow_processes".* FROM "rails_workflow_processes" WHERE "rails_workflow_processes"."id" = $1 LIMIT 1 [["id", 272]]
104078
+  (0.4ms) COMMIT
104079
+  (0.2ms) BEGIN
104080
+ SQL (0.3ms) UPDATE "rails_workflow_operations" SET "child_process_id" = $1, "updated_at" = $2 WHERE "rails_workflow_operations"."id" = 445 [["child_process_id", 272], ["updated_at", "2015-02-10 16:08:50.608164"]]
104081
+  (0.4ms) COMMIT
104082
+  (0.2ms) BEGIN
104083
+ SQL (0.4ms) UPDATE "rails_workflow_operations" SET "status" = $1, "updated_at" = $2 WHERE "rails_workflow_operations"."id" = 445 [["status", 1], ["updated_at", "2015-02-10 16:08:50.613725"]]
104084
+  (0.5ms) COMMIT
104085
+ RailsWorkflow::Operation Load (0.4ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."id" = $1 LIMIT 1 [["id", 445]]
104086
+  (0.2ms) BEGIN
104087
+ RailsWorkflow::Process Load (0.2ms) SELECT "rails_workflow_processes".* FROM "rails_workflow_processes" WHERE "rails_workflow_processes"."id" = $1 LIMIT 1 [["id", 272]]
104088
+  (0.3ms) SELECT COUNT(*) FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."process_id" = $1 [["process_id", 272]]
104089
+ SQL (0.6ms) UPDATE "rails_workflow_processes" SET "status" = $1, "updated_at" = $2 WHERE "rails_workflow_processes"."id" = 272 [["status", 1], ["updated_at", "2015-02-10 16:08:50.628600"]]
104090
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."process_id" = $1 AND "rails_workflow_operations"."status" = 0 [["process_id", 272]]
104091
+ SQL (0.4ms) UPDATE "rails_workflow_operations" SET "status" = $1, "updated_at" = $2 WHERE "rails_workflow_operations"."id" = 446 [["status", 1], ["updated_at", "2015-02-10 16:08:50.636524"]]
104092
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."id" = $1 LIMIT 1 [["id", 446]]
104093
+  (0.2ms) SAVEPOINT active_record_1
104094
+  (0.6ms) RELEASE SAVEPOINT active_record_1
104095
+ SQL (0.4ms) UPDATE "rails_workflow_operations" SET "completed_at" = $1, "status" = $2, "updated_at" = $3 WHERE "rails_workflow_operations"."id" = 446 [["completed_at", "2015-02-10 16:08:50.644149"], ["status", 2], ["updated_at", "2015-02-10 16:08:50.645407"]]
104096
+ RailsWorkflow::Process Load (0.3ms) SELECT "rails_workflow_processes".* FROM "rails_workflow_processes" WHERE "rails_workflow_processes"."id" = $1 LIMIT 1 [["id", 272]]
104097
+ RailsWorkflow::ProcessTemplate Load (0.2ms) SELECT "rails_workflow_process_templates".* FROM "rails_workflow_process_templates" WHERE "rails_workflow_process_templates"."id" = $1 LIMIT 1 [["id", 25]]
104098
+ RailsWorkflow::OperationTemplate Load (0.3ms) SELECT "rails_workflow_operation_templates".* FROM "rails_workflow_operation_templates" WHERE "rails_workflow_operation_templates"."process_template_id" = $1 [["process_template_id", 25]]
104099
+ RailsWorkflow::Operation Load (0.4ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."process_id" = $1 [["process_id", 272]]
104100
+ RailsWorkflow::OperationTemplate Load (0.3ms) SELECT "rails_workflow_operation_templates".* FROM "rails_workflow_operation_templates" WHERE "rails_workflow_operation_templates"."id" = $1 LIMIT 1 [["id", 58]]
104101
+  (0.3ms) SELECT COUNT(*) FROM "rails_workflow_errors" WHERE "rails_workflow_errors"."parent_id" = $1 AND "rails_workflow_errors"."parent_type" = $2 AND (resolved is null or resolved = false) [["parent_id", 272], ["parent_type", "RailsWorkflow::Process"]]
104102
+ CACHE (0.1ms) SELECT COUNT(*) FROM "rails_workflow_errors" WHERE "rails_workflow_errors"."parent_id" = $1 AND "rails_workflow_errors"."parent_type" = $2 AND (resolved is null or resolved = false) [["parent_id", 272], ["parent_type", "RailsWorkflow::Process"]]
104103
+ SQL (0.4ms) UPDATE "rails_workflow_processes" SET "status" = $1, "updated_at" = $2 WHERE "rails_workflow_processes"."id" = 272 [["status", 2], ["updated_at", "2015-02-10 16:08:50.675890"]]
104104
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."child_process_id" = $1 LIMIT 1 [["child_process_id", 272]]
104105
+ RailsWorkflow::Process Load (0.2ms) SELECT "rails_workflow_processes".* FROM "rails_workflow_processes" WHERE "rails_workflow_processes"."id" = $1 LIMIT 1 [["id", 272]]
104106
+ SQL (0.4ms) UPDATE "rails_workflow_operations" SET "completed_at" = $1, "status" = $2, "updated_at" = $3 WHERE "rails_workflow_operations"."id" = 445 [["completed_at", "2015-02-10 16:08:50.684829"], ["status", 2], ["updated_at", "2015-02-10 16:08:50.686289"]]
104107
+ RailsWorkflow::Process Load (0.3ms) SELECT "rails_workflow_processes".* FROM "rails_workflow_processes" WHERE "rails_workflow_processes"."id" = $1 LIMIT 1 [["id", 271]]
104108
+ RailsWorkflow::ProcessTemplate Load (0.3ms) SELECT "rails_workflow_process_templates".* FROM "rails_workflow_process_templates" WHERE "rails_workflow_process_templates"."id" = $1 LIMIT 1 [["id", 24]]
104109
+ RailsWorkflow::OperationTemplate Load (0.4ms) SELECT "rails_workflow_operation_templates".* FROM "rails_workflow_operation_templates" WHERE "rails_workflow_operation_templates"."process_template_id" = $1 [["process_template_id", 24]]
104110
+ RailsWorkflow::OperationTemplate Load (0.3ms) SELECT "rails_workflow_operation_templates".* FROM "rails_workflow_operation_templates" WHERE "rails_workflow_operation_templates"."id" = $1 LIMIT 1 [["id", 60]]
104111
+ RailsWorkflow::Operation Load (0.5ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."process_id" = $1 [["process_id", 271]]
104112
+ RailsWorkflow::OperationTemplate Load (0.3ms) SELECT "rails_workflow_operation_templates".* FROM "rails_workflow_operation_templates" WHERE "rails_workflow_operation_templates"."id" = $1 LIMIT 1 [["id", 59]]
104113
+ CACHE (0.1ms) SELECT "rails_workflow_operation_templates".* FROM "rails_workflow_operation_templates" WHERE "rails_workflow_operation_templates"."id" = $1 LIMIT 1 [["id", 60]]
104114
+ RailsWorkflow::Context Load (0.4ms) SELECT "rails_workflow_contexts".* FROM "rails_workflow_contexts" WHERE "rails_workflow_contexts"."parent_id" = $1 AND "rails_workflow_contexts"."parent_type" = $2 LIMIT 1 [["parent_id", 445], ["parent_type", "RailsWorkflow::Operation"]]
104115
+ SQL (0.4ms) INSERT INTO "rails_workflow_operations" ("async", "created_at", "dependencies", "is_background", "process_id", "status", "template_id", "title", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id" [["async", "f"], ["created_at", "2015-02-10 16:08:50.721667"], ["dependencies", "[{\"operation_id\":445,\"status\":2}]"], ["is_background", "f"], ["process_id", 271], ["status", 0], ["template_id", 61], ["title", "Finish Operation"], ["updated_at", "2015-02-10 16:08:50.721667"]]
104116
+ SQL (0.3ms) INSERT INTO "rails_workflow_contexts" ("body", "created_at", "parent_id", "parent_type", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "{}"], ["created_at", "2015-02-10 16:08:50.726199"], ["parent_id", 447], ["parent_type", "RailsWorkflow::Operation"], ["updated_at", "2015-02-10 16:08:50.726199"]]
104117
+ SQL (0.3ms) UPDATE "rails_workflow_operations" SET "status" = $1, "updated_at" = $2 WHERE "rails_workflow_operations"."id" = 447 [["status", 1], ["updated_at", "2015-02-10 16:08:50.733886"]]
104118
+ RailsWorkflow::Operation Load (0.4ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."id" = $1 LIMIT 1 [["id", 447]]
104119
+  (0.2ms) SAVEPOINT active_record_1
104120
+  (0.2ms) RELEASE SAVEPOINT active_record_1
104121
+ SQL (0.3ms) UPDATE "rails_workflow_operations" SET "completed_at" = $1, "status" = $2, "updated_at" = $3 WHERE "rails_workflow_operations"."id" = 447 [["completed_at", "2015-02-10 16:08:50.740551"], ["status", 2], ["updated_at", "2015-02-10 16:08:50.741778"]]
104122
+ RailsWorkflow::Process Load (0.3ms) SELECT "rails_workflow_processes".* FROM "rails_workflow_processes" WHERE "rails_workflow_processes"."id" = $1 LIMIT 1 [["id", 271]]
104123
+ RailsWorkflow::ProcessTemplate Load (0.3ms) SELECT "rails_workflow_process_templates".* FROM "rails_workflow_process_templates" WHERE "rails_workflow_process_templates"."id" = $1 LIMIT 1 [["id", 24]]
104124
+ RailsWorkflow::OperationTemplate Load (0.3ms) SELECT "rails_workflow_operation_templates".* FROM "rails_workflow_operation_templates" WHERE "rails_workflow_operation_templates"."process_template_id" = $1 [["process_template_id", 24]]
104125
+ RailsWorkflow::OperationTemplate Load (0.2ms) SELECT "rails_workflow_operation_templates".* FROM "rails_workflow_operation_templates" WHERE "rails_workflow_operation_templates"."id" = $1 LIMIT 1 [["id", 61]]
104126
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."process_id" = $1 [["process_id", 271]]
104127
+ RailsWorkflow::OperationTemplate Load (0.3ms) SELECT "rails_workflow_operation_templates".* FROM "rails_workflow_operation_templates" WHERE "rails_workflow_operation_templates"."id" = $1 LIMIT 1 [["id", 59]]
104128
+ RailsWorkflow::OperationTemplate Load (0.3ms) SELECT "rails_workflow_operation_templates".* FROM "rails_workflow_operation_templates" WHERE "rails_workflow_operation_templates"."id" = $1 LIMIT 1 [["id", 60]]
104129
+ CACHE (0.1ms) SELECT "rails_workflow_operation_templates".* FROM "rails_workflow_operation_templates" WHERE "rails_workflow_operation_templates"."id" = $1 LIMIT 1 [["id", 61]]
104130
+  (0.4ms) SELECT COUNT(*) FROM "rails_workflow_errors" WHERE "rails_workflow_errors"."parent_id" = $1 AND "rails_workflow_errors"."parent_type" = $2 AND (resolved is null or resolved = false) [["parent_id", 271], ["parent_type", "RailsWorkflow::Process"]]
104131
+ CACHE (0.1ms) SELECT COUNT(*) FROM "rails_workflow_errors" WHERE "rails_workflow_errors"."parent_id" = $1 AND "rails_workflow_errors"."parent_type" = $2 AND (resolved is null or resolved = false) [["parent_id", 271], ["parent_type", "RailsWorkflow::Process"]]
104132
+ SQL (0.4ms) UPDATE "rails_workflow_processes" SET "status" = $1, "updated_at" = $2 WHERE "rails_workflow_processes"."id" = 271 [["status", 2], ["updated_at", "2015-02-10 16:08:50.781125"]]
104133
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."child_process_id" = $1 LIMIT 1 [["child_process_id", 271]]
104134
+  (1.1ms) COMMIT
104135
+  (0.2ms) BEGIN
104136
+  (0.2ms) COMMIT
104137
+ Redirected to http://localhost:3000/workflow/processes/271
104138
+ Completed 302 Found in 388ms (ActiveRecord: 44.2ms)
104139
+
104140
+
104141
+ Started GET "/workflow/processes/271" for 127.0.0.1 at 2015-02-10 20:08:50 +0400
104142
+ Processing by RailsWorkflow::ProcessesController#show as HTML
104143
+ Parameters: {"id"=>"271"}
104144
+ User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
104145
+ RailsWorkflow::Process Load (0.4ms) SELECT "rails_workflow_processes".* FROM "rails_workflow_processes" WHERE "rails_workflow_processes"."id" = $1 LIMIT 1 [["id", 271]]
104146
+ RailsWorkflow::Operation Load (0.4ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."child_process_id" = $1 LIMIT 1 [["child_process_id", 271]]
104147
+ Rendered /Users/maxim/workflow/rails_workflow/app/views/application/_flash.html.slim (0.3ms)
104148
+ RailsWorkflow::Operation Load (0.4ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."process_id" = $1 [["process_id", 271]]
104149
+ RailsWorkflow::OperationTemplate Load (0.3ms) SELECT "rails_workflow_operation_templates".* FROM "rails_workflow_operation_templates" WHERE "rails_workflow_operation_templates"."id" = $1 LIMIT 1 [["id", 59]]
104150
+ RailsWorkflow::OperationTemplate Load (0.3ms) SELECT "rails_workflow_operation_templates".* FROM "rails_workflow_operation_templates" WHERE "rails_workflow_operation_templates"."id" = $1 LIMIT 1 [["id", 60]]
104151
+ RailsWorkflow::OperationTemplate Load (0.4ms) SELECT "rails_workflow_operation_templates".* FROM "rails_workflow_operation_templates" WHERE "rails_workflow_operation_templates"."id" = $1 LIMIT 1 [["id", 61]]
104152
+ RailsWorkflow::ProcessTemplate Load (0.3ms) SELECT "rails_workflow_process_templates".* FROM "rails_workflow_process_templates" WHERE "rails_workflow_process_templates"."id" = $1 LIMIT 1 [["id", 24]]
104153
+ RailsWorkflow::OperationTemplate Load (0.4ms) SELECT "rails_workflow_operation_templates".* FROM "rails_workflow_operation_templates" WHERE "rails_workflow_operation_templates"."process_template_id" = $1 [["process_template_id", 24]]
104154
+ RailsWorkflow::Error Load (1.4ms) SELECT "rails_workflow_errors".* FROM "rails_workflow_errors" WHERE "rails_workflow_errors"."parent_id" = $1 AND "rails_workflow_errors"."parent_type" = $2 AND (resolved is null or resolved = false) [["parent_id", 271], ["parent_type", "RailsWorkflow::Process"]]
104155
+ RailsWorkflow::Context Load (0.3ms) SELECT "rails_workflow_contexts".* FROM "rails_workflow_contexts" WHERE "rails_workflow_contexts"."parent_id" = $1 AND "rails_workflow_contexts"."parent_type" = $2 LIMIT 1 [["parent_id", 271], ["parent_type", "RailsWorkflow::Process"]]
104156
+ Rendered /Users/maxim/workflow/rails_workflow/app/views/rails_workflow/processes/show.html.slim within layouts/rails_workflow/application (49.8ms)
104157
+ Completed 200 OK in 144ms (Views: 131.3ms | ActiveRecord: 5.2ms)
104158
+
104159
+
104160
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-02-10 20:08:51 +0400
104161
+
104162
+
104163
+ Started GET "/assets/bootstrap/bootstrap.css?body=1" for 127.0.0.1 at 2015-02-10 20:08:51 +0400
104164
+
104165
+
104166
+ Started GET "/assets/bootstrap/bootstrap.js?body=1" for 127.0.0.1 at 2015-02-10 20:08:51 +0400
104167
+
104168
+
104169
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-02-10 20:08:51 +0400
104170
+
104171
+
104172
+ Started GET "/workflow/processes/271/operations/445" for 127.0.0.1 at 2015-02-10 20:08:54 +0400
104173
+ Processing by RailsWorkflow::OperationsController#show as HTML
104174
+ Parameters: {"process_id"=>"271", "id"=>"445"}
104175
+ User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
104176
+ RailsWorkflow::Process Load (0.3ms) SELECT "rails_workflow_processes".* FROM "rails_workflow_processes" WHERE "rails_workflow_processes"."id" = $1 LIMIT 1 [["id", 271]]
104177
+ RailsWorkflow::Operation Load (0.8ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."id" = $1 LIMIT 1 [["id", 445]]
104178
+ RailsWorkflow::Process Load (0.3ms) SELECT "rails_workflow_processes".* FROM "rails_workflow_processes" WHERE "rails_workflow_processes"."id" = $1 LIMIT 1 [["id", 272]]
104179
+ Rendered /Users/maxim/workflow/rails_workflow/app/views/application/_flash.html.slim (0.2ms)
104180
+ RailsWorkflow::OperationTemplate Load (0.3ms) SELECT "rails_workflow_operation_templates".* FROM "rails_workflow_operation_templates" WHERE "rails_workflow_operation_templates"."id" = $1 LIMIT 1 [["id", 60]]
104181
+ RailsWorkflow::ProcessTemplate Load (0.3ms) SELECT "rails_workflow_process_templates".* FROM "rails_workflow_process_templates" WHERE "rails_workflow_process_templates"."id" = $1 LIMIT 1 [["id", 24]]
104182
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."id" = $1 LIMIT 1 [["id", 444]]
104183
+ CACHE (0.1ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."id" = $1 LIMIT 1 [["id", 444]]
104184
+ RailsWorkflow::Process Load (0.5ms) SELECT "rails_workflow_processes".* FROM "rails_workflow_processes" WHERE "rails_workflow_processes"."id" = $1 LIMIT 1 [["id", 271]]
104185
+  (0.6ms) SELECT "rails_workflow_operation_templates"."title" FROM "rails_workflow_operation_templates" WHERE "rails_workflow_operation_templates"."id" = 59
104186
+ CACHE (0.1ms) SELECT "rails_workflow_processes".* FROM "rails_workflow_processes" WHERE "rails_workflow_processes"."id" = $1 LIMIT 1 [["id", 271]]
104187
+ RailsWorkflow::Context Load (0.4ms) SELECT "rails_workflow_contexts".* FROM "rails_workflow_contexts" WHERE "rails_workflow_contexts"."parent_id" = $1 AND "rails_workflow_contexts"."parent_type" = $2 LIMIT 1 [["parent_id", 445], ["parent_type", "RailsWorkflow::Operation"]]
104188
+ RailsWorkflow::Error Load (0.4ms) SELECT "rails_workflow_errors".* FROM "rails_workflow_errors" WHERE "rails_workflow_errors"."parent_id" = $1 AND "rails_workflow_errors"."parent_type" = $2 AND (resolved is null or resolved = false) [["parent_id", 445], ["parent_type", "RailsWorkflow::Operation"]]
104189
+ Rendered /Users/maxim/workflow/rails_workflow/app/views/rails_workflow/operations/show.html.slim within layouts/rails_workflow/application (45.7ms)
104190
+ Completed 200 OK in 148ms (Views: 129.5ms | ActiveRecord: 4.8ms)
104191
+
104192
+
104193
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-02-10 20:08:54 +0400
104194
+
104195
+
104196
+ Started GET "/assets/bootstrap/bootstrap.css?body=1" for 127.0.0.1 at 2015-02-10 20:08:54 +0400
104197
+
104198
+
104199
+ Started GET "/assets/bootstrap/bootstrap.js?body=1" for 127.0.0.1 at 2015-02-10 20:08:54 +0400
104200
+
104201
+
104202
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-02-10 20:08:54 +0400
104203
+
104204
+
104205
+ Started GET "/workflow/processes/272" for 127.0.0.1 at 2015-02-10 20:08:57 +0400
104206
+ Processing by RailsWorkflow::ProcessesController#show as HTML
104207
+ Parameters: {"id"=>"272"}
104208
+ User Load (0.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
104209
+ RailsWorkflow::Process Load (0.4ms) SELECT "rails_workflow_processes".* FROM "rails_workflow_processes" WHERE "rails_workflow_processes"."id" = $1 LIMIT 1 [["id", 272]]
104210
+ RailsWorkflow::Operation Load (0.4ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."child_process_id" = $1 LIMIT 1 [["child_process_id", 272]]
104211
+ RailsWorkflow::Process Load (0.4ms) SELECT "rails_workflow_processes".* FROM "rails_workflow_processes" WHERE "rails_workflow_processes"."id" = $1 LIMIT 1 [["id", 271]]
104212
+ Rendered /Users/maxim/workflow/rails_workflow/app/views/application/_flash.html.slim (0.1ms)
104213
+ RailsWorkflow::Operation Load (0.3ms) SELECT "rails_workflow_operations".* FROM "rails_workflow_operations" WHERE "rails_workflow_operations"."process_id" = $1 [["process_id", 272]]
104214
+ RailsWorkflow::OperationTemplate Load (0.3ms) SELECT "rails_workflow_operation_templates".* FROM "rails_workflow_operation_templates" WHERE "rails_workflow_operation_templates"."id" = $1 LIMIT 1 [["id", 58]]
104215
+ RailsWorkflow::ProcessTemplate Load (0.3ms) SELECT "rails_workflow_process_templates".* FROM "rails_workflow_process_templates" WHERE "rails_workflow_process_templates"."id" = $1 LIMIT 1 [["id", 25]]
104216
+ RailsWorkflow::OperationTemplate Load (0.3ms) SELECT "rails_workflow_operation_templates".* FROM "rails_workflow_operation_templates" WHERE "rails_workflow_operation_templates"."process_template_id" = $1 [["process_template_id", 25]]
104217
+ RailsWorkflow::Error Load (0.4ms) SELECT "rails_workflow_errors".* FROM "rails_workflow_errors" WHERE "rails_workflow_errors"."parent_id" = $1 AND "rails_workflow_errors"."parent_type" = $2 AND (resolved is null or resolved = false) [["parent_id", 272], ["parent_type", "RailsWorkflow::Process"]]
104218
+ RailsWorkflow::Context Load (0.3ms) SELECT "rails_workflow_contexts".* FROM "rails_workflow_contexts" WHERE "rails_workflow_contexts"."parent_id" = $1 AND "rails_workflow_contexts"."parent_type" = $2 LIMIT 1 [["parent_id", 272], ["parent_type", "RailsWorkflow::Process"]]
104219
+ Rendered /Users/maxim/workflow/rails_workflow/app/views/rails_workflow/processes/show.html.slim within layouts/rails_workflow/application (40.2ms)
104220
+ Completed 200 OK in 138ms (Views: 122.2ms | ActiveRecord: 3.9ms)
104221
+
104222
+
104223
+ Started GET "/assets/bootstrap/bootstrap.css?body=1" for 127.0.0.1 at 2015-02-10 20:08:57 +0400
104224
+
104225
+
104226
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-02-10 20:08:57 +0400
104227
+
104228
+
104229
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-02-10 20:08:57 +0400
104230
+
104231
+
104232
+ Started GET "/assets/bootstrap/bootstrap.js?body=1" for 127.0.0.1 at 2015-02-10 20:08:57 +0400