Displaying 2 results from an estimated 2 matches for "dondi".
Did you mean:
donde
2008 Feb 03
4
Extract vowels and consonants using Ruby Regex
...e can''t simply translate this code fragment to Ruby
regex syntax.
So, the question is: how can I accomplish the end result in Ruby (a-e-
i-o-u + the conditional treatment of ''y'' as a vowel *if there is no
other vowel before or after it.*) ? Any thoughts are appreciated.
Dondi.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
To unsubscribe from this group, send...
2007 Aug 02
4
ActiveRecord Limitation (Advance)
Or is it ?
Need to be able to :-
@search =
Form.find(:all, :include=>[:form_type, :form_type_items], :conditions=>....)
I need in the Form model a :form_type_items, the question is, what is
the relationship type?
Current Models:-
Form
belongs_to :form_type
FormType
has_many :form_types
has_many :form_type_items
FormTypeItem
Belongs_to :form_type
Form
----------------
| id |