search for: zamith

Displaying 5 results from an estimated 5 matches for "zamith".

2012 May 23
8
Engine's Application Controller
Hi, I''ve been using rails 3 engines and (at least in my experience) the engine''s application controller is overidden by the app''s application controller. Wouldn''t it be better if the app would just load on top of the engine? I mean that if an engine''s application controller has methods or anything else that does not collide with the stuff defined
2013 Mar 15
5
link_to should have its body and url arguments reversed
I think the link_to helper method is quite confusing with its arguments order: link_to body, url link_to "Click me", @person Why is it thay way round? I want to make a "link to [the] person", so I would expect the order to be: link_to @person, "Click me" It reads much more natural. You don''t "link to [the] body", you "link to
2013 Apr 10
0
Revolutions blog: March roundup
....ly/Yk79wt Thomas Dinsmore introduces the new features in the forthcoming Revolution R Enterprise 6.2 http://bit.ly/Yk777L, including R 2.15.3 http://bit.ly/Yk79ws , stepwise regression for big data http://bit.ly/Yk79wu and other enhancements to the RevoScaleR package http://bit.ly/Yk79ww Rodrigo Zamith created an interactive website that uses ggplot2 to compare basketball teams: http://bit.ly/Yk777M . The code behind the application is also available: http://bit.ly/Yk777N An overview of the 170+ probability distributions available in R: http://bit.ly/Yk79wx The Metro Meeting Point web applicati...
2011 Nov 18
0
Capybara + Selenium + JS
Hi, I''ve recently been working with Capybara 0.4.0 and the bundled Selenium driver in Rails 2.3.8 with Ruby 1.8.7 to do integration testing with javascript. The problem I have is that Capybara''s page object does not seem to be affected by the Javascript, even though I can see the changes happening in the browser, they are not reflected in that object''s markup. Here is
2012 Sep 05
2
Partials and helpers
Hi, Is there any reason why helpers cannot render partials? I would like to do something like this in the layout: <body> <%= magic_header %> <%= yield %> </body> and then have a magic_header helper def magic_helper ...do some magic... render partial: "magic_helper" end Why is this wrong? Cumprimentos, Luís Ferreira -- You received this