bumbleworks-rails 0.0.5 → 0.0.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (24) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/bumbleworks/rails/application_controller.rb +2 -0
  3. data/app/controllers/bumbleworks_controller.rb +1 -1
  4. data/app/helpers/bumbleworks/rails/application_helper.rb +19 -0
  5. data/lib/bumbleworks/rails/version.rb +1 -1
  6. data/lib/generators/bumbleworks/rails/install/install_generator.rb +1 -1
  7. data/spec/dummy/config/routes.rb +3 -0
  8. data/spec/dummy/log/development.log +419 -0
  9. data/spec/dummy/log/test.log +416 -0
  10. data/spec/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  11. data/spec/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  12. data/spec/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  13. data/spec/dummy/tmp/cache/assets/development/sprockets/71172e96e7c0e5ebbb85f7e4033153f2 +0 -0
  14. data/spec/dummy/tmp/cache/assets/development/sprockets/84dba161ef4752a6096ee4110e0a1363 +0 -0
  15. data/spec/dummy/tmp/cache/assets/development/sprockets/b20d56f0fb398376db4d80f8618ac9a5 +0 -0
  16. data/spec/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  17. data/spec/dummy/tmp/cache/assets/development/sprockets/d5166cc60cbc1f12e594d69797626618 +0 -0
  18. data/spec/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  19. data/spec/dummy/tmp/cache/assets/development/sprockets/e039fdcdb2bb62f89fe446781ecc227f +0 -0
  20. data/spec/dummy/tmp/cache/assets/development/sprockets/ea229e71c69224f5d0de29dc3aa7f20a +0 -0
  21. data/spec/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  22. data/spec/helpers/application_helper_spec.rb +59 -0
  23. metadata +43 -3
  24. data/app/views/layouts/bumbleworks/rails/application.html.erb +0 -14
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f29b9c25c2105bd7cec1f1c0f9b99633198590f3
4
- data.tar.gz: e19f8c421707937ca4380a03ac3dec3103c2f416
3
+ metadata.gz: 11c30dff9a4c4f588095ee4bf5b38434f7df4249
4
+ data.tar.gz: 8835cec1767225bc1866254721c74c94cc0e0f4b
5
5
  SHA512:
6
- metadata.gz: d43382960ff8de69337d0b4e57212f3090566045efd9afac8fa438d2de4359127f274feaeb8794af19813754ca5016e771aab2f26587d925e2f1a10c8c7ddeaf
7
- data.tar.gz: 566a791c9f8c873e2fe27b6aa32dffffa68729ef21e3725c00cdca5240f54f611a2fa3910e7ebe6f7747c96a2adff500e3e4d4aec76f2982f1c341bbe1438107
6
+ metadata.gz: ac1e24c6ca6933b22a4aeaab1abbaa72be5b18685ad2afafddadb404c484208bdc8202b665860d952dc2f80a676fc84afbd8cf0f44fe09ab55b6af1abacce741
7
+ data.tar.gz: c3699a6f15fec605df87c1bbf4a22f401d12f710a286772d18ee6e6130a70e6c94a9bf4d09038743852429855ec151c6c72c9d1f068f421c3cc24fa962521760
@@ -0,0 +1,2 @@
1
+ class Bumbleworks::Rails::ApplicationController < ApplicationController
2
+ end
@@ -1,4 +1,4 @@
1
- class BumbleworksController < ApplicationController
1
+ class BumbleworksController < Bumbleworks::Rails::ApplicationController
2
2
  include Bumbleworks::Rails::TasksHelper
3
3
 
4
4
  def render_unauthorized
@@ -1,6 +1,25 @@
1
1
  module Bumbleworks
2
2
  module Rails
3
3
  module ApplicationHelper
4
+ def method_missing method, *args, &block
5
+ if method_is_main_app_url_helper?(method)
6
+ main_app.send(method, *args)
7
+ else
8
+ super
9
+ end
10
+ end
11
+
12
+ def respond_to?(method)
13
+ if method_is_main_app_url_helper?(method)
14
+ true
15
+ else
16
+ super
17
+ end
18
+ end
19
+
20
+ def method_is_main_app_url_helper?(method)
21
+ method.to_s =~ /(_path|_url)$/ && main_app.respond_to?(method)
22
+ end
4
23
  end
5
24
  end
6
25
  end
@@ -1,5 +1,5 @@
1
1
  module Bumbleworks
2
2
  module Rails
3
- VERSION = "0.0.5"
3
+ VERSION = "0.0.6"
4
4
  end
5
5
  end
@@ -95,7 +95,7 @@ Let's install Bumbleworks into your Rails app!
95
95
  File.read(find_in_source_paths('config/routes.rb'))
96
96
  end
97
97
  prepend_file 'config/routes.rb' do
98
- "require 'bumbleworks/gui'"
98
+ "require 'bumbleworks/gui'\n\n"
99
99
  end
100
100
  end
101
101
 
@@ -13,6 +13,9 @@ Rails.application.routes.draw do
13
13
  end
14
14
  end
15
15
 
16
+ resources :silvo_blooms
17
+ resources :fridgets
18
+
16
19
  mount Bumbleworks::Gui::RackApp => 'bw'
17
20
 
18
21
  root 'bumbleworks/rails/tasks#index'
@@ -21591,3 +21591,422 @@ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-06-25 10:04:5
21591
21591
 
21592
21592
 
21593
21593
  Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-06-25 10:04:54 -0700
