[Rails] Re: Rails equivalent of Delphi SetRange()

2010-07-11 Thread lardawge
It might help you a bunch to think of it as Ruby and not Rails. Most of what your doing is writing Ruby and in many situations you will need to know how. Look through the Array methods here and you should get an idea of what can be done; http://ruby-doc.org/core/classes/Array.html Rails also

[Rails] Re: Authlogic with nifty_authentication, why use both?

2009-11-17 Thread lardawge
Nifty_authentication is a generator to generate the files needed to use authlogic in a rails app. Not to be confused with what the gem does. It takes the place of building the User, session and adds some helper methods. Run script/generate nifty_authentication --help to see what it does. On Nov

[Rails] Re: strange email syntax issue with ActionMailer

2009-10-08 Thread lardawge
Known issue with rails 2.3.3 2.3.4. https://rails.lighthouseapp.com/projects/8994/tickets/2340-action-mailer-cant-deliver-mail-via-smtp-on-ruby-191#ticket-2340-19 There is a workaround listed in the thread. On Oct 8, 11:11 am, Zac Zheng rails-mailing-l...@andreas-s.net wrote: I am getting a

[Rails] Re: HELP -- I'm missing something

2009-08-20 Thread lardawge
Well since Event.all should have returned an array and not thrown an error, my guess is there is a problem with your model/database. Go into the terminal and open up a session using script/console, at the prompt enter Event.all and see what it returns... On Aug 20, 1:51 pm, spokra

[Rails] Re: Data Modeling (sorry - sort of long)

2009-07-30 Thread lardawge
I agree with Marnen. To add.. Your thinking to hard. Sounds like you have just enough knowledge to be dangerous. Find a good developer and then let him/her do there job. You come up with how the application should be interacted with and then let the developer figure out how that is going to