search for: elight

Displaying 4 results from an estimated 4 matches for "elight".

Did you mean: flight
2010 May 12
3
Best Gem For Threaded Comment Storage?
...hich plugin/gem should be considered "State of the Art"? I''m starting with these URLs: http://github.com/rails/acts_as_tree http://github.com/rails/acts_as_nested_set http://github.com/collectiveidea/awesome_nested_set http://github.com/chris/better_nested_set http://github.com/elight/acts_as_commentable_with_threading I''m looking for opinionated people with opinions about my question. -- 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-/JYPxA39Uh5TLH...
2007 Sep 14
7
Posted this in "dev" last night but I''m not sure that anyone reads it
...rioRunner#run treats "pending" scenarios as an error case. We both believed this to be a little odd as we both thought that pending would just be a branch and not an error. That said, I thought that there may be a reasonable explanation. Evan Light IMs (all): sleight42 Twitter: elight http://evan.tiggerpalace.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/rspec-users/attachments/20070914/3aa25dc4/attachment.html
2010 Jul 14
3
`stack level too deep` when overwriting `to_json`
I''m using [acts_as_commentable_with_threading](http://github.com/elight/acts_as_commentable_with_threading/), and it worked fine until I tried to overwrite the to_json function to include more details about the associated user. Here''s part of the comment class (which was originally defined in the plugin, but I moved it to the models folder, a move which seems...
2009 Mar 11
12
Eager loading comments associated with user submissions.
...d eager loading in other parts of my application to reduce the amount of database queries, but when I apply the same practices in this situation it doesn''t seem to work. Here is what I am working with: I am using the "acts_as_commentable_with_threading" plugin that I forked from elight on github http://github.com/elight/acts_as_commentable_with_threading/tree/master the association that is created is as follows class Submission < ActiveRecord::Base has_many :comment_threads, :class_name => "Comment", :as => :commentable, :dependent => :destroy,...