21594
+
21595
+
21596
+ Started GET "/" for 127.0.0.1 at 2014-06-26 13:04:51 -0700
21597
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
21598
+ Rendered /Users/ravi/bumbleworks/bumbleworks-rails/app/views/bumbleworks/rails/tasks/_table.html.erb (78.9ms)
21599
+ Rendered /Users/ravi/bumbleworks/bumbleworks-rails/app/views/bumbleworks/rails/tasks/_table.html.erb (0.3ms)
21600
+ Rendered /Users/ravi/bumbleworks/bumbleworks-rails/app/views/bumbleworks/rails/tasks/index.html.erb within layouts/application (88.3ms)
21601
+ Completed 200 OK in 127ms (Views: 124.3ms | ActiveRecord: 0.0ms)
21602
+
21603
+
21604
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-06-26 13:04:51 -0700
21605
+
21606
+
21607
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-06-26 13:04:51 -0700
21608
+
21609
+
21610
+ Started GET "/fridgets/1/tasks/0_0_1!4d21c177d3d06a548ecf79d11f533546!20140626-2004-mopogugi-rozeduga" for 127.0.0.1 at 2014-06-26 13:05:59 -0700
21611
+ Processing by Bumbleworks::Rails::TasksController#show as HTML
21612
+ Parameters: {"entity_type"=>"fridgets", "entity_id"=>"1", "id"=>"0_0_1!4d21c177d3d06a548ecf79d11f533546!20140626-2004-mopogugi-rozeduga"}
21613
+ Rendered fridgets/tasks/custom/_chew_on_quandary.html.erb (0.6ms)
21614
+ Rendered fridgets/tasks/show.html.erb within layouts/application (4.5ms)
21615
+ Completed 200 OK in 14ms (Views: 12.2ms | ActiveRecord: 0.0ms)
21616
+
21617
+
21618
+ Started GET "/fridgets/2/tasks/0_0_1!0bf5246cf98962e8a4551cc088dc7e93!20140626-2004-bupebaso-noyadota" for 127.0.0.1 at 2014-06-26 13:06:02 -0700
21619
+ Processing by Bumbleworks::Rails::TasksController#show as HTML
21620
+ Parameters: {"entity_type"=>"fridgets", "entity_id"=>"2", "id"=>"0_0_1!0bf5246cf98962e8a4551cc088dc7e93!20140626-2004-bupebaso-noyadota"}
21621
+ Rendered fridgets/tasks/custom/_chew_on_quandary.html.erb (0.0ms)
21622
+ Rendered fridgets/tasks/show.html.erb within layouts/application (1.5ms)
21623
+ Completed 200 OK in 20ms (Views: 6.4ms | ActiveRecord: 0.0ms)
21624
+
21625
+
21626
+ Started GET "/silvo_blooms/2/tasks/0_0_2!a031b442e88a315ce66ba5cb0c963df0!20140626-2004-dubebuhi-nirikuji" for 127.0.0.1 at 2014-06-26 13:06:06 -0700
21627
+ Processing by Bumbleworks::Rails::TasksController#show as HTML
21628
+ Parameters: {"entity_type"=>"silvo_blooms", "entity_id"=>"2", "id"=>"0_0_2!a031b442e88a315ce66ba5cb0c963df0!20140626-2004-dubebuhi-nirikuji"}
21629
+ Rendered /Users/ravi/bumbleworks/bumbleworks-rails/app/views/bumbleworks/rails/tasks/show.html.erb within layouts/application (11.6ms)
21630
+ Completed 500 Internal Server Error in 19ms
21631
+
21632
+ ActionView::Template::Error (undefined method `silvo_bloom_path' for #<ActionDispatch::Routing::RoutesProxy:0x007f9ff5a200c0>):
21633
+ 1: <div class="bread-crumb">
21634
+ 2: <% if @task.has_entity? %>
21635
+ 3: <a id="<%= @task.entity_fields[:type].underscore %>_id" href="<%= main_app.send("#{@task.entity.class.entity_type}_path", @task.entity) %>"><%= @task.entity_fields(:humanize => true)[:type] %>: <%= @task.entity.to_param %></a> TASK:
21636
+ 4: <% end %>
21637
+ 5: <%= task_name(@task) %>
21638
+ 6: </div>
21639
+ actionpack (4.0.2) lib/action_dispatch/routing/routes_proxy.rb:36:in `method_missing'
21640
+ /Users/ravi/bumbleworks/bumbleworks-rails/app/views/bumbleworks/rails/tasks/show.html.erb:3:in `___sers_ravi_bumbleworks_bumbleworks_rails_app_views_bumbleworks_rails_tasks_show_html_erb___3731754706099116638_70162498919680'
21641
+ actionpack (4.0.2) lib/action_view/template.rb:143:in `block in render'
21642
+ activesupport (4.0.2) lib/active_support/notifications.rb:161:in `instrument'
21643
+ actionpack (4.0.2) lib/action_view/template.rb:141:in `render'
21644
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template'
21645
+ actionpack (4.0.2) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
21646
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument'
21647
+ activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
21648
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument'
21649
+ actionpack (4.0.2) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
21650
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template'
21651
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout'
21652
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:47:in `render_template'
21653
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:17:in `render'
21654
+ actionpack (4.0.2) lib/action_view/renderer/renderer.rb:42:in `render_template'
21655
+ actionpack (4.0.2) lib/action_view/renderer/renderer.rb:23:in `render'
21656
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:127:in `_render_template'
21657
+ actionpack (4.0.2) lib/action_controller/metal/streaming.rb:219:in `_render_template'
21658
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:120:in `render_to_body'
21659
+ actionpack (4.0.2) lib/action_controller/metal/rendering.rb:33:in `render_to_body'
21660
+ actionpack (4.0.2) lib/action_controller/metal/renderers.rb:26:in `render_to_body'
21661
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:97:in `render'
21662
+ actionpack (4.0.2) lib/action_controller/metal/rendering.rb:16:in `render'
21663
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
21664
+ activesupport (4.0.2) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
21665
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/benchmark.rb:294:in `realtime'
21666
+ activesupport (4.0.2) lib/active_support/core_ext/benchmark.rb:12:in `ms'
21667
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
21668
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
21669
+ activerecord (4.0.2) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
21670
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:40:in `render'
21671
+ /Users/ravi/bumbleworks/bumbleworks-rails/app/controllers/bumbleworks/rails/tasks_controller.rb:6:in `show'
21672
+ actionpack (4.0.2) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
21673
+ actionpack (4.0.2) lib/abstract_controller/base.rb:189:in `process_action'
21674
+ actionpack (4.0.2) lib/action_controller/metal/rendering.rb:10:in `process_action'
21675
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
21676
+ activesupport (4.0.2) lib/active_support/callbacks.rb:403:in `_run__2869743019480008821__process_action__callbacks'
21677
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
21678
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:17:in `process_action'
21679
+ actionpack (4.0.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
21680
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
21681
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument'
21682
+ activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
21683
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument'
21684
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
21685
+ actionpack (4.0.2) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
21686
+ activerecord (4.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
21687
+ actionpack (4.0.2) lib/abstract_controller/base.rb:136:in `process'
21688
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:44:in `process'
21689
+ actionpack (4.0.2) lib/action_controller/metal.rb:195:in `dispatch'
21690
+ actionpack (4.0.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
21691
+ actionpack (4.0.2) lib/action_controller/metal.rb:231:in `block in action'
21692
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `call'
21693
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
21694
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:48:in `call'
21695
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
21696
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
21697
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
21698
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
21699
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
21700
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
21701
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
21702
+ actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
21703
+ actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call'
21704
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
21705
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
21706
+ actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call'
21707
+ activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call'
21708
+ activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
21709
+ activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
21710
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
21711
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__3380195049387004579__call__callbacks'
21712
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
21713
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
21714
+ actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
21715
+ actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
21716
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
21717
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
21718
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
21719
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
21720
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
21721
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
21722
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
21723
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
21724
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
21725
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
21726
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
21727
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
21728
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
21729
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
21730
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
21731
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
21732
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
21733
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
21734
+ thin (1.6.2) lib/thin/connection.rb:86:in `block in pre_process'
21735
+ thin (1.6.2) lib/thin/connection.rb:84:in `catch'
21736
+ thin (1.6.2) lib/thin/connection.rb:84:in `pre_process'
21737
+ thin (1.6.2) lib/thin/connection.rb:53:in `process'
21738
+ thin (1.6.2) lib/thin/connection.rb:39:in `receive_data'
21739
+ eventmachine (1.0.3) lib/eventmachine.rb:187:in `run_machine'
21740
+ eventmachine (1.0.3) lib/eventmachine.rb:187:in `run'
21741
+ thin (1.6.2) lib/thin/backends/base.rb:73:in `start'
21742
+ thin (1.6.2) lib/thin/server.rb:162:in `start'
21743
+ rack (1.5.2) lib/rack/handler/thin.rb:16:in `run'
21744
+ rack (1.5.2) lib/rack/server.rb:264:in `start'
21745
+ railties (4.0.2) lib/rails/commands/server.rb:84:in `start'
21746
+ railties (4.0.2) lib/rails/commands.rb:76:in `block in <top (required)>'
21747
+ railties (4.0.2) lib/rails/commands.rb:71:in `tap'
21748
+ railties (4.0.2) lib/rails/commands.rb:71:in `<top (required)>'
21749
+ bin/rails:4:in `require'
21750
+ bin/rails:4:in `<main>'
21751
+
21752
+
21753
+ Rendered /Users/ravi/.gem/ruby/2.1.1/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.0ms)
21754
+ Rendered /Users/ravi/.gem/ruby/2.1.1/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.4ms)
21755
+ Rendered /Users/ravi/.gem/ruby/2.1.1/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (16.1ms)
21756
+
21757
+
21758
+ Started GET "/silvo_blooms/2/tasks/0_0_2!a031b442e88a315ce66ba5cb0c963df0!20140626-2004-dubebuhi-nirikuji" for 127.0.0.1 at 2014-06-26 13:06:11 -0700
21759
+ Processing by Bumbleworks::Rails::TasksController#show as HTML
21760
+ Parameters: {"entity_type"=>"silvo_blooms", "entity_id"=>"2", "id"=>"0_0_2!a031b442e88a315ce66ba5cb0c963df0!20140626-2004-dubebuhi-nirikuji"}
21761
+ Rendered /Users/ravi/bumbleworks/bumbleworks-rails/app/views/bumbleworks/rails/tasks/show.html.erb within layouts/application (8.2ms)
21762
+ Completed 500 Internal Server Error in 15ms
21763
+
21764
+ ActionView::Template::Error (undefined method `silvo_bloom_path' for #<ActionDispatch::Routing::RoutesProxy:0x007f9ff2725850>):
21765
+ 1: <div class="bread-crumb">
21766
+ 2: <% if @task.has_entity? %>
21767
+ 3: <a id="<%= @task.entity_fields[:type].underscore %>_id" href="<%= main_app.send("#{@task.entity.class.entity_type}_path", @task.entity) %>"><%= @task.entity_fields(:humanize => true)[:type] %>: <%= @task.entity.to_param %></a> TASK:
21768
+ 4: <% end %>
21769
+ 5: <%= task_name(@task) %>
21770
+ 6: </div>
21771
+ actionpack (4.0.2) lib/action_dispatch/routing/routes_proxy.rb:36:in `method_missing'
21772
+ /Users/ravi/bumbleworks/bumbleworks-rails/app/views/bumbleworks/rails/tasks/show.html.erb:3:in `___sers_ravi_bumbleworks_bumbleworks_rails_app_views_bumbleworks_rails_tasks_show_html_erb___3731754706099116638_70162498919680'
21773
+ actionpack (4.0.2) lib/action_view/template.rb:143:in `block in render'
21774
+ activesupport (4.0.2) lib/active_support/notifications.rb:161:in `instrument'
21775
+ actionpack (4.0.2) lib/action_view/template.rb:141:in `render'
21776
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template'
21777
+ actionpack (4.0.2) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
21778
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument'
21779
+ activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
21780
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument'
21781
+ actionpack (4.0.2) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
21782
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template'
21783
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout'
21784
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:47:in `render_template'
21785
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:17:in `render'
21786
+ actionpack (4.0.2) lib/action_view/renderer/renderer.rb:42:in `render_template'
21787
+ actionpack (4.0.2) lib/action_view/renderer/renderer.rb:23:in `render'
21788
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:127:in `_render_template'
21789
+ actionpack (4.0.2) lib/action_controller/metal/streaming.rb:219:in `_render_template'
21790
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:120:in `render_to_body'
21791
+ actionpack (4.0.2) lib/action_controller/metal/rendering.rb:33:in `render_to_body'
21792
+ actionpack (4.0.2) lib/action_controller/metal/renderers.rb:26:in `render_to_body'
21793
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:97:in `render'
21794
+ actionpack (4.0.2) lib/action_controller/metal/rendering.rb:16:in `render'
21795
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
21796
+ activesupport (4.0.2) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
21797
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/benchmark.rb:294:in `realtime'
21798
+ activesupport (4.0.2) lib/active_support/core_ext/benchmark.rb:12:in `ms'
21799
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
21800
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
21801
+ activerecord (4.0.2) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
21802
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:40:in `render'
21803
+ /Users/ravi/bumbleworks/bumbleworks-rails/app/controllers/bumbleworks/rails/tasks_controller.rb:6:in `show'
21804
+ actionpack (4.0.2) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
21805
+ actionpack (4.0.2) lib/abstract_controller/base.rb:189:in `process_action'
21806
+ actionpack (4.0.2) lib/action_controller/metal/rendering.rb:10:in `process_action'
21807
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
21808
+ activesupport (4.0.2) lib/active_support/callbacks.rb:403:in `_run__2869743019480008821__process_action__callbacks'
21809
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
21810
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:17:in `process_action'
21811
+ actionpack (4.0.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
21812
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
21813
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument'
21814
+ activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
21815
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument'
21816
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
21817
+ actionpack (4.0.2) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
21818
+ activerecord (4.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
21819
+ actionpack (4.0.2) lib/abstract_controller/base.rb:136:in `process'
21820
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:44:in `process'
21821
+ actionpack (4.0.2) lib/action_controller/metal.rb:195:in `dispatch'
21822
+ actionpack (4.0.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
21823
+ actionpack (4.0.2) lib/action_controller/metal.rb:231:in `block in action'
21824
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `call'
21825
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
21826
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:48:in `call'
21827
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
21828
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
21829
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
21830
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
21831
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
21832
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
21833
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
21834
+ actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
21835
+ actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call'
21836
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
21837
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
21838
+ actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call'
21839
+ activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call'
21840
+ activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
21841
+ activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
21842
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
21843
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__3380195049387004579__call__callbacks'
21844
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
21845
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
21846
+ actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
21847
+ actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
21848
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
21849
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
21850
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
21851
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
21852
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
21853
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
21854
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
21855
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
21856
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
21857
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
21858
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
21859
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
21860
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
21861
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
21862
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
21863
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
21864
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
21865
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
21866
+ thin (1.6.2) lib/thin/connection.rb:86:in `block in pre_process'
21867
+ thin (1.6.2) lib/thin/connection.rb:84:in `catch'
21868
+ thin (1.6.2) lib/thin/connection.rb:84:in `pre_process'
21869
+ thin (1.6.2) lib/thin/connection.rb:53:in `process'
21870
+ thin (1.6.2) lib/thin/connection.rb:39:in `receive_data'
21871
+ eventmachine (1.0.3) lib/eventmachine.rb:187:in `run_machine'
21872
+ eventmachine (1.0.3) lib/eventmachine.rb:187:in `run'
21873
+ thin (1.6.2) lib/thin/backends/base.rb:73:in `start'
21874
+ thin (1.6.2) lib/thin/server.rb:162:in `start'
21875
+ rack (1.5.2) lib/rack/handler/thin.rb:16:in `run'
21876
+ rack (1.5.2) lib/rack/server.rb:264:in `start'
21877
+ railties (4.0.2) lib/rails/commands/server.rb:84:in `start'
21878
+ railties (4.0.2) lib/rails/commands.rb:76:in `block in <top (required)>'
21879
+ railties (4.0.2) lib/rails/commands.rb:71:in `tap'
21880
+ railties (4.0.2) lib/rails/commands.rb:71:in `<top (required)>'
21881
+ bin/rails:4:in `require'
21882
+ bin/rails:4:in `<main>'
21883
+
21884
+
21885
+ Rendered /Users/ravi/.gem/ruby/2.1.1/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.3ms)
21886
+ Rendered /Users/ravi/.gem/ruby/2.1.1/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.7ms)
21887
+ Rendered /Users/ravi/.gem/ruby/2.1.1/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (13.2ms)
21888
+
21889
+
21890
+ Started GET "/" for 127.0.0.1 at 2014-06-26 13:06:37 -0700
21891
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
21892
+ Rendered /Users/ravi/bumbleworks/bumbleworks-rails/app/views/bumbleworks/rails/tasks/_table.html.erb (29.7ms)
21893
+ Rendered /Users/ravi/bumbleworks/bumbleworks-rails/app/views/bumbleworks/rails/tasks/_table.html.erb (0.3ms)
21894
+ Rendered /Users/ravi/bumbleworks/bumbleworks-rails/app/views/bumbleworks/rails/tasks/index.html.erb within layouts/application (32.3ms)
21895
+ Completed 200 OK in 39ms (Views: 37.1ms | ActiveRecord: 0.0ms)
21896
+
21897
+
21898
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-06-26 13:06:38 -0700
21899
+
21900
+
21901
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-06-26 13:06:38 -0700
21902
+
21903
+
21904
+ Started GET "/silvo_blooms/1/tasks/0_0_2!71487743c0425937b50c7d4af5d3ef5d!20140626-2004-pifuwo-jozobeyu" for 127.0.0.1 at 2014-06-26 13:06:38 -0700
21905
+ Processing by Bumbleworks::Rails::TasksController#show as HTML
21906
+ Parameters: {"entity_type"=>"silvo_blooms", "entity_id"=>"1", "id"=>"0_0_2!71487743c0425937b50c7d4af5d3ef5d!20140626-2004-pifuwo-jozobeyu"}
21907
+ Rendered /Users/ravi/bumbleworks/bumbleworks-rails/app/views/bumbleworks/rails/tasks/show.html.erb within layouts/application (4.4ms)
21908
+ Completed 200 OK in 13ms (Views: 11.2ms | ActiveRecord: 0.0ms)
21909
+
21910
+
21911
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-06-26 13:06:38 -0700
21912
+
21913
+
21914
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-06-26 13:06:38 -0700
21915
+
21916
+
21917
+ Started GET "/" for 127.0.0.1 at 2014-06-26 13:07:04 -0700
21918
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
21919
+ Rendered /Users/ravi/bumbleworks/bumbleworks-rails/app/views/bumbleworks/rails/tasks/_table.html.erb (35.1ms)
21920
+ Rendered /Users/ravi/bumbleworks/bumbleworks-rails/app/views/bumbleworks/rails/tasks/_table.html.erb (0.2ms)
21921
+ Rendered /Users/ravi/bumbleworks/bumbleworks-rails/app/views/bumbleworks/rails/tasks/index.html.erb within layouts/application (37.6ms)
21922
+ Completed 200 OK in 45ms (Views: 44.4ms | ActiveRecord: 0.0ms)
21923
+
21924
+
21925
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-06-26 13:07:04 -0700
21926
+
21927
+
21928
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-06-26 13:07:04 -0700
21929
+
21930
+
21931
+ Started GET "/" for 127.0.0.1 at 2014-06-26 13:07:12 -0700
21932
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
21933
+ Rendered /Users/ravi/bumbleworks/bumbleworks-rails/app/views/bumbleworks/rails/tasks/_table.html.erb (29.8ms)
21934
+ Rendered /Users/ravi/bumbleworks/bumbleworks-rails/app/views/bumbleworks/rails/tasks/_table.html.erb (0.5ms)
21935
+ Rendered /Users/ravi/bumbleworks/bumbleworks-rails/app/views/bumbleworks/rails/tasks/index.html.erb within layouts/application (33.2ms)
21936
+ Completed 200 OK in 39ms (Views: 38.5ms | ActiveRecord: 0.0ms)
21937
+
21938
+
21939
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-06-26 13:07:12 -0700
21940
+
21941
+
21942
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-06-26 13:07:12 -0700
21943
+
21944
+
21945
+ Started GET "/tasks" for 127.0.0.1 at 2014-06-26 13:08:58 -0700
21946
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
21947
+ Rendered /Users/ravi/bumbleworks/bumbleworks-rails/app/views/bumbleworks/rails/tasks/_table.html.erb (47.2ms)
21948
+ Rendered /Users/ravi/bumbleworks/bumbleworks-rails/app/views/bumbleworks/rails/tasks/_table.html.erb (0.4ms)
21949
+ Rendered /Users/ravi/bumbleworks/bumbleworks-rails/app/views/bumbleworks/rails/tasks/index.html.erb within layouts/bumbleworks/rails/application (50.9ms)
21950
+ Completed 200 OK in 108ms (Views: 105.8ms | ActiveRecord: 0.0ms)
21951
+
21952
+
21953
+ Started GET "/assets/bumbleworks/rails/application.css?body=1" for 127.0.0.1 at 2014-06-26 13:08:58 -0700
21954
+
21955
+
21956
+ Started GET "/assets/bumbleworks/rails/application.js?body=1" for 127.0.0.1 at 2014-06-26 13:08:58 -0700
21957
+
21958
+
21959
+ Started GET "/tasks" for 127.0.0.1 at 2014-06-26 13:09:07 -0700
21960
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
21961
+ Rendered /Users/ravi/bumbleworks/bumbleworks-rails/app/views/bumbleworks/rails/tasks/_table.html.erb (33.3ms)
21962
+ Rendered /Users/ravi/bumbleworks/bumbleworks-rails/app/views/bumbleworks/rails/tasks/_table.html.erb (0.3ms)
21963
+ Rendered /Users/ravi/bumbleworks/bumbleworks-rails/app/views/bumbleworks/rails/tasks/index.html.erb within layouts/bumbleworks/rails/application (36.5ms)
21964
+ Completed 200 OK in 51ms (Views: 50.3ms | ActiveRecord: 0.0ms)
21965
+
21966
+
21967
+ Started GET "/assets/bumbleworks/rails/application.css?body=1" for 127.0.0.1 at 2014-06-26 13:09:07 -0700
21968
+
21969
+
21970
+ Started GET "/assets/bumbleworks/rails/application.js?body=1" for 127.0.0.1 at 2014-06-26 13:09:07 -0700
21971
+
21972
+
21973
+ Started GET "/tasks" for 127.0.0.1 at 2014-06-26 13:09:56 -0700
21974
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
21975
+ Rendered /Users/ravi/bumbleworks/bumbleworks-rails/app/views/bumbleworks/rails/tasks/_table.html.erb (33.6ms)
21976
+ Rendered /Users/ravi/bumbleworks/bumbleworks-rails/app/views/bumbleworks/rails/tasks/_table.html.erb (0.3ms)
21977
+ Rendered /Users/ravi/bumbleworks/bumbleworks-rails/app/views/bumbleworks/rails/tasks/index.html.erb within layouts/bumbleworks (37.9ms)
21978
+ Completed 200 OK in 46ms (Views: 44.0ms | ActiveRecord: 0.0ms)
21979
+
21980
+
21981
+ Started GET "/assets/bumbleworks/rails/application.css?body=1" for 127.0.0.1 at 2014-06-26 13:09:56 -0700
21982
+
21983
+
21984
+ Started GET "/assets/bumbleworks/rails/application.js?body=1" for 127.0.0.1 at 2014-06-26 13:09:56 -0700
21985
+
21986
+
21987
+ Started GET "/" for 127.0.0.1 at 2014-06-26 13:18:28 -0700
21988
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
21989
+ Rendered /Users/ravi/bumbleworks/bumbleworks-rails/app/views/bumbleworks/rails/tasks/_table.html.erb (24.7ms)
21990
+ Rendered /Users/ravi/bumbleworks/bumbleworks-rails/app/views/bumbleworks/rails/tasks/_table.html.erb (0.4ms)
21991
+ Rendered /Users/ravi/bumbleworks/bumbleworks-rails/app/views/bumbleworks/rails/tasks/index.html.erb within layouts/bumbleworks (30.3ms)
21992
+ Completed 200 OK in 36ms (Views: 35.8ms | ActiveRecord: 0.0ms)
21993
+
21994
+
21995
+ Started GET "/assets/bumbleworks/rails/application.css?body=1" for 127.0.0.1 at 2014-06-26 13:18:28 -0700
21996
+
21997
+
21998
+ Started GET "/assets/bumbleworks/rails/application.js?body=1" for 127.0.0.1 at 2014-06-26 13:18:28 -0700
21999
+
22000
+
22001
+ Started GET "/" for 127.0.0.1 at 2014-06-26 13:20:13 -0700
22002
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
22003
+ Rendered /Users/ravi/bumbleworks/bumbleworks-rails/app/views/bumbleworks/rails/tasks/_table.html.erb (31.8ms)
22004
+ Rendered /Users/ravi/bumbleworks/bumbleworks-rails/app/views/bumbleworks/rails/tasks/_table.html.erb (0.3ms)
22005
+ Rendered /Users/ravi/bumbleworks/bumbleworks-rails/app/views/bumbleworks/rails/tasks/index.html.erb within layouts/application (34.2ms)
22006
+ Completed 200 OK in 39ms (Views: 38.8ms | ActiveRecord: 0.0ms)
22007
+
22008
+
22009
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-06-26 13:20:13 -0700
22010
+
22011
+
22012
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-06-26 13:20:13 -0700
@@ -6719,3 +6719,419 @@ Completed 200 OK in 6ms (Views: 2.3ms | ActiveRecord: 0.0ms)
6719
6719
  Processing by Bumbleworks::Rails::TasksController#index as HTML
6720
6720
  Parameters: {"entity_type"=>"fridgets", "entity_id"=>"6"}
6721
6721
  Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)
6722
+ Processing by Bumbleworks::Rails::TasksController#show as HTML
6723
+ Parameters: {"id"=>"152"}
6724
+ Rendered fridgets/tasks/show.html.erb within layouts/application (0.6ms)
6725
+ Completed 200 OK in 12ms (Views: 10.6ms | ActiveRecord: 0.0ms)
6726
+ Processing by Bumbleworks::Rails::TasksController#show as HTML
6727
+ Parameters: {"id"=>"152"}
6728
+ Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
6729
+ Processing by Bumbleworks::Rails::TasksController#show as HTML
6730
+ Parameters: {"id"=>"152"}
6731
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
6732
+ Processing by Bumbleworks::Rails::TasksController#show as HTML
6733
+ Parameters: {"id"=>"152"}
6734
+ Filter chain halted as :load_and_authorize_task rendered or redirected
6735
+ Completed 401 Unauthorized in 9ms (Views: 1.7ms | ActiveRecord: 0.0ms)
6736
+ Processing by Bumbleworks::Rails::TasksController#show as HTML
6737
+ Parameters: {"id"=>"152"}
6738
+ Redirected to http://test.host/
6739
+ Filter chain halted as :load_and_authorize_task rendered or redirected
6740
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
6741
+ Processing by Bumbleworks::Rails::TasksController#complete as HTML
6742
+ Parameters: {"task"=>{"foo"=>"bar"}, "id"=>"152"}
6743
+ Redirected to http://test.host/tasks
6744
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
6745
+ Processing by Bumbleworks::Rails::TasksController#complete as HTML
6746
+ Parameters: {"task"=>{"foo"=>"bar"}, "id"=>"152"}
6747
+ Redirected to http://test.host/fridgets/5/tasks/werk
6748
+ Completed 302 Found in 3ms (ActiveRecord: 0.0ms)
6749
+ Processing by Bumbleworks::Rails::TasksController#complete as HTML
6750
+ Parameters: {"task"=>{"foo"=>"bar"}, "id"=>"152"}
6751
+ Redirected to http://test.host/fridgets/5/tasks/werk
6752
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
6753
+ Processing by Bumbleworks::Rails::TasksController#complete as HTML
6754
+ Parameters: {"id"=>"152"}
6755
+ Filter chain halted as :load_and_authorize_task rendered or redirected
6756
+ Completed 401 Unauthorized in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
6757
+ Processing by Bumbleworks::Rails::TasksController#complete as HTML
6758
+ Parameters: {"id"=>"152"}
6759
+ Redirected to http://test.host/
6760
+ Filter chain halted as :load_and_authorize_task rendered or redirected
6761
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
6762
+ Processing by Bumbleworks::Rails::TasksController#claim as HTML
6763
+ Parameters: {"id"=>"152"}
6764
+ Redirected to http://test.host/fridgets/5/tasks/werk
6765
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
6766
+ Processing by Bumbleworks::Rails::TasksController#claim as HTML
6767
+ Parameters: {"id"=>"152"}
6768
+ Redirected to http://test.host/fridgets/5/tasks/werk
6769
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
6770
+ Processing by Bumbleworks::Rails::TasksController#claim as HTML
6771
+ Parameters: {"id"=>"152"}
6772
+ Redirected to http://test.host/fridgets/5/tasks/werk
6773
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
6774
+ Processing by Bumbleworks::Rails::TasksController#claim as HTML
6775
+ Parameters: {"id"=>"152"}
6776
+ Filter chain halted as :load_and_authorize_task rendered or redirected
6777
+ Completed 401 Unauthorized in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
6778
+ Processing by Bumbleworks::Rails::TasksController#claim as HTML
6779
+ Parameters: {"id"=>"152"}
6780
+ Redirected to http://test.host/
6781
+ Filter chain halted as :load_and_authorize_task rendered or redirected
6782
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
6783
+ Processing by Bumbleworks::Rails::TasksController#release as HTML
6784
+ Parameters: {"id"=>"152"}
6785
+ Redirected to http://test.host/fridgets/5/tasks/werk
6786
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
6787
+ Processing by Bumbleworks::Rails::TasksController#release as HTML
6788
+ Parameters: {"id"=>"152"}
6789
+ Redirected to http://test.host/fridgets/5/tasks/werk
6790
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
6791
+ Processing by Bumbleworks::Rails::TasksController#release as HTML
6792
+ Parameters: {"id"=>"152"}
6793
+ Filter chain halted as :load_and_authorize_task rendered or redirected
6794
+ Completed 401 Unauthorized in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
6795
+ Processing by Bumbleworks::Rails::TasksController#release as HTML
6796
+ Parameters: {"id"=>"152"}
6797
+ Redirected to http://test.host/
6798
+ Filter chain halted as :load_and_authorize_task rendered or redirected
6799
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
6800
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
6801
+ Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
6802
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
6803
+ Parameters: {"entity_type"=>"fridget", "entity_id"=>"5"}
6804
+ Completed 200 OK in 3ms (Views: 2.0ms | ActiveRecord: 0.0ms)
6805
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
6806
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
6807
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
6808
+ Parameters: {"entity_type"=>"fridget", "entity_id"=>"5"}
6809
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
6810
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
6811
+ Parameters: {"entity_type"=>"goof", "entity_id"=>"2"}
6812
+ Filter chain halted as :load_entity rendered or redirected
6813
+ Completed 404 Not Found in 2ms (Views: 0.9ms | ActiveRecord: 0.0ms)
6814
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
6815
+ Parameters: {"entity_type"=>"fridget", "entity_id"=>"3"}
6816
+ Filter chain halted as :load_entity rendered or redirected
6817
+ Completed 404 Not Found in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
6818
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
6819
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
6820
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
6821
+ Parameters: {"entity_type"=>"silvo_blooms", "entity_id"=>"5"}
6822
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
6823
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
6824
+ Parameters: {"entity_type"=>"fridgets", "entity_id"=>"6"}
6825
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
6826
+ Processing by Bumbleworks::Rails::TasksController#show as HTML
6827
+ Parameters: {"id"=>"152"}
6828
+ Rendered fridgets/tasks/show.html.erb within layouts/application (0.5ms)
6829
+ Completed 200 OK in 15ms (Views: 13.5ms | ActiveRecord: 0.0ms)
6830
+ Processing by Bumbleworks::Rails::TasksController#show as HTML
6831
+ Parameters: {"id"=>"152"}
6832
+ Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
6833
+ Processing by Bumbleworks::Rails::TasksController#show as HTML
6834
+ Parameters: {"id"=>"152"}
6835
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
6836
+ Processing by Bumbleworks::Rails::TasksController#show as HTML
6837
+ Parameters: {"id"=>"152"}
6838
+ Filter chain halted as :load_and_authorize_task rendered or redirected
6839
+ Completed 401 Unauthorized in 10ms (Views: 1.9ms | ActiveRecord: 0.0ms)
6840
+ Processing by Bumbleworks::Rails::TasksController#show as HTML
6841
+ Parameters: {"id"=>"152"}
6842
+ Redirected to http://test.host/
6843
+ Filter chain halted as :load_and_authorize_task rendered or redirected
6844
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
6845
+ Processing by Bumbleworks::Rails::TasksController#complete as HTML
6846
+ Parameters: {"task"=>{"foo"=>"bar"}, "id"=>"152"}
6847
+ Redirected to http://test.host/tasks
6848
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
6849
+ Processing by Bumbleworks::Rails::TasksController#complete as HTML
6850
+ Parameters: {"task"=>{"foo"=>"bar"}, "id"=>"152"}
6851
+ Redirected to http://test.host/fridgets/5/tasks/werk
6852
+ Completed 302 Found in 3ms (ActiveRecord: 0.0ms)
6853
+ Processing by Bumbleworks::Rails::TasksController#complete as HTML
6854
+ Parameters: {"task"=>{"foo"=>"bar"}, "id"=>"152"}
6855
+ Redirected to http://test.host/fridgets/5/tasks/werk
6856
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
6857
+ Processing by Bumbleworks::Rails::TasksController#complete as HTML
6858
+ Parameters: {"id"=>"152"}
6859
+ Filter chain halted as :load_and_authorize_task rendered or redirected
6860
+ Completed 401 Unauthorized in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
6861
+ Processing by Bumbleworks::Rails::TasksController#complete as HTML
6862
+ Parameters: {"id"=>"152"}
6863
+ Redirected to http://test.host/
6864
+ Filter chain halted as :load_and_authorize_task rendered or redirected
6865
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
6866
+ Processing by Bumbleworks::Rails::TasksController#claim as HTML
6867
+ Parameters: {"id"=>"152"}
6868
+ Redirected to http://test.host/fridgets/5/tasks/werk
6869
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
6870
+ Processing by Bumbleworks::Rails::TasksController#claim as HTML
6871
+ Parameters: {"id"=>"152"}
6872
+ Redirected to http://test.host/fridgets/5/tasks/werk
6873
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
6874
+ Processing by Bumbleworks::Rails::TasksController#claim as HTML
6875
+ Parameters: {"id"=>"152"}
6876
+ Redirected to http://test.host/fridgets/5/tasks/werk
6877
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
6878
+ Processing by Bumbleworks::Rails::TasksController#claim as HTML
6879
+ Parameters: {"id"=>"152"}
6880
+ Filter chain halted as :load_and_authorize_task rendered or redirected
6881
+ Completed 401 Unauthorized in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
6882
+ Processing by Bumbleworks::Rails::TasksController#claim as HTML
6883
+ Parameters: {"id"=>"152"}
6884
+ Redirected to http://test.host/
6885
+ Filter chain halted as :load_and_authorize_task rendered or redirected
6886
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
6887
+ Processing by Bumbleworks::Rails::TasksController#release as HTML
6888
+ Parameters: {"id"=>"152"}
6889
+ Redirected to http://test.host/fridgets/5/tasks/werk
6890
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
6891
+ Processing by Bumbleworks::Rails::TasksController#release as HTML
6892
+ Parameters: {"id"=>"152"}
6893
+ Redirected to http://test.host/fridgets/5/tasks/werk
6894
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
6895
+ Processing by Bumbleworks::Rails::TasksController#release as HTML
6896
+ Parameters: {"id"=>"152"}
6897
+ Filter chain halted as :load_and_authorize_task rendered or redirected
6898
+ Completed 401 Unauthorized in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
6899
+ Processing by Bumbleworks::Rails::TasksController#release as HTML
6900
+ Parameters: {"id"=>"152"}
6901
+ Redirected to http://test.host/
6902
+ Filter chain halted as :load_and_authorize_task rendered or redirected
6903
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
6904
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
6905
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
6906
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
6907
+ Parameters: {"entity_type"=>"fridget", "entity_id"=>"5"}
6908
+ Completed 200 OK in 4ms (Views: 2.0ms | ActiveRecord: 0.0ms)
6909
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
6910
+ Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)
6911
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
6912
+ Parameters: {"entity_type"=>"fridget", "entity_id"=>"5"}
6913
+ Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)
6914
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
6915
+ Parameters: {"entity_type"=>"goof", "entity_id"=>"2"}
6916
+ Filter chain halted as :load_entity rendered or redirected
6917
+ Completed 404 Not Found in 2ms (Views: 0.4ms | ActiveRecord: 0.0ms)
6918
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
6919
+ Parameters: {"entity_type"=>"fridget", "entity_id"=>"3"}
6920
+ Filter chain halted as :load_entity rendered or redirected
6921
+ Completed 404 Not Found in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
6922
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
6923
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
6924
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
6925
+ Parameters: {"entity_type"=>"silvo_blooms", "entity_id"=>"5"}
6926
+ Completed 200 OK in 3ms (Views: 1.9ms | ActiveRecord: 0.0ms)
6927
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
6928
+ Parameters: {"entity_type"=>"fridgets", "entity_id"=>"6"}
6929
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
6930
+ Processing by Bumbleworks::Rails::TasksController#show as HTML
6931
+ Parameters: {"id"=>"152"}
6932
+ Rendered fridgets/tasks/show.html.erb within layouts/application (0.4ms)
6933
+ Completed 200 OK in 12ms (Views: 9.8ms | ActiveRecord: 0.0ms)
6934
+ Processing by Bumbleworks::Rails::TasksController#show as HTML
6935
+ Parameters: {"id"=>"152"}
6936
+ Completed 200 OK in 4ms (Views: 3.1ms | ActiveRecord: 0.0ms)
6937
+ Processing by Bumbleworks::Rails::TasksController#show as HTML
6938
+ Parameters: {"id"=>"152"}
6939
+ Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
6940
+ Processing by Bumbleworks::Rails::TasksController#show as HTML
6941
+ Parameters: {"id"=>"152"}
6942
+ Filter chain halted as :load_and_authorize_task rendered or redirected
6943
+ Completed 401 Unauthorized in 8ms (Views: 1.6ms | ActiveRecord: 0.0ms)
6944
+ Processing by Bumbleworks::Rails::TasksController#show as HTML
6945
+ Parameters: {"id"=>"152"}
6946
+ Redirected to http://test.host/
6947
+ Filter chain halted as :load_and_authorize_task rendered or redirected
6948
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
6949
+ Processing by Bumbleworks::Rails::TasksController#complete as HTML
6950
+ Parameters: {"task"=>{"foo"=>"bar"}, "id"=>"152"}
6951
+ Redirected to http://test.host/tasks
6952
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
6953
+ Processing by Bumbleworks::Rails::TasksController#complete as HTML
6954
+ Parameters: {"task"=>{"foo"=>"bar"}, "id"=>"152"}
6955
+ Redirected to http://test.host/fridgets/5/tasks/werk
6956
+ Completed 302 Found in 3ms (ActiveRecord: 0.0ms)
6957
+ Processing by Bumbleworks::Rails::TasksController#complete as HTML
6958
+ Parameters: {"task"=>{"foo"=>"bar"}, "id"=>"152"}
6959
+ Redirected to http://test.host/fridgets/5/tasks/werk
6960
+ Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
6961
+ Processing by Bumbleworks::Rails::TasksController#complete as HTML
6962
+ Parameters: {"id"=>"152"}
6963
+ Filter chain halted as :load_and_authorize_task rendered or redirected
6964
+ Completed 401 Unauthorized in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
6965
+ Processing by Bumbleworks::Rails::TasksController#complete as HTML
6966
+ Parameters: {"id"=>"152"}
6967
+ Redirected to http://test.host/
6968
+ Filter chain halted as :load_and_authorize_task rendered or redirected
6969
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
6970
+ Processing by Bumbleworks::Rails::TasksController#claim as HTML
6971
+ Parameters: {"id"=>"152"}
6972
+ Redirected to http://test.host/fridgets/5/tasks/werk
6973
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
6974
+ Processing by Bumbleworks::Rails::TasksController#claim as HTML
6975
+ Parameters: {"id"=>"152"}
6976
+ Redirected to http://test.host/fridgets/5/tasks/werk
6977
+ Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
6978
+ Processing by Bumbleworks::Rails::TasksController#claim as HTML
6979
+ Parameters: {"id"=>"152"}
6980
+ Redirected to http://test.host/fridgets/5/tasks/werk
6981
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
6982
+ Processing by Bumbleworks::Rails::TasksController#claim as HTML
6983
+ Parameters: {"id"=>"152"}
6984
+ Filter chain halted as :load_and_authorize_task rendered or redirected
6985
+ Completed 401 Unauthorized in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
6986
+ Processing by Bumbleworks::Rails::TasksController#claim as HTML
6987
+ Parameters: {"id"=>"152"}
6988
+ Redirected to http://test.host/
6989
+ Filter chain halted as :load_and_authorize_task rendered or redirected
6990
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
6991
+ Processing by Bumbleworks::Rails::TasksController#release as HTML
6992
+ Parameters: {"id"=>"152"}
6993
+ Redirected to http://test.host/fridgets/5/tasks/werk
6994
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
6995
+ Processing by Bumbleworks::Rails::TasksController#release as HTML
6996
+ Parameters: {"id"=>"152"}
6997
+ Redirected to http://test.host/fridgets/5/tasks/werk
6998
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
6999
+ Processing by Bumbleworks::Rails::TasksController#release as HTML
7000
+ Parameters: {"id"=>"152"}
7001
+ Filter chain halted as :load_and_authorize_task rendered or redirected
7002
+ Completed 401 Unauthorized in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
7003
+ Processing by Bumbleworks::Rails::TasksController#release as HTML
7004
+ Parameters: {"id"=>"152"}
7005
+ Redirected to http://test.host/
7006
+ Filter chain halted as :load_and_authorize_task rendered or redirected
7007
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
7008
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
7009
+ Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
7010
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
7011
+ Parameters: {"entity_type"=>"fridget", "entity_id"=>"5"}
7012
+ Completed 200 OK in 3ms (Views: 1.8ms | ActiveRecord: 0.0ms)
7013
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
7014
+ Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
7015
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
7016
+ Parameters: {"entity_type"=>"fridget", "entity_id"=>"5"}
7017
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
7018
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
7019
+ Parameters: {"entity_type"=>"goof", "entity_id"=>"2"}
7020
+ Filter chain halted as :load_entity rendered or redirected
7021
+ Completed 404 Not Found in 2ms (Views: 0.4ms | ActiveRecord: 0.0ms)
7022
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
7023
+ Parameters: {"entity_type"=>"fridget", "entity_id"=>"3"}
7024
+ Filter chain halted as :load_entity rendered or redirected
7025
+ Completed 404 Not Found in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
7026
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
7027
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
7028
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
7029
+ Parameters: {"entity_type"=>"silvo_blooms", "entity_id"=>"5"}
7030
+ Completed 200 OK in 3ms (Views: 2.0ms | ActiveRecord: 0.0ms)
7031
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
7032
+ Parameters: {"entity_type"=>"fridgets", "entity_id"=>"6"}
7033
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
7034
+ Processing by Bumbleworks::Rails::TasksController#show as HTML
7035
+ Parameters: {"id"=>"152"}
7036
+ Rendered fridgets/tasks/show.html.erb within layouts/application (0.6ms)
7037
+ Completed 200 OK in 15ms (Views: 12.3ms | ActiveRecord: 0.0ms)
7038
+ Processing by Bumbleworks::Rails::TasksController#show as HTML
7039
+ Parameters: {"id"=>"152"}
7040
+ Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
7041
+ Processing by Bumbleworks::Rails::TasksController#show as HTML
7042
+ Parameters: {"id"=>"152"}
7043
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
7044
+ Processing by Bumbleworks::Rails::TasksController#show as HTML
7045
+ Parameters: {"id"=>"152"}
7046
+ Filter chain halted as :load_and_authorize_task rendered or redirected
7047
+ Completed 401 Unauthorized in 10ms (Views: 1.9ms | ActiveRecord: 0.0ms)
7048
+ Processing by Bumbleworks::Rails::TasksController#show as HTML
7049
+ Parameters: {"id"=>"152"}
7050
+ Redirected to http://test.host/
7051
+ Filter chain halted as :load_and_authorize_task rendered or redirected
7052
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
7053
+ Processing by Bumbleworks::Rails::TasksController#complete as HTML
7054
+ Parameters: {"task"=>{"foo"=>"bar"}, "id"=>"152"}
7055
+ Redirected to http://test.host/tasks
7056
+ Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
7057
+ Processing by Bumbleworks::Rails::TasksController#complete as HTML
7058
+ Parameters: {"task"=>{"foo"=>"bar"}, "id"=>"152"}
7059
+ Redirected to http://test.host/fridgets/5/tasks/werk
7060
+ Completed 302 Found in 3ms (ActiveRecord: 0.0ms)
7061
+ Processing by Bumbleworks::Rails::TasksController#complete as HTML
7062
+ Parameters: {"task"=>{"foo"=>"bar"}, "id"=>"152"}
7063
+ Redirected to http://test.host/fridgets/5/tasks/werk
7064
+ Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
7065
+ Processing by Bumbleworks::Rails::TasksController#complete as HTML
7066
+ Parameters: {"id"=>"152"}
7067
+ Filter chain halted as :load_and_authorize_task rendered or redirected
7068
+ Completed 401 Unauthorized in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
7069
+ Processing by Bumbleworks::Rails::TasksController#complete as HTML
7070
+ Parameters: {"id"=>"152"}
7071
+ Redirected to http://test.host/
7072
+ Filter chain halted as :load_and_authorize_task rendered or redirected
7073
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
7074
+ Processing by Bumbleworks::Rails::TasksController#claim as HTML
7075
+ Parameters: {"id"=>"152"}
7076
+ Redirected to http://test.host/fridgets/5/tasks/werk
7077
+ Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
7078
+ Processing by Bumbleworks::Rails::TasksController#claim as HTML
7079
+ Parameters: {"id"=>"152"}
7080
+ Redirected to http://test.host/fridgets/5/tasks/werk
7081
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
7082
+ Processing by Bumbleworks::Rails::TasksController#claim as HTML
7083
+ Parameters: {"id"=>"152"}
7084
+ Redirected to http://test.host/fridgets/5/tasks/werk
7085
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
7086
+ Processing by Bumbleworks::Rails::TasksController#claim as HTML
7087
+ Parameters: {"id"=>"152"}
7088
+ Filter chain halted as :load_and_authorize_task rendered or redirected
7089
+ Completed 401 Unauthorized in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
7090
+ Processing by Bumbleworks::Rails::TasksController#claim as HTML
7091
+ Parameters: {"id"=>"152"}
7092
+ Redirected to http://test.host/
7093
+ Filter chain halted as :load_and_authorize_task rendered or redirected
7094
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
7095
+ Processing by Bumbleworks::Rails::TasksController#release as HTML
7096
+ Parameters: {"id"=>"152"}
7097
+ Redirected to http://test.host/fridgets/5/tasks/werk
7098
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
7099
+ Processing by Bumbleworks::Rails::TasksController#release as HTML
7100
+ Parameters: {"id"=>"152"}
7101
+ Redirected to http://test.host/fridgets/5/tasks/werk
7102
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
7103
+ Processing by Bumbleworks::Rails::TasksController#release as HTML
7104
+ Parameters: {"id"=>"152"}
7105
+ Filter chain halted as :load_and_authorize_task rendered or redirected
7106
+ Completed 401 Unauthorized in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
7107
+ Processing by Bumbleworks::Rails::TasksController#release as HTML
7108
+ Parameters: {"id"=>"152"}
7109
+ Redirected to http://test.host/
7110
+ Filter chain halted as :load_and_authorize_task rendered or redirected
7111
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
7112
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
7113
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
7114
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
7115
+ Parameters: {"entity_type"=>"fridget", "entity_id"=>"5"}
7116
+ Completed 200 OK in 3ms (Views: 1.8ms | ActiveRecord: 0.0ms)
7117
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
7118
+ Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)
7119
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
7120
+ Parameters: {"entity_type"=>"fridget", "entity_id"=>"5"}
7121
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
7122
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
7123
+ Parameters: {"entity_type"=>"goof", "entity_id"=>"2"}
7124
+ Filter chain halted as :load_entity rendered or redirected
7125
+ Completed 404 Not Found in 2ms (Views: 0.4ms | ActiveRecord: 0.0ms)
7126
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
7127
+ Parameters: {"entity_type"=>"fridget", "entity_id"=>"3"}
7128
+ Filter chain halted as :load_entity rendered or redirected
7129
+ Completed 404 Not Found in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
7130
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
7131
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
7132
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
7133
+ Parameters: {"entity_type"=>"silvo_blooms", "entity_id"=>"5"}
7134
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
7135
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
7136
+ Parameters: {"entity_type"=>"fridgets", "entity_id"=>"6"}
7137
+ Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)
@@ -0,0 +1,59 @@
1
+ describe Bumbleworks::Rails::ApplicationHelper do
2
+ let(:main_app) { double('Main App') }
3
+ before(:each) do
4
+ allow(helper).to receive(:main_app).and_return(main_app)
5
+ end
6
+
7
+ describe '#method_missing' do
8
+ it "delegates to main_app if method_is_main_app_url_helper" do
9
+ allow(main_app).to receive(:valid_method).with(:args).and_return(:valid_return)
10
+ allow(helper).to receive(:method_is_main_app_url_helper?).
11
+ with(:valid_method).and_return(true)
12
+
13
+ expect(helper.method_missing(:valid_method, :args)).to eq(:valid_return)
14
+ end
15
+
16
+ it "raises NoMethodError unless method_is_main_app_url_helper" do
17
+ allow(helper).to receive(:method_is_main_app_url_helper?).
18
+ with(:invalid_method).and_return(false)
19
+
20
+ expect {
21
+ helper.method_missing(:invalid_method, :args)
22
+ }.to raise_error(NoMethodError)
23
+ end
24
+ end
25
+
26
+ describe '#respond_to?' do
27
+ it "returns true if method_is_main_app_url_helper" do
28
+ allow(helper).to receive(:method_is_main_app_url_helper?).
29
+ with(:valid_method).and_return(true)
30
+
31
+ expect(helper.respond_to?(:valid_method)).to be_truthy
32
+ end
33
+
34
+ it "returns false unless method_is_main_app_url_helper" do
35
+ allow(helper).to receive(:method_is_main_app_url_helper?).
36
+ with(:invalid_method).and_return(false)
37
+
38
+ expect(helper.respond_to?(:invalid_method)).to be_falsy
39
+ end
40
+ end
41
+
42
+ describe '#method_is_main_app_url_helper?' do
43
+ it "returns true if main_app responds to method and method is url helper" do
44
+ [:foo_path, :foo_url].each do |method|
45
+ allow(main_app).to receive(:respond_to?).with(method).and_return(true)
46
+ expect(helper.method_is_main_app_url_helper?(method)).to be_truthy
47
+ end
48
+ end
49
+
50
+ it "returns false if main_app does not respond_to method" do
51
+ allow(main_app).to receive(:respond_to?).with(:stupid_path).and_return(false)
52
+ expect(helper.method_is_main_app_url_helper?(:stupid_path)).to be_falsy
53
+ end
54
+
55
+ it "returns false if method is not url helper" do
56
+ expect(helper.method_is_main_app_url_helper?(:foo)).to be_falsy
57
+ end
58
+ end
59
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bumbleworks-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ravi Gadad
@@ -11,7 +11,7 @@ cert_chain: []
11
11
  date: 2014-06-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
- name: rails
14
+ name: railties
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
17
  - - "~>"
@@ -108,6 +108,20 @@ dependencies:
108
108
  - - ">="
109
109
  - !ruby/object:Gem::Version
110
110
  version: '0'
111
+ - !ruby/object:Gem::Dependency
112
+ name: rails
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - "~>"
116
+ - !ruby/object:Gem::Version
117
+ version: '4.0'
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - "~>"
123
+ - !ruby/object:Gem::Version
124
+ version: '4.0'
111
125
  description: Rails Engine for integrating Bumbleworks into Rails.
112
126
  email:
113
127
  - ravi@gadad.net
@@ -120,6 +134,7 @@ files:
120
134
  - Rakefile
121
135
  - app/assets/javascripts/bumbleworks/rails/application.js
122
136
  - app/assets/stylesheets/bumbleworks/rails/application.css
137
+ - app/controllers/bumbleworks/rails/application_controller.rb
123
138
  - app/controllers/bumbleworks/rails/tasks_controller.rb
124
139
  - app/controllers/bumbleworks_controller.rb
125
140
  - app/helpers/bumbleworks/rails/application_helper.rb
@@ -127,7 +142,6 @@ files:
127
142
  - app/views/bumbleworks/rails/tasks/_table.html.erb
128
143
  - app/views/bumbleworks/rails/tasks/index.html.erb
129
144
  - app/views/bumbleworks/rails/tasks/show.html.erb
130
- - app/views/layouts/bumbleworks/rails/application.html.erb
131
145
  - config/routes.rb
132
146
  - lib/bumbleworks/rails.rb
133
147
  - lib/bumbleworks/rails/engine.rb
@@ -189,9 +203,22 @@ files:
189
203
  - spec/dummy/public/500.html
190
204
  - spec/dummy/public/favicon.ico
191
205
  - spec/dummy/tmp/app/controllers/application_controller.rb
206
+ - spec/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705
207
+ - spec/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af
208
+ - spec/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953
209
+ - spec/dummy/tmp/cache/assets/development/sprockets/71172e96e7c0e5ebbb85f7e4033153f2
210
+ - spec/dummy/tmp/cache/assets/development/sprockets/84dba161ef4752a6096ee4110e0a1363
211
+ - spec/dummy/tmp/cache/assets/development/sprockets/b20d56f0fb398376db4d80f8618ac9a5
212
+ - spec/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994
213
+ - spec/dummy/tmp/cache/assets/development/sprockets/d5166cc60cbc1f12e594d69797626618
214
+ - spec/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6
215
+ - spec/dummy/tmp/cache/assets/development/sprockets/e039fdcdb2bb62f89fe446781ecc227f
216
+ - spec/dummy/tmp/cache/assets/development/sprockets/ea229e71c69224f5d0de29dc3aa7f20a
217
+ - spec/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655
192
218
  - spec/dummy/tmp/config/initializers/bumbleworks.rb
