Displaying 5 results from an estimated 5 matches for "gernon".
Did you mean:
gernot
2006 Dec 04
10
Avoiding SQL Injection in :order?
This thread references:
http://www.ruby-forum.com/topic/90258#new
http://www.ruby-forum.com/topic/82349#143790
ActiveRecord''s find() method has built in ways to avoid SQL injection by
using the format
> :conditions => [ "user_name = ?", user_name]
Is there any such system for escaping injection in :order? It seems to
only take a string and feed it to the SQL
2006 Oct 24
3
Subversion handling of .AppleDouble etc in mixed OSX, Linux environment
Hi,
Can some one point me to some resources on managing a mixed OSX and
Linux environment (Linux desktops and OSX laptops). When it comes to
.AppleDouble, :2eDS_Store etc what happens when folks are commiting
from both OSes?
When a project is created on Linux and imported into svn and co''d to
OSX or the other way around how are these hidden files versioned? In
the first case does this
2006 Oct 24
13
How can my boss take rails seriously with bugs like this?
The Time::next_week method is supposed to give the time of the start of
the next week. But look at this, it cocks up :
>> t=Time.parse "Monday October 16th 2006"
=> Mon Oct 16 00:00:00 BST 2006
>> t.next_week
=> Mon Oct 23 00:00:00 BST 2006
>> t.next_week.next_week
=> Tue Oct 24 00:00:00 BST 2006
>> t.next_week.next_week.next_week
=> Mon Oct 30
2006 Jan 27
27
Preferred Ruby Editor/IDE for OS X?
Just a quick question, if I were tired of typing ruby into a terminal
editor, say I wanted, oh, a scroll bar, mouse support, and maybe
syntax highlighting? Anyone know os a good Ruby/Rails editor or IDE,
one that runs on OS X, possibly in Java?
-Josh
-----------
Due to the recent increase in spam and falsely sent email, I now PGP
Sign all of my outgoing mail to prove my identity. This
2007 Jan 11
0
Functional tests with actions that send files
I have a number of actions that use the spreadsheet/excel library to
generate an Excel spreadsheet based on model data and send it to the
user using the send_file method.
For a while, I''ve been testing these methods with assert_response
:success, and then checking the response headers to make sure the file
at least looks like what I should be getting. But it occurred to me
recently that