search for: helou

Displaying 11 results from an estimated 11 matches for "helou".

Did you mean: helo
2005 Mar 04
17
active record logs format
Hi, I think this has already been asked on the list, but I can''t seem to be able to find it again: currently, active record does some weird thing with its sql logs i.e.: [4;33mSQL (0.000000) [1;37mPRAGMA table_info(map_locations) how do I remove the "[4;35m" thx Jean
2006 Feb 15
6
error_messages_for trouble
I am trying so learn how to do custom validations. The validation works as expected, but I can''t get "error_messages_for" to display. How is the name of the object supposed to be formated? Where is this object created, the model or controller? What am I doing wrong here? #### Model ######################## class MyFolder < ActiveRecord::Base def validate # validation
2005 Feb 28
5
Using session data in model
Hi, I want to use my some session data when I validate som data in the model. The specific problem I have is that I present different forms data based on gender, and then dependent of the gender, there''s different fields that needs validation. I''m wondering what''s the preffered way of doing this. The session data is not present in the model, i.e: class Myclass
2006 Jan 09
11
Scaleability and Sharing of code between apps
Application 1 is an auditing application called AuditSystem. Application 2 is a quality control appllication called QC. App1 has a couple of classes, including models, that i would like to use with App2. I would like a change in a class to be felt in both applications. How do i acheive this without copying and pasting code?? At the moment im feeling i should have made the whole thing one
2005 Jun 07
3
BBEdit Ruby & Rails Syntax Module available
I''ve made a Ruby & Rails syntax coloring module for BBEdit. This is a "Codeless Language Module", so it will only work with BBEdit 8+. It''s basically a giant list of Ruby and Rails keywords, method names, and so on. It''s both Ruby and Rails because BBedit only lets you associate a file type with one language module. The file is available here:
2005 Mar 08
43
e=MCv
Dears, What is this software runned as "e" showed on most Rails Videos and providing a tree browser (explorer) and editor ? Avail for Linux ? Gretz -- Mathieu
2006 Nov 08
14
Increased memory requirements on 1.2
I just recently upgraded a rails app of mine to run on edge (and the 1-2-pre-release branch) and I noticed my fcgis required roughly 6-8MBs more memory after just a couple requests. For example, each fcgi on edge would start around 40MB and rise to ~46MBs after a couple requests. I downgraded my app back to 1.1.6 and each fcgi would start at around 33MBs and rise to ~38MB. As a result of the
2009 Apr 02
7
Announcing a new Ruby journal
2 April 2009 My name is Martin Streicher. I am pleased to announce three new publications dedicated to web developers. Red: The Journal of Ruby Development Facade: The Journal of Front-end Development Tabula: The Journal of Open Source Database Development The three publications obviously have a great number of topics in common between then, and much that is unique. Where ever possible,
2006 Feb 21
29
script/console
The agile book says "You can inspect variables, set values, add other breakpoints, and generally have a good time". This is very sweet and totally useless. For example, I want to see the session variable, the cookies variable and so on. These names are unknown. I think I guess that the things that are available depend on where you put the breakpoint() call. I''ve tried a
2006 Jan 04
0
Plugins unit testing
Hi, I am refactoring a utility class from my application in a plugin and I am trying to get the unit tests to pass. (they were going pretty fine before I moved things into a plugin) I did find the ''rake test_plugins'' command, which seems to trigger my unit tests, however the load path does not seem to include my plugin''s directories, so all my previously valid require
2007 Jan 19
0
Acts_as_taggable (the gem) woes (solved)
Hi, I had to battle quite a bit to find how to load acts_as_taggable without using require_gem. where I previously had require_gem ''acts_as_taggable'' I tried replacing by the obvious gem ''acts_as_taggable'' require ''acts_as_taggable'' this failed miserably. The trick is that the acts_as_taggable module is in a file named taggable in the lib