193
219
  - spec/dummy/tmp/config/locales/bumbleworks.en.yml
194
220
  - spec/dummy/tmp/lib/bumbleworks/participants.rb
221
+ - spec/helpers/application_helper_spec.rb
195
222
  - spec/helpers/tasks_helper_spec.rb
196
223
  - spec/lib/bumbleworks/rails/engine_spec.rb
197
224
  - spec/lib/bumbleworks/rails_spec.rb
@@ -271,9 +298,22 @@ test_files:
271
298
  - spec/dummy/Rakefile
272
299
  - spec/dummy/README.rdoc
273
300
  - spec/dummy/tmp/app/controllers/application_controller.rb
301
+ - spec/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705
302
+ - spec/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af
303
+ - spec/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953
304
+ - spec/dummy/tmp/cache/assets/development/sprockets/71172e96e7c0e5ebbb85f7e4033153f2
305
+ - spec/dummy/tmp/cache/assets/development/sprockets/84dba161ef4752a6096ee4110e0a1363
306
+ - spec/dummy/tmp/cache/assets/development/sprockets/b20d56f0fb398376db4d80f8618ac9a5
307
+ - spec/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994
308
+ - spec/dummy/tmp/cache/assets/development/sprockets/d5166cc60cbc1f12e594d69797626618
309
+ - spec/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6
310
+ - spec/dummy/tmp/cache/assets/development/sprockets/e039fdcdb2bb62f89fe446781ecc227f
311
+ - spec/dummy/tmp/cache/assets/development/sprockets/ea229e71c69224f5d0de29dc3aa7f20a
312
+ - spec/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655
274
313
  - spec/dummy/tmp/config/initializers/bumbleworks.rb
275
314
  - spec/dummy/tmp/config/locales/bumbleworks.en.yml
276
315
  - spec/dummy/tmp/lib/bumbleworks/participants.rb
316
+ - spec/helpers/application_helper_spec.rb
277
317
  - spec/helpers/tasks_helper_spec.rb
278
318
  - spec/lib/bumbleworks/rails/engine_spec.rb
279
319
  - spec/lib/bumbleworks/rails_spec.rb
@@ -1,14 +0,0 @@
1
- <!DOCTYPE html>
2
- <html>
3
- <head>
4
- <title>Bumbleworks::Rails</title>
5
- <%= stylesheet_link_tag "bumbleworks/rails/application", media: "all" %>
6
- <%= javascript_include_tag "bumbleworks/rails/application" %>
7
- <%= csrf_meta_tags %>
8
- </head>
9
- <body>
10
-
11
- <%= yield %>
12
-
13
- </body>
14
- </html>