From d8de59aacee07942bd8d8ea7475fc4eedbbf94ec Mon Sep 17 00:00:00 2001 From: Demitry Toumilovich Date: Mon, 19 Jan 2015 12:38:59 +0100 Subject: [PATCH 1/2] Hound test. --- app/controllers/gadgets_controller.rb | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/controllers/gadgets_controller.rb b/app/controllers/gadgets_controller.rb index 7410a41..056193a 100644 --- a/app/controllers/gadgets_controller.rb +++ b/app/controllers/gadgets_controller.rb @@ -2,6 +2,10 @@ class GadgetsController < ApplicationController before_filter :authenticate_user! def index + # testing houng PRs + + # is the extra line detected? :trollface: + # sorts collection @search = Gadget.belonging_to(current_user.id).search(params[:q]) @all_gadgets = @search.result.page(params[:page]).per_page(10).order("created_at DESC") From 78e712cf30610cec8c31938dfe2cc65920b21b1b Mon Sep 17 00:00:00 2001 From: DemitryT Date: Mon, 19 Jan 2015 14:00:59 +0100 Subject: [PATCH 2/2] Revert "Hound test." This reverts commit d8de59aacee07942bd8d8ea7475fc4eedbbf94ec. --- app/controllers/gadgets_controller.rb | 4 ---- 1 file changed, 4 deletions(-) diff --git a/app/controllers/gadgets_controller.rb b/app/controllers/gadgets_controller.rb index 056193a..7410a41 100644 --- a/app/controllers/gadgets_controller.rb +++ b/app/controllers/gadgets_controller.rb @@ -2,10 +2,6 @@ class GadgetsController < ApplicationController before_filter :authenticate_user! def index - # testing houng PRs - - # is the extra line detected? :trollface: - # sorts collection @search = Gadget.belonging_to(current_user.id).search(params[:q]) @all_gadgets = @search.result.page(params[:page]).per_page(10).order("created_at DESC")