mousereco 0.0.4 → 0.0.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,15 +1,7 @@
1
1
  ---
2
- !binary "U0hBMQ==":
3
- metadata.gz: !binary |-
4
- ZDkwMzY4NTAxMjc4NDAxNmFjZGE3ODE4NDNlMDNkZjIzODQwZDU1Zg==
5
- data.tar.gz: !binary |-
6
- NjIxNmM1Njg4Yzc3ZjJkYmQ0Mjg5YTY4YTU2OGRjN2MyNzNmOTllNA==
2
+ SHA1:
3
+ metadata.gz: ccd655691bc6610732ca1ad1f23628561b27ecb0
4
+ data.tar.gz: becd0cb31f602bd559144135d2c6e92b8671d983
7
5
  SHA512:
8
- metadata.gz: !binary |-
9
- NmMwOGZmOTgwODAxYTBlNjA5NmY2ZTE3NDk1NTQ1ZDIyNDI3YzFlODQ3MGMz
10
- NGU2NDZmNDY3MmFlN2I0NzI1N2EzNzdlZjQ5OWMxNzNiMzQ4MWFkNDE2ZWU4
11
- ZjgyNTk1ZGE2ZGU1Y2QyNTU1YjgzMmI3Yjc1NjJmMDZjOTQyODA=
12
- data.tar.gz: !binary |-
13
- OTQ1MGRhMTg2NjRhYWQwYmE1MGNkOTJkZjBiNWMwM2FlMjE1YjIyZDA5ZTJh
14
- NzBiYTg0MWY5OGM2NWFiODZiMTQ3ZGU1ZWI4NTQyZjljZjFhNzFlOTQwZTNi
15
- ZmNmNDE2ZjFmMTRlNGM0Y2NhM2VjOGUxZjU4MzQ5ZGUzZjEwMTE=
6
+ metadata.gz: 27738210e862431318be3f5b29740d0f8220cad94c6fef76875bb3357ccad2f746f5272e0e325674ccc95e0ddb4b2439c5e322aa99e2f4b06261dcde7b2779c0
7
+ data.tar.gz: 3190deaed92761a48f2d620b60e3a71f8462d74d9241e5170510ce6a9a9ddc63d16b33848a4adc0cc6b5cde89e944f1fa03a1c1c203e6f2080d8d2fff56c5043
@@ -2,16 +2,7 @@ module Mousereco
2
2
  module Api
3
3
  module V1
4
4
  class ApplicationController < ActionController::Base
5
- skip_before_filter :verify_authenticity_token
6
- before_filter :options
7
-
8
- def options
9
- headers["Access-Control-Allow-Origin"] = "*"
10
- headers["Access-Control-Allow-Methods"] = %w{GET POST PUT DELETE}.join(",")
11
- headers["Access-Control-Allow-Headers"] =
12
- %w{Origin Accept Content-Type X-Requested-With X-CSRF-Token}.join(",")
13
- head(:ok) if request.request_method == "OPTIONS"
14
- end
5
+ skip_before_action :verify_authenticity_token
15
6
  end
16
7
  end
17
8
  end
@@ -1,7 +1,7 @@
1
1
  module Mousereco
2
2
  module Api
3
3
  module V1
4
- class EventsController < ApplicationController
4
+ class EventsController < Mousereco::Api::V1::ApplicationController
5
5
  def create
6
6
  if permitted_params[:events].present?
7
7
  EventsService.create_collection(permitted_params[:events].values, permitted_params[:visitor_key], permitted_params[:pageview_key])
@@ -1,7 +1,7 @@
1
1
  module Mousereco
2
2
  module Api
3
3
  module V1
4
- class PageviewsController < ApplicationController
4
+ class PageviewsController < Mousereco::Api::V1::ApplicationController
5
5
  def preflight
6
6
  render json: {success: true, send_html: true}
7
7
  end
data/config/routes.rb CHANGED
@@ -7,7 +7,6 @@ Mousereco::Engine.routes.draw do
7
7
  post :preflight, to: 'pageviews#preflight'
8
8
  end
9
9
  end
10
- match '*all', to: 'application#options', via: [:options]
11
10
  end
12
11
  end
13
12
 
@@ -1,3 +1,3 @@
1
1
  module Mousereco
2
- VERSION = "0.0.4"
2
+ VERSION = "0.0.5"
3
3
  end
data/lib/mousereco.rb CHANGED
@@ -1,4 +1,6 @@
1
- require "mousereco/engine"
1
+ require 'rails'
2
+ require 'haml'
3
+ require 'mousereco/engine'
2
4
 
3
5
  module Mousereco
4
6
  mattr_accessor :http_auth_user_name
@@ -2,6 +2,7 @@ PATH
2
2
  remote: ../../
3
3
  specs:
4
4
  mousereco (0.0.4)
5
+ haml
5
6
  jquery-rails
6
7
  rails (~> 4.0)
7
8
 
@@ -21612,3 +21612,670 @@ Unpermitted parameters: timestamp
21612
21612
  SQL (0.2ms) INSERT INTO "mousereco_events" ("created_at", "pageview_id", "timestamp", "type", "updated_at", "x", "y") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Sun, 16 Feb 2014 18:07:00 UTC +00:00], ["pageview_id", 24], ["timestamp", 1392574020001], ["type", "Mousereco::Click"], ["updated_at", Sun, 16 Feb 2014 18:07:00 UTC +00:00], ["x", 408.0], ["y", 113.0]]
21613
21613
   (1.0ms) commit transaction
21614
21614
  Completed 200 OK in 36ms (Views: 0.3ms | ActiveRecord: 4.7ms)
21615
+
21616
+
21617
+ Started GET "/" for 127.0.0.1 at 2014-02-17 21:04:49 +0100
21618
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
21619
+ Processing by HomeController#index as HTML
21620
+ Completed 500 Internal Server Error in 17ms
21621
+
21622
+ ActionView::MissingTemplate (Missing template home/index, application/index with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :raw, :ruby, :jbuilder, :coffee]}. Searched in:
21623
+ * "/Users/pawenguyen/apps/mousereco/spec/dummy/app/views"
21624
+ * "/Users/pawenguyen/apps/mousereco/app/views"
21625
+ ):
21626
+ actionpack (4.0.0) lib/action_view/path_set.rb:46:in `find'
21627
+ actionpack (4.0.0) lib/action_view/lookup_context.rb:115:in `find'
21628
+ actionpack (4.0.0) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template'
21629
+ actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:35:in `determine_template'
21630
+ actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:8:in `render'
21631
+ actionpack (4.0.0) lib/action_view/renderer/renderer.rb:42:in `render_template'
21632
+ actionpack (4.0.0) lib/action_view/renderer/renderer.rb:23:in `render'
21633
+ actionpack (4.0.0) lib/abstract_controller/rendering.rb:127:in `_render_template'
21634
+ actionpack (4.0.0) lib/action_controller/metal/streaming.rb:219:in `_render_template'
21635
+ actionpack (4.0.0) lib/abstract_controller/rendering.rb:120:in `render_to_body'
21636
+ actionpack (4.0.0) lib/action_controller/metal/rendering.rb:33:in `render_to_body'
21637
+ actionpack (4.0.0) lib/action_controller/metal/renderers.rb:26:in `render_to_body'
21638
+ actionpack (4.0.0) lib/abstract_controller/rendering.rb:97:in `render'
21639
+ actionpack (4.0.0) lib/action_controller/metal/rendering.rb:16:in `render'
21640
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
21641
+ activesupport (4.0.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
21642
+ /Users/pawenguyen/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/benchmark.rb:296:in `realtime'
21643
+ activesupport (4.0.0) lib/active_support/core_ext/benchmark.rb:12:in `ms'
21644
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
21645
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
21646
+ activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
21647
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:40:in `render'
21648
+ actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
21649
+ actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
21650
+ actionpack (4.0.0) lib/abstract_controller/base.rb:189:in `process_action'
21651
+ actionpack (4.0.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
21652
+ actionpack (4.0.0) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
21653
+ activesupport (4.0.0) lib/active_support/callbacks.rb:383:in `_run__2369871331618101081__process_action__callbacks'
21654
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
21655
+ actionpack (4.0.0) lib/abstract_controller/callbacks.rb:17:in `process_action'
21656
+ actionpack (4.0.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
21657
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
21658
+ activesupport (4.0.0) lib/active_support/notifications.rb:159:in `block in instrument'
21659
+ activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
21660
+ activesupport (4.0.0) lib/active_support/notifications.rb:159:in `instrument'
21661
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
21662
+ actionpack (4.0.0) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
21663
+ activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
21664
+ actionpack (4.0.0) lib/abstract_controller/base.rb:136:in `process'
21665
+ actionpack (4.0.0) lib/abstract_controller/rendering.rb:44:in `process'
21666
+ actionpack (4.0.0) lib/action_controller/metal.rb:195:in `dispatch'
21667
+ actionpack (4.0.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
21668
+ actionpack (4.0.0) lib/action_controller/metal.rb:231:in `block in action'
21669
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
21670
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
21671
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
21672
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
21673
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
21674
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
21675
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
21676
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
21677
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
21678
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
21679
+ actionpack (4.0.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
21680
+ actionpack (4.0.0) lib/action_dispatch/middleware/flash.rb:241:in `call'
21681
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
21682
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
21683
+ actionpack (4.0.0) lib/action_dispatch/middleware/cookies.rb:486:in `call'
21684
+ activerecord (4.0.0) lib/active_record/query_cache.rb:36:in `call'
21685
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
21686
+ activerecord (4.0.0) lib/active_record/migration.rb:369:in `call'
21687
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
21688
+ activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__3026938905634998287__call__callbacks'
21689
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
21690
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
21691
+ actionpack (4.0.0) lib/action_dispatch/middleware/reloader.rb:64:in `call'
21692
+ actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
21693
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
21694
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
21695
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
21696
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
21697
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
21698
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
21699
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
21700
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
21701
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
21702
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
21703
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
21704
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
21705
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
21706
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
21707
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
21708
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
21709
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
21710
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
21711
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
21712
+ /Users/pawenguyen/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
21713
+ /Users/pawenguyen/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
21714
+ /Users/pawenguyen/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
21715
+
21716
+
21717
+ Rendered /Users/pawenguyen/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (2.3ms)
21718
+
21719
+
21720
+ Started GET "/" for 127.0.0.1 at 2014-02-17 21:05:15 +0100
21721
+ Processing by HomeController#index as HTML
21722
+ Completed 500 Internal Server Error in 3ms
21723
+
21724
+ ActionView::MissingTemplate (Missing template home/index, application/index with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :raw, :ruby, :jbuilder, :coffee]}. Searched in:
21725
+ * "/Users/pawenguyen/apps/mousereco/spec/dummy/app/views"
21726
+ * "/Users/pawenguyen/apps/mousereco/app/views"
21727
+ ):
21728
+ actionpack (4.0.0) lib/action_view/path_set.rb:46:in `find'
21729
+ actionpack (4.0.0) lib/action_view/lookup_context.rb:115:in `find'
21730
+ actionpack (4.0.0) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template'
21731
+ actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:35:in `determine_template'
21732
+ actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:8:in `render'
21733
+ actionpack (4.0.0) lib/action_view/renderer/renderer.rb:42:in `render_template'
21734
+ actionpack (4.0.0) lib/action_view/renderer/renderer.rb:23:in `render'
21735
+ actionpack (4.0.0) lib/abstract_controller/rendering.rb:127:in `_render_template'
21736
+ actionpack (4.0.0) lib/action_controller/metal/streaming.rb:219:in `_render_template'
21737
+ actionpack (4.0.0) lib/abstract_controller/rendering.rb:120:in `render_to_body'
21738
+ actionpack (4.0.0) lib/action_controller/metal/rendering.rb:33:in `render_to_body'
21739
+ actionpack (4.0.0) lib/action_controller/metal/renderers.rb:26:in `render_to_body'
21740
+ actionpack (4.0.0) lib/abstract_controller/rendering.rb:97:in `render'
21741
+ actionpack (4.0.0) lib/action_controller/metal/rendering.rb:16:in `render'
21742
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
21743
+ activesupport (4.0.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
21744
+ /Users/pawenguyen/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/benchmark.rb:296:in `realtime'
21745
+ activesupport (4.0.0) lib/active_support/core_ext/benchmark.rb:12:in `ms'
21746
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
21747
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
21748
+ activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
21749
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:40:in `render'
21750
+ actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
21751
+ actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
21752
+ actionpack (4.0.0) lib/abstract_controller/base.rb:189:in `process_action'
21753
+ actionpack (4.0.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
21754
+ actionpack (4.0.0) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
21755
+ activesupport (4.0.0) lib/active_support/callbacks.rb:383:in `_run__2369871331618101081__process_action__callbacks'
21756
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
21757
+ actionpack (4.0.0) lib/abstract_controller/callbacks.rb:17:in `process_action'
21758
+ actionpack (4.0.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
21759
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
21760
+ activesupport (4.0.0) lib/active_support/notifications.rb:159:in `block in instrument'
21761
+ activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
21762
+ activesupport (4.0.0) lib/active_support/notifications.rb:159:in `instrument'
21763
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
21764
+ actionpack (4.0.0) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
21765
+ activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
21766
+ actionpack (4.0.0) lib/abstract_controller/base.rb:136:in `process'
21767
+ actionpack (4.0.0) lib/abstract_controller/rendering.rb:44:in `process'
21768
+ actionpack (4.0.0) lib/action_controller/metal.rb:195:in `dispatch'
21769
+ actionpack (4.0.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
21770
+ actionpack (4.0.0) lib/action_controller/metal.rb:231:in `block in action'
21771
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
21772
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
21773
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
21774
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
21775
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
21776
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
21777
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
21778
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
21779
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
21780
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
21781
+ actionpack (4.0.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
21782
+ actionpack (4.0.0) lib/action_dispatch/middleware/flash.rb:241:in `call'
21783
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
21784
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
21785
+ actionpack (4.0.0) lib/action_dispatch/middleware/cookies.rb:486:in `call'
21786
+ activerecord (4.0.0) lib/active_record/query_cache.rb:36:in `call'
21787
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
21788
+ activerecord (4.0.0) lib/active_record/migration.rb:369:in `call'
21789
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
21790
+ activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__3026938905634998287__call__callbacks'
21791
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
21792
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
21793
+ actionpack (4.0.0) lib/action_dispatch/middleware/reloader.rb:64:in `call'
21794
+ actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
21795
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
21796
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
21797
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
21798
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
21799
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
21800
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
21801
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
21802
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
21803
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
21804
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
21805
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
21806
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
21807
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
21808
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
21809
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
21810
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
21811
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
21812
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
21813
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
21814
+ /Users/pawenguyen/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
21815
+ /Users/pawenguyen/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
21816
+ /Users/pawenguyen/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
21817
+
21818
+
21819
+ Rendered /Users/pawenguyen/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.7ms)
21820
+
21821
+
21822
+ Started GET "/" for 127.0.0.1 at 2014-02-17 21:05:16 +0100
21823
+ Processing by HomeController#index as HTML
21824
+ Completed 500 Internal Server Error in 3ms
21825
+
21826
+ ActionView::MissingTemplate (Missing template home/index, application/index with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :raw, :ruby, :jbuilder, :coffee]}. Searched in:
21827
+ * "/Users/pawenguyen/apps/mousereco/spec/dummy/app/views"
21828
+ * "/Users/pawenguyen/apps/mousereco/app/views"
21829
+ ):
21830
+ actionpack (4.0.0) lib/action_view/path_set.rb:46:in `find'
21831
+ actionpack (4.0.0) lib/action_view/lookup_context.rb:115:in `find'
21832
+ actionpack (4.0.0) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template'
21833
+ actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:35:in `determine_template'
21834
+ actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:8:in `render'
21835
+ actionpack (4.0.0) lib/action_view/renderer/renderer.rb:42:in `render_template'
21836
+ actionpack (4.0.0) lib/action_view/renderer/renderer.rb:23:in `render'
21837
+ actionpack (4.0.0) lib/abstract_controller/rendering.rb:127:in `_render_template'
21838
+ actionpack (4.0.0) lib/action_controller/metal/streaming.rb:219:in `_render_template'
21839
+ actionpack (4.0.0) lib/abstract_controller/rendering.rb:120:in `render_to_body'
21840
+ actionpack (4.0.0) lib/action_controller/metal/rendering.rb:33:in `render_to_body'
21841
+ actionpack (4.0.0) lib/action_controller/metal/renderers.rb:26:in `render_to_body'
21842
+ actionpack (4.0.0) lib/abstract_controller/rendering.rb:97:in `render'
21843
+ actionpack (4.0.0) lib/action_controller/metal/rendering.rb:16:in `render'
21844
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
21845
+ activesupport (4.0.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
21846
+ /Users/pawenguyen/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/benchmark.rb:296:in `realtime'
21847
+ activesupport (4.0.0) lib/active_support/core_ext/benchmark.rb:12:in `ms'
21848
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
21849
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
21850
+ activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
21851
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:40:in `render'
21852
+ actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
21853
+ actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
21854
+ actionpack (4.0.0) lib/abstract_controller/base.rb:189:in `process_action'
21855
+ actionpack (4.0.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
21856
+ actionpack (4.0.0) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
21857
+ activesupport (4.0.0) lib/active_support/callbacks.rb:383:in `_run__2369871331618101081__process_action__callbacks'
21858
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
21859
+ actionpack (4.0.0) lib/abstract_controller/callbacks.rb:17:in `process_action'
21860
+ actionpack (4.0.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
21861
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
21862
+ activesupport (4.0.0) lib/active_support/notifications.rb:159:in `block in instrument'
21863
+ activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
21864
+ activesupport (4.0.0) lib/active_support/notifications.rb:159:in `instrument'
21865
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
21866
+ actionpack (4.0.0) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
21867
+ activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
21868
+ actionpack (4.0.0) lib/abstract_controller/base.rb:136:in `process'
21869
+ actionpack (4.0.0) lib/abstract_controller/rendering.rb:44:in `process'
21870
+ actionpack (4.0.0) lib/action_controller/metal.rb:195:in `dispatch'
21871
+ actionpack (4.0.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
21872
+ actionpack (4.0.0) lib/action_controller/metal.rb:231:in `block in action'
21873
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
21874
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
21875
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
21876
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
21877
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
21878
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
21879
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
21880
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
21881
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
21882
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
21883
+ actionpack (4.0.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
21884
+ actionpack (4.0.0) lib/action_dispatch/middleware/flash.rb:241:in `call'
21885
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
21886
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
21887
+ actionpack (4.0.0) lib/action_dispatch/middleware/cookies.rb:486:in `call'
21888
+ activerecord (4.0.0) lib/active_record/query_cache.rb:36:in `call'
21889
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
21890
+ activerecord (4.0.0) lib/active_record/migration.rb:369:in `call'
21891
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
21892
+ activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__3026938905634998287__call__callbacks'
21893
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
21894
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
21895
+ actionpack (4.0.0) lib/action_dispatch/middleware/reloader.rb:64:in `call'
21896
+ actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
21897
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
21898
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
21899
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
21900
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
21901
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
21902
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
21903
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
21904
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
21905
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
21906
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
21907
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
21908
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
21909
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
21910
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
21911
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
21912
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
21913
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
21914
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
21915
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
21916
+ /Users/pawenguyen/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
21917
+ /Users/pawenguyen/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
21918
+ /Users/pawenguyen/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
21919
+
21920
+
21921
+ Rendered /Users/pawenguyen/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.7ms)
21922
+
21923
+
21924
+ Started GET "/" for 127.0.0.1 at 2014-02-17 21:05:17 +0100
21925
+ Processing by HomeController#index as HTML
21926
+ Completed 500 Internal Server Error in 2ms
21927
+
21928
+ ActionView::MissingTemplate (Missing template home/index, application/index with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :raw, :ruby, :jbuilder, :coffee]}. Searched in:
21929
+ * "/Users/pawenguyen/apps/mousereco/spec/dummy/app/views"
21930
+ * "/Users/pawenguyen/apps/mousereco/app/views"
21931
+ ):
21932
+ actionpack (4.0.0) lib/action_view/path_set.rb:46:in `find'
21933
+ actionpack (4.0.0) lib/action_view/lookup_context.rb:115:in `find'
21934
+ actionpack (4.0.0) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template'
21935
+ actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:35:in `determine_template'
21936
+ actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:8:in `render'
21937
+ actionpack (4.0.0) lib/action_view/renderer/renderer.rb:42:in `render_template'
21938
+ actionpack (4.0.0) lib/action_view/renderer/renderer.rb:23:in `render'
21939
+ actionpack (4.0.0) lib/abstract_controller/rendering.rb:127:in `_render_template'
21940
+ actionpack (4.0.0) lib/action_controller/metal/streaming.rb:219:in `_render_template'
21941
+ actionpack (4.0.0) lib/abstract_controller/rendering.rb:120:in `render_to_body'
21942
+ actionpack (4.0.0) lib/action_controller/metal/rendering.rb:33:in `render_to_body'
21943
+ actionpack (4.0.0) lib/action_controller/metal/renderers.rb:26:in `render_to_body'
21944
+ actionpack (4.0.0) lib/abstract_controller/rendering.rb:97:in `render'
21945
+ actionpack (4.0.0) lib/action_controller/metal/rendering.rb:16:in `render'
21946
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
21947
+ activesupport (4.0.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
21948
+ /Users/pawenguyen/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/benchmark.rb:296:in `realtime'
21949
+ activesupport (4.0.0) lib/active_support/core_ext/benchmark.rb:12:in `ms'
21950
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
21951
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
21952
+ activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
21953
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:40:in `render'
21954
+ actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
21955
+ actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
21956
+ actionpack (4.0.0) lib/abstract_controller/base.rb:189:in `process_action'
21957
+ actionpack (4.0.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
21958
+ actionpack (4.0.0) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
21959
+ activesupport (4.0.0) lib/active_support/callbacks.rb:383:in `_run__2369871331618101081__process_action__callbacks'
21960
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
21961
+ actionpack (4.0.0) lib/abstract_controller/callbacks.rb:17:in `process_action'
21962
+ actionpack (4.0.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
21963
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
21964
+ activesupport (4.0.0) lib/active_support/notifications.rb:159:in `block in instrument'
21965
+ activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
21966
+ activesupport (4.0.0) lib/active_support/notifications.rb:159:in `instrument'
21967
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
21968
+ actionpack (4.0.0) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
21969
+ activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
21970
+ actionpack (4.0.0) lib/abstract_controller/base.rb:136:in `process'
21971
+ actionpack (4.0.0) lib/abstract_controller/rendering.rb:44:in `process'
21972
+ actionpack (4.0.0) lib/action_controller/metal.rb:195:in `dispatch'
21973
+ actionpack (4.0.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
21974
+ actionpack (4.0.0) lib/action_controller/metal.rb:231:in `block in action'
21975
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
21976
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
21977
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
21978
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
21979
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
21980
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
21981
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
21982
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
21983
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
21984
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
21985
+ actionpack (4.0.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
21986
+ actionpack (4.0.0) lib/action_dispatch/middleware/flash.rb:241:in `call'
21987
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
21988
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
21989
+ actionpack (4.0.0) lib/action_dispatch/middleware/cookies.rb:486:in `call'
21990
+ activerecord (4.0.0) lib/active_record/query_cache.rb:36:in `call'
21991
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
21992
+ activerecord (4.0.0) lib/active_record/migration.rb:369:in `call'
21993
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
21994
+ activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__3026938905634998287__call__callbacks'
21995
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
21996
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
21997
+ actionpack (4.0.0) lib/action_dispatch/middleware/reloader.rb:64:in `call'
21998
+ actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
21999
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
22000
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
22001
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
22002
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
22003
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
22004
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
22005
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
22006
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
22007
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
22008
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
22009
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
22010
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
22011
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
22012
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
22013
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
22014
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
22015
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
22016
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
22017
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
22018
+ /Users/pawenguyen/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
22019
+ /Users/pawenguyen/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
22020
+ /Users/pawenguyen/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
22021
+
22022
+
22023
+ Rendered /Users/pawenguyen/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.7ms)
22024
+
22025
+
22026
+ Started GET "/" for 127.0.0.1 at 2014-02-17 21:05:32 +0100
22027
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
22028
+ Processing by HomeController#index as HTML
22029
+ Rendered home/index.html.haml within layouts/application (2.9ms)
22030
+ Completed 200 OK in 160ms (Views: 159.0ms | ActiveRecord: 0.0ms)
22031
+
22032
+
22033
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-02-17 21:05:33 +0100
22034
+
22035
+
22036
+ Started GET "/assets/mousereco/tracker.js?body=1" for 127.0.0.1 at 2014-02-17 21:05:33 +0100
22037
+
22038
+
22039
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-02-17 21:05:33 +0100
22040
+
22041
+
22042
+ Started POST "/mousereco/api/v1/pageviews" for 127.0.0.1 at 2014-02-17 21:05:33 +0100
22043
+ Processing by Mousereco::Api::V1::PageviewsController#create as */*
22044
+ Parameters: {"url"=>"http://mouse.dev/", "visitor_key"=>"119d1444174213b", "pageview_key"=>"56551444174213c", "timestamp"=>"1392667533628", "window_height"=>"683", "window_width"=>"1274", "page_html"=>"<html><base href=\"http://mouse.dev/\"> <meta content=\"width=device-width, initial-scale=1.0\" name=\"viewport\"> <title>Mouse recorder</title> <link href=\"/assets/application.css?body=1\" media=\"screen\" rel=\"stylesheet\"> <script src=\"/assets/mousereco/tracker.js?body=1\"></script><style type=\"text/css\"></style></html>"}
22045
+ Can't verify CSRF token authenticity
22046
+ Completed 422 Unprocessable Entity in 2ms
22047
+
22048
+ ActionController::InvalidAuthenticityToken (ActionController::InvalidAuthenticityToken):
22049
+ actionpack (4.0.0) lib/action_controller/metal/request_forgery_protection.rb:163:in `handle_unverified_request'
22050
+ actionpack (4.0.0) lib/action_controller/metal/request_forgery_protection.rb:170:in `handle_unverified_request'
22051
+ actionpack (4.0.0) lib/action_controller/metal/request_forgery_protection.rb:177:in `verify_authenticity_token'
22052
+ activesupport (4.0.0) lib/active_support/callbacks.rb:377:in `_run__2990158195063125432__process_action__callbacks'
22053
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
22054
+ actionpack (4.0.0) lib/abstract_controller/callbacks.rb:17:in `process_action'
22055
+ actionpack (4.0.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
22056
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
22057
+ activesupport (4.0.0) lib/active_support/notifications.rb:159:in `block in instrument'
22058
+ activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
22059
+ activesupport (4.0.0) lib/active_support/notifications.rb:159:in `instrument'
22060
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
22061
+ actionpack (4.0.0) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
22062
+ activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
22063
+ actionpack (4.0.0) lib/abstract_controller/base.rb:136:in `process'
22064
+ actionpack (4.0.0) lib/abstract_controller/rendering.rb:44:in `process'
22065
+ actionpack (4.0.0) lib/action_controller/metal.rb:195:in `dispatch'
22066
+ actionpack (4.0.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
22067
+ actionpack (4.0.0) lib/action_controller/metal.rb:231:in `block in action'
22068
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
22069
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
22070
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
22071
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
22072
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
22073
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
22074
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
22075
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
22076
+ railties (4.0.0) lib/rails/railtie/configurable.rb:30:in `method_missing'
22077
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
22078
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
22079
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
22080
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
22081
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
22082
+ rack (1.5.2) lib/rack/conditionalget.rb:35:in `call'
22083
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
22084
+ actionpack (4.0.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
22085
+ actionpack (4.0.0) lib/action_dispatch/middleware/flash.rb:241:in `call'
22086
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
22087
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
22088
+ actionpack (4.0.0) lib/action_dispatch/middleware/cookies.rb:486:in `call'
22089
+ activerecord (4.0.0) lib/active_record/query_cache.rb:36:in `call'
22090
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
22091
+ activerecord (4.0.0) lib/active_record/migration.rb:369:in `call'
22092
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
22093
+ activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__869373605763989156__call__callbacks'
22094
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
22095
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
22096
+ actionpack (4.0.0) lib/action_dispatch/middleware/reloader.rb:64:in `call'
22097
+ actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
22098
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
22099
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
22100
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
22101
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
22102
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
22103
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
22104
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
22105
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
22106
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
22107
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
22108
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
22109
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
22110
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
22111
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
22112
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
22113
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
22114
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
22115
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
22116
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
22117
+ /Users/pawenguyen/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
22118
+ /Users/pawenguyen/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
22119
+ /Users/pawenguyen/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
22120
+
22121
+
22122
+ Rendered /Users/pawenguyen/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.8ms)
22123
+ Rendered /Users/pawenguyen/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.7ms)
22124
+ Rendered /Users/pawenguyen/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.2ms)
22125
+ Rendered /Users/pawenguyen/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (78.6ms)
22126
+
22127
+
22128
+ Started POST "/mousereco/api/v1/events" for 127.0.0.1 at 2014-02-17 21:05:37 +0100
22129
+ Processing by Mousereco::Api::V1::EventsController#create as */*
22130
+ Parameters: {"url"=>"http://mouse.dev/", "visitor_key"=>"119d1444174213b", "pageview_key"=>"56551444174213c", "timestamp"=>"1392667537062", "events"=>{"0"=>{"x"=>"218", "y"=>"41", "timestamp"=>"1392667534561", "type"=>"mousemove"}, "1"=>{"x"=>"222", "y"=>"30", "timestamp"=>"1392667534639", "type"=>"mousemove"}, "2"=>{"x"=>"217", "y"=>"45", "timestamp"=>"1392667534662", "type"=>"mousemove"}, "3"=>{"x"=>"223", "y"=>"27", "timestamp"=>"1392667535270", "type"=>"mousemove"}, "4"=>{"x"=>"234", "y"=>"2", "timestamp"=>"1392667535372", "type"=>"mousemove"}, "5"=>{"x"=>"234", "y"=>"2", "timestamp"=>"1392667535394", "type"=>"mousemove"}}}
22131
+ Can't verify CSRF token authenticity
22132
+ Completed 422 Unprocessable Entity in 3ms
22133
+
22134
+ ActionController::InvalidAuthenticityToken (ActionController::InvalidAuthenticityToken):
22135
+ actionpack (4.0.0) lib/action_controller/metal/request_forgery_protection.rb:163:in `handle_unverified_request'
22136
+ actionpack (4.0.0) lib/action_controller/metal/request_forgery_protection.rb:170:in `handle_unverified_request'
22137
+ actionpack (4.0.0) lib/action_controller/metal/request_forgery_protection.rb:177:in `verify_authenticity_token'
22138
+ activesupport (4.0.0) lib/active_support/callbacks.rb:377:in `_run__775649637809333152__process_action__callbacks'
22139
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
22140
+ actionpack (4.0.0) lib/abstract_controller/callbacks.rb:17:in `process_action'
22141
+ actionpack (4.0.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
22142
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
22143
+ activesupport (4.0.0) lib/active_support/notifications.rb:159:in `block in instrument'
22144
+ activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
22145
+ activesupport (4.0.0) lib/active_support/notifications.rb:159:in `instrument'
22146
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
22147
+ actionpack (4.0.0) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
22148
+ activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
22149
+ actionpack (4.0.0) lib/abstract_controller/base.rb:136:in `process'
22150
+ actionpack (4.0.0) lib/abstract_controller/rendering.rb:44:in `process'
22151
+ actionpack (4.0.0) lib/action_controller/metal.rb:195:in `dispatch'
22152
+ actionpack (4.0.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
22153
+ actionpack (4.0.0) lib/action_controller/metal.rb:231:in `block in action'
22154
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
22155
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
22156
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
22157
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
22158
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
22159
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
22160
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
22161
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
22162
+ railties (4.0.0) lib/rails/railtie/configurable.rb:30:in `method_missing'
22163
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
22164
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
22165
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
22166
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
22167
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
22168
+ rack (1.5.2) lib/rack/conditionalget.rb:35:in `call'
22169
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
22170
+ actionpack (4.0.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
22171
+ actionpack (4.0.0) lib/action_dispatch/middleware/flash.rb:241:in `call'
22172
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
22173
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
22174
+ actionpack (4.0.0) lib/action_dispatch/middleware/cookies.rb:486:in `call'
22175
+ activerecord (4.0.0) lib/active_record/query_cache.rb:36:in `call'
22176
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
22177
+ activerecord (4.0.0) lib/active_record/migration.rb:369:in `call'
22178
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
22179
+ activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__869373605763989156__call__callbacks'
22180
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
22181
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
22182
+ actionpack (4.0.0) lib/action_dispatch/middleware/reloader.rb:64:in `call'
22183
+ actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
22184
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
22185
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
22186
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
22187
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
22188
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
22189
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
22190
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
22191
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
22192
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
22193
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
22194
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
22195
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
22196
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
22197
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
22198
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
22199
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
22200
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
22201
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
22202
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
22203
+ /Users/pawenguyen/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
22204
+ /Users/pawenguyen/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
22205
+ /Users/pawenguyen/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
22206
+
22207
+
22208
+ Rendered /Users/pawenguyen/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.1ms)
22209
+ Rendered /Users/pawenguyen/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.8ms)
22210
+ Rendered /Users/pawenguyen/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.1ms)
22211
+ Rendered /Users/pawenguyen/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (26.4ms)
22212
+
22213
+
22214
+ Started GET "/mousereco" for 127.0.0.1 at 2014-02-17 21:05:37 +0100
22215
+ Processing by Mousereco::VisitorsController#index as HTML
22216
+ Filter chain halted as #<Proc:0x007fd2589401d8@/Users/pawenguyen/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.0/lib/action_controller/metal/http_authentication.rb:71> rendered or redirected
22217
+ Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
22218
+
22219
+
22220
+ Started GET "/mousereco" for 127.0.0.1 at 2014-02-17 21:05:38 +0100
22221
+ Processing by Mousereco::VisitorsController#index as HTML
22222
+ Mousereco::Visitor Load (0.4ms) SELECT "mousereco_visitors".* FROM "mousereco_visitors"
22223
+ Mousereco::Pageview Load (3.5ms) SELECT "mousereco_pageviews".* FROM "mousereco_pageviews" WHERE "mousereco_pageviews"."visitor_id" = ? [["visitor_id", 1]]
22224
+ Mousereco::Pageview Load (0.4ms) SELECT "mousereco_pageviews".* FROM "mousereco_pageviews" WHERE "mousereco_pageviews"."visitor_id" = ? [["visitor_id", 2]]
22225
+ Mousereco::Pageview Load (0.2ms) SELECT "mousereco_pageviews".* FROM "mousereco_pageviews" WHERE "mousereco_pageviews"."visitor_id" = ? [["visitor_id", 3]]
22226
+ Mousereco::Pageview Load (0.2ms) SELECT "mousereco_pageviews".* FROM "mousereco_pageviews" WHERE "mousereco_pageviews"."visitor_id" = ? [["visitor_id", 4]]
22227
+ Mousereco::Pageview Load (0.2ms) SELECT "mousereco_pageviews".* FROM "mousereco_pageviews" WHERE "mousereco_pageviews"."visitor_id" = ? [["visitor_id", 5]]
22228
+ Mousereco::Pageview Load (0.2ms) SELECT "mousereco_pageviews".* FROM "mousereco_pageviews" WHERE "mousereco_pageviews"."visitor_id" = ? [["visitor_id", 6]]
22229
+ Mousereco::Pageview Load (0.2ms) SELECT "mousereco_pageviews".* FROM "mousereco_pageviews" WHERE "mousereco_pageviews"."visitor_id" = ? [["visitor_id", 7]]
22230
+ Rendered /Users/pawenguyen/apps/mousereco/app/views/mousereco/visitors/index.html.haml within layouts/mousereco/application (181.2ms)
22231
+ Completed 200 OK in 265ms (Views: 230.1ms | ActiveRecord: 11.5ms)
22232
+
22233
+
22234
+ Started GET "/assets/mousereco/bootstrap.min.css?body=1" for 127.0.0.1 at 2014-02-17 21:05:39 +0100
22235
+
22236
+
22237
+ Started GET "/assets/mousereco/mousereco.css?body=1" for 127.0.0.1 at 2014-02-17 21:05:39 +0100
22238
+
22239
+
22240
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-02-17 21:05:39 +0100
22241
+
22242
+
22243
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-02-17 21:05:39 +0100
22244
+
22245
+
22246
+ Started GET "/assets/mousereco/pageviews.js?body=1" for 127.0.0.1 at 2014-02-17 21:05:39 +0100
22247
+
22248
+
22249
+ Started GET "/assets/mousereco/mousereco.js?body=1" for 127.0.0.1 at 2014-02-17 21:05:39 +0100
22250
+
22251
+
22252
+ Started GET "/mousereco" for 127.0.0.1 at 2014-02-17 22:54:05 +0100
22253
+ Processing by Mousereco::VisitorsController#index as HTML
22254
+ Mousereco::Visitor Load (0.6ms) SELECT "mousereco_visitors".* FROM "mousereco_visitors"
22255
+ Mousereco::Pageview Load (0.4ms) SELECT "mousereco_pageviews".* FROM "mousereco_pageviews" WHERE "mousereco_pageviews"."visitor_id" = ? [["visitor_id", 1]]
22256
+ Mousereco::Pageview Load (0.5ms) SELECT "mousereco_pageviews".* FROM "mousereco_pageviews" WHERE "mousereco_pageviews"."visitor_id" = ? [["visitor_id", 2]]
22257
+ Mousereco::Pageview Load (0.2ms) SELECT "mousereco_pageviews".* FROM "mousereco_pageviews" WHERE "mousereco_pageviews"."visitor_id" = ? [["visitor_id", 3]]
22258
+ Mousereco::Pageview Load (0.1ms) SELECT "mousereco_pageviews".* FROM "mousereco_pageviews" WHERE "mousereco_pageviews"."visitor_id" = ? [["visitor_id", 4]]
22259
+ Mousereco::Pageview Load (0.2ms) SELECT "mousereco_pageviews".* FROM "mousereco_pageviews" WHERE "mousereco_pageviews"."visitor_id" = ? [["visitor_id", 5]]
22260
+ Mousereco::Pageview Load (0.1ms) SELECT "mousereco_pageviews".* FROM "mousereco_pageviews" WHERE "mousereco_pageviews"."visitor_id" = ? [["visitor_id", 6]]
22261
+ Mousereco::Pageview Load (0.2ms) SELECT "mousereco_pageviews".* FROM "mousereco_pageviews" WHERE "mousereco_pageviews"."visitor_id" = ? [["visitor_id", 7]]
22262
+ Rendered /Users/pawenguyen/apps/mousereco/app/views/mousereco/visitors/index.html.haml within layouts/mousereco/application (257.7ms)
22263
+ Completed 200 OK in 295ms (Views: 269.1ms | ActiveRecord: 9.0ms)
22264
+
22265
+
22266
+ Started GET "/assets/mousereco/bootstrap.min.css?body=1" for 127.0.0.1 at 2014-02-17 22:54:06 +0100
22267
+
22268
+
22269
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-02-17 22:54:06 +0100
22270
+
22271
+
22272
+ Started GET "/assets/mousereco/mousereco.js?body=1" for 127.0.0.1 at 2014-02-17 22:54:06 +0100
22273
+
22274
+
22275
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-02-17 22:54:06 +0100
22276
+
22277
+
22278
+ Started GET "/assets/mousereco/mousereco.css?body=1" for 127.0.0.1 at 2014-02-17 22:54:06 +0100
22279
+
22280
+
22281
+ Started GET "/assets/mousereco/pageviews.js?body=1" for 127.0.0.1 at 2014-02-17 22:54:06 +0100
@@ -1 +1 @@
1
- 4164
1
+ 14326
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mousereco
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Paweł Nguyen
@@ -9,50 +9,64 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2014-02-16 00:00:00.000000000 Z
12
+ date: 2014-02-17 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
- version_requirements: !ruby/object:Gem::Requirement
15
+ name: rails
16
+ requirement: !ruby/object:Gem::Requirement
16
17
  requirements:
17
18
  - - ~>
18
19
  - !ruby/object:Gem::Version
19
20
  version: '4.0'
20
21
  type: :runtime
21
- requirement: !ruby/object:Gem::Requirement
22
+ prerelease: false
23
+ version_requirements: !ruby/object:Gem::Requirement
22
24
  requirements:
23
25
  - - ~>
24
26
  - !ruby/object:Gem::Version
25
27
  version: '4.0'
26
- prerelease: false
27
- name: rails
28
28
  - !ruby/object:Gem::Dependency
29
- version_requirements: !ruby/object:Gem::Requirement
29
+ name: jquery-rails
30
+ requirement: !ruby/object:Gem::Requirement
30
31
  requirements:
31
- - - ! '>='
32
+ - - '>='
32
33
  - !ruby/object:Gem::Version
33
34
  version: '0'
34
35
  type: :runtime
36
+ prerelease: false
37
+ version_requirements: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - '>='
40
+ - !ruby/object:Gem::Version
41
+ version: '0'
42
+ - !ruby/object:Gem::Dependency
43
+ name: haml
35
44
  requirement: !ruby/object:Gem::Requirement
36
45
  requirements:
37
- - - ! '>='
46
+ - - '>='
38
47
  - !ruby/object:Gem::Version
39
48
  version: '0'
49
+ type: :runtime
40
50
  prerelease: false
41
- name: jquery-rails
42
- - !ruby/object:Gem::Dependency
43
51
  version_requirements: !ruby/object:Gem::Requirement
44
52
  requirements:
45
- - - ! '>='
53
+ - - '>='
46
54
  - !ruby/object:Gem::Version
47
55
  version: '0'
48
- type: :development
56
+ - !ruby/object:Gem::Dependency
57
+ name: sqlite3
49
58
  requirement: !ruby/object:Gem::Requirement
50
59
  requirements:
51
- - - ! '>='
60
+ - - '>='
52
61
  - !ruby/object:Gem::Version
53
62
  version: '0'
63
+ type: :development
54
64
  prerelease: false
55
- name: sqlite3
65
+ version_requirements: !ruby/object:Gem::Requirement
66
+ requirements:
67
+ - - '>='
68
+ - !ruby/object:Gem::Version
69
+ version: '0'
56
70
  description: Mousereco is a mouse recording Rails engine with a web interface used
57
71
  to replay user visits
58
72
  email:
@@ -62,9 +76,6 @@ executables: []
62
76
  extensions: []
63
77
  extra_rdoc_files: []
64
78
  files:
65
- - LICENSE.txt
66
- - README.md
67
- - Rakefile
68
79
  - app/assets/javascripts/mousereco/mousereco.js
69
80
  - app/assets/javascripts/mousereco/pageviews.js
70
81
  - app/assets/javascripts/mousereco/tracker.js.erb
@@ -98,17 +109,17 @@ files:
98
109
  - db/migrate/20140130215132_add_limit_to_timestamps.rb
99
110
  - lib/generators/mousereco/install/install_generator.rb
100
111
  - lib/generators/mousereco/install/templates/mousereco.rb
101
- - lib/mousereco.rb
102
112
  - lib/mousereco/engine.rb
103
113
  - lib/mousereco/version.rb
114
+ - lib/mousereco.rb
104
115
  - lib/tasks/mousereco_tasks.rake
116
+ - LICENSE.txt
117
+ - Rakefile
118
+ - README.md
105
119
  - spec/api/mousereco/events_api_spec.rb
106
120
  - spec/api/mousereco/pageviews_api_spec.rb
107
121
  - spec/controllers/mousereco/pageviews_controller_spec.rb
108
122
  - spec/controllers/mousereco/visitors_controller_spec.rb
109
- - spec/dummy/Gemfile
110
- - spec/dummy/Gemfile.lock
111
- - spec/dummy/Rakefile
112
123
  - spec/dummy/app/assets/javascripts/application.js
113
124
  - spec/dummy/app/assets/stylesheets/application.css
114
125
  - spec/dummy/app/controllers/application_controller.rb
@@ -119,7 +130,6 @@ files:
119
130
  - spec/dummy/bin/bundle
120
131
  - spec/dummy/bin/rails
121
132
  - spec/dummy/bin/rake
122
- - spec/dummy/config.ru
123
133
  - spec/dummy/config/application.rb
124
134
  - spec/dummy/config/boot.rb
125
135
  - spec/dummy/config/database.yml
@@ -137,6 +147,7 @@ files:
137
147
  - spec/dummy/config/initializers/wrap_parameters.rb
138
148
  - spec/dummy/config/locales/en.yml
139
149
  - spec/dummy/config/routes.rb
150
+ - spec/dummy/config.ru
140
151
  - spec/dummy/db/development.sqlite3
141
152
  - spec/dummy/db/migrate/20140216151256_create_mousereco_events.mousereco.rb
142
153
  - spec/dummy/db/migrate/20140216151257_create_mousereco_pageviews.mousereco.rb
@@ -145,6 +156,8 @@ files:
145
156
  - spec/dummy/db/schema.rb
146
157
  - spec/dummy/db/seeds.rb
147
158
  - spec/dummy/db/test.sqlite3
159
+ - spec/dummy/Gemfile
160
+ - spec/dummy/Gemfile.lock
148
161
  - spec/dummy/log/development.log
149
162
  - spec/dummy/log/test.log
150
163
  - spec/dummy/public/404.html
@@ -153,6 +166,7 @@ files:
153
166
  - spec/dummy/public/favicon.ico
154
167
  - spec/dummy/public/robots.txt
155
168
  - spec/dummy/public/test.html
169
+ - spec/dummy/Rakefile
156
170
  - spec/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705
157
171
  - spec/dummy/tmp/cache/assets/development/sprockets/1510a9c9dc22b2be9eed26a8ed2dabe8
158
172
  - spec/dummy/tmp/cache/assets/development/sprockets/16d2919a6d361fd8c6e82b279d64067d
@@ -240,17 +254,17 @@ require_paths:
240
254
  - lib
241
255
  required_ruby_version: !ruby/object:Gem::Requirement
242
256
  requirements:
243
- - - ! '>='
257
+ - - '>='
244
258
  - !ruby/object:Gem::Version
245
259
  version: '0'
246
260
  required_rubygems_version: !ruby/object:Gem::Requirement
247
261
  requirements:
248
- - - ! '>='
262
+ - - '>='
249
263
  - !ruby/object:Gem::Version
250
264
  version: '0'
251
265
  requirements: []
252
266
  rubyforge_project:
253
- rubygems_version: 2.2.2
267
+ rubygems_version: 2.0.3
254
268
  signing_key:
255
269
  specification_version: 4
256
270
  summary: Mouse recording engine for Rails