I am wondering if there is any relatively easy way to speed up my console load time, which is starting to approach 30 seconds. I have a lot of subclasses whose methods don\
You can speed it up by adding :require => nil to the slow Gemfile entries and require them manually. e.g.
gem 'jammit', :require => nil
I also addressed this issue in a meetup i've had. This seems to be a bug in ruby 1.9.2 (see comments of this patch: https://gist.github.com/1008945)
You can fix it by patching your 1.9.2 by the gist i just linked or upgrading to 1.9.2-head or 1.9.3-head.