Displaying 2 results from an estimated 2 matches for "codingmonkey".
Did you mean:
codingmonkeys
2006 Feb 22
3
OT: svn installation tutorial
Hello friendly Rails community,
I''m sorry for this OT post, I''ve just switched to Mac and as I see there
are so many friendly mac users here, may I ask is there another
good/nice Subversion installation tutorial instead of this one:
http://developer.apple.com/tools/subversionxcode.html?
Is there another way to install it without compiling Subversion by
myself? For example via
2008 Mar 15
9
Spaces in Ruby on Rails and how to avoid them!
Hi,
I just started learning ruby on rails and I am having hard time with
white spacing!
Here is the piece of code that will not work:
validates_format_of
:image_url,
:with => %r{\.(gif|jpg|png)$}i,
:message => "must be a URL for a GIF, JPG or PNG image"
and here is the piece of code that will work:
validates_format_of :image_url,
:with => %r{\.(gif|jpg|png)$}i,
:message