Next weds From: ocruby@yahoogroups.com [mailto:ocruby@yahoogroups.com] On Behalf Of biuniu Sent: Friday, June 01, 2007 10:06 AM To: ocruby@yahoogroups.com ...
Yes, though we may have a new venue for the meeting after that. Stay tuned. From: ocruby@yahoogroups.com [mailto:ocruby@yahoogroups.com] On Behalf Of biuniu ...
I'm in. From: ocruby@yahoogroups.com [mailto:ocruby@yahoogroups.com] On Behalf Of Scott Hodson Sent: Tuesday, June 05, 2007 4:10 PM To: ocruby@yahoogroups.com ...
I'm definitely planning on being there. ... doug ____________________________________________________________________________________ Building a website is a...
Hey everyone, I have two extra new unmarked 'ajax on rails' and 'rails cookbook' books available for sale $40 for both books. You can pick it up, or I can...
Don't worry, you'll know. I look like this, I'm the guy in the blue shirt http://tiffanyh.typepad.com/photos/uncategorized/2007/04/19/tiffanyportraits ...
I starting following a tutorial to set up my repository and made a mistake in importing files. I'd like to start over fresh and was tempted to do a rm -r...
Loc Nguyen
lochnguyen@...
Jun 7, 2007 6:00 am
916
I believe once you've deleted the directory that the repository resides in then there will be no traces left of that repository as the entire repository is...
... That's ok to do - just go ahead and nuke the repository directory and start over again to get a fresh start on creating and initializing your repository....
I want to thank all of those that came last night. We had 7 in attendance. Michael Hartl was there and we gave him quite a bit of the floor as he had a lot to...
This was forwarded to me from the SD Ruby _____ I am looking of a Ruby on Rails, +AJAX ,+CSS. The position is permanent (I know who would want permanent with...
Hello everyone, Have any of you exported data to an Excel file from a RoR app before? Worst case I could make a CSV file but I'd like to go with the Excel...
Loc Nguyen
lochnguyen@...
Jun 12, 2007 8:02 pm
921
I believe there is the equivalent of Perl's Spreadsheet::Write (I think that's the name), of the module that lets you programatically write excel 97 file...
... You probably want something like the Spreadsheet/Excel module: http://rubyforge.org/projects/spreadsheet This is described as being a port of the perl...
I recently sold my Costa Mesa-based software company and am looking to explore 2 new projects that I'd like to see built out in RoR. I'm looking for smart...
Pretty cool application! I haven't had a chance to play with it too much, but I bounced around on the demo a bit. It's a project that implements functionality...
Hello, I need to get attribute values in a model. However, I don't know which attributes I need to access until runtime. I was thinking I should use...
Loc Nguyen
lochnguyen@...
Jun 16, 2007 4:18 am
926
Send code! Can you send 1) Your Topic.rb model class file 1) Your table definition of the topics table either a migration file or CREATE TABLE sql ...
Sure thing. Thanks for your time, Scott: class Topic < ActiveRecord::Base belongs_to :survey end class CreateTopics < ActiveRecord::Migration def self.up ...
Loc Nguyen
lochnguyen@...
Jun 16, 2007 4:42 am
929
Michael, That works! Thank you very much. Still, I'm curious as to why instance_variable_get doesn't do the same thing. Loc...
Loc Nguyen
lochnguyen@...
Jun 16, 2007 5:42 am
930
HI Loc: It's coz they aren't instance variables of Ruby object. Remember that in ruby usage such as topic.career or topic.career = x are not direct access to...
... When you're working with an ActiveRecord model, you need to work *with* the framework and that means using the model object's protocol to work with it, not...