search for: ignorem

Displaying 2 results from an estimated 2 matches for "ignorem".

Did you mean: ignore
2013 Mar 15
2
Icalendar.Parse(StringIO.new(aString)) complains about missing method, bytesize
I need to send an ics file to a web service, so however it gets there it will arrive as a string. Is there another way to begin Icalendar''s Parse than with a file? I''m currently sending the file using the curl command... curl -v --data-urlencode ics at invite.ics http://127.0.0.1:4567/ics2event I''ve tried curl''s --data-binary and sinatra''s
2011 Apr 15
1
Nested STI?
Hi, I''m having some issues when trying to nest multiple STIs. Is possible? i.e.: class Author :has_many => :posts end class Reviewer < Author end class Administrator < Reviewer class Post belongs_to :author end admin = Administrator.create Post.create(:author => admin) -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: