Rails and nested has_many :through
Rails does not support nested has_many :though => associations. There is a plugin however which enables this, and JackDangers branch on github has patches for Rails 2.3.2.
script/plugin install git://github.com/JackDanger/nested_has_many_through.git
Which enables you to do the something like the following:
class User < ActiveRecord::Base
has_many :accounts
has_many :memberships, :though => :accounts
has_many :groups, :through => :memberships
end
Github have built an awsome issue tracker which is perfect for OS and internal projects, with keyboard shortcuts, a la gmail!
Check out the live demo at http://sinitter.moocode.com/
Flash messages hanging around?
If you are making use of the Rails flash helper to display messages, what do you do when they are not clearing after rendering a page? You need to use Flash.now see the following gist for an example.
Yet another twitter app idea
Planning on checking out tweetapp at some point to build a nifty twitter application on Google App Engine. This should give me a chance to brush off the cobwebs off my python book, although I will praise the day they allow us to use Ruby.
