search for: query_trac

Displaying 7 results from an estimated 7 matches for "query_trac".

Did you mean: query_trace
2009 Feb 06
0
gahh! how do you install the query_trace plugin?
Hello- I am trying to install the query_trace plugin here: http://github.com/ntalbott/query_trace/tree/master I can''t figure out how to install it. I''ve tried script/install plugin, I''ve tried svn, I''ve tried downloading the files and placing them in the vendor/plugins directory, nothing seems to work. T...
2007 Oct 24
0
using query_trace
I''m having trouble figuring out how to run query_trace. I was told I could run it through cygwin but I can''t start my mongrel server using cygwin (throws errors). Any help would be useful. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Ta...
2007 Nov 06
1
how to install plugins?
Hello, I''m having problems installing any plugins :S I wanna know if I''m doing something wrong $ruby script/plugin discover ....Y...Y...Y answering to add urls...then $ruby script/plugin install query_trace svn: Connection closed unexpectedly Is this because of my firewall? and another small problem I have is that It''s hard to find the svn url for many plugins :( but I can always find the source code on http :( -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~-----------...
2006 Jun 20
3
WEBrick just decided to take a hiatus on me
...activesupport 1.3.1 db_structure 1.0.2 localization_generator 1.0.0 money 1.7.1 pdf-writer 1.1.2 rake 0.7.1 RedCloth 3.0.4 SimpleSearch 0.5.0 source 0.0.1 transaction-simple 1.3.0 Plugins active_rbac dialog_helper dollars_and_cents engines flash_helper query_trace Does anyone have any idea why all of a sudden that things would just croak on my box? Thanks in advance, -- ~d www.razorpress.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060620/8784298c/attachment...
2006 Jul 22
3
How do you find out what action rendered a page
Hi I have this list page that has some rjs templates updating parts of it including a table of results. i''m trying to put pagination on the table. thing is lots of different actions update the table and they have their own paginators. anyway i have this code at the bottom which worked for another page <%= pagination_links_each(@offer_pages,:window_size =>4) do |n|
2008 May 21
2
running rspec on 1.2.3 ??
Hi, Anyone know how to run rspec on 1.2.3? It fails out of the box.... I newly downloaded rspec, rspec_on_rails and ran the command ruby script/generate rspec ==>>> Does this script work right? from the instructions http://rspec.info/documentation/rails/install.html I then created the directories in spec: controllers, fixtures, helpers, models, views I then created the
2010 Feb 14
2
has_many :through eager loading only loading one record
..., :foreign_key => ''tag_id'' has_many :tags, :through => :dish_taggings, :source => :dish_tag end In the controller, I eager-load like this: @tags = DishTag.find(:all, :include => {:dish_taggings => :dish}) Here are the resulting queries (with traces thanks to the query_trace plugin): DishTag Columns (1.2ms) SHOW FIELDS FROM `tag` DishTag Load (0.9ms) SELECT * FROM `tag` WHERE ( (`tag`.`type` = ''DishTag'' ) ) app/controllers/tags_controller.rb:5:in `index'' DishTagging Load (6.9ms) SELECT `dish_tag`.* FROM `dish_tag` WHERE (`dish...