Need advice for code in NetBeans Rails/JRuby tutorials

View: Old framed views
14 Messages — Rating Filter:   Alert me  
Need advice for code in NetBeans Rails/JRuby tutorials - Hello, I am looking for some best-practices advice. Here is some code in a tutorial that I am writing: ... Loading...
On Tue, Jul 15, 2008 at 7:07 AM, ckutler <chris.kutler@...> wrote: > > I am looking for some best-practices... Loading...
Or to expand a bit on what Anthony posted - def speak voice = VoiceManager.getInstance.getVoice('kevin16') ... Loading...
Also, Post as a model name is a bad idea, since 'post' is a common verb in Rails-land. I'd rename it. -- James... Loading...
On Tue, Jul 15, 2008 at 7:53 AM, James Moore <banshee@...> wrote: > Also, Post as a model name is a bad idea,... Loading...
When I changed voice = VoiceManager.getInstance.getVoice('kevin16') to voice =... Loading...
On Tue, Jul 15, 2008 at 5:21 PM, Chris Kutler <Chris.Kutler@...> wrote: > When I changed > > voice =... Loading...
Hi Chris: The converted syntax would be: voice = VoiceManager.get_instance.get_voice('kevin16') Hope that... Loading...
I filed a bug against myself. http://www.netbeans.org/issues/show_bug.cgi?id=140193 Thanks, Chris James Moore... Loading...
undefined method `sanitize' for HTML::Sanitizer:Class Can you help this poor newby figure out what gem I need... Loading...
On Tue, Jul 15, 2008 at 5:12 PM, Chris Kutler <Chris.Kutler@...> wrote: > undefined method `sanitize' for... Loading...
Cool. Thanks Anthony. I appreciate your help. Anthony Richardson wrote: > > > On Tue, Jul 15, 2008 at 7:07 AM,... Loading...
On Mon, Jul 14, 2008 at 4:37 PM, ckutler <chris.kutler@...> wrote: > > I am looking for some best-practices... Loading...
Thanks Nick, I appreciate your clarification and taking the time to teach me a thing or... Loading...