Stuff that I find very influential in my current thinking about programming in Rails
Fast Tests
Having a fast test suite is the best gift we can give ourselves and get out of the depressing time suck of Rails loading for each test run.
Fast tests by Corey Haines.
OOP on Rails
There has been some very good thinking going on lately about what to do to make rails apps more maintainable. This movement has been coming along and the recommendations result in fast test suites and decoupled code. What if you could back out of a feature easily rather than having it's various elements spread throughout your codebase?
Uncle Bob Martins great talk:
This is a terrific (free) book by the author of Exceptional Ruby Advi Grimm:
http://objectsonrails.com/CSS
There is some good work being done in the CSS world as well. Object oriented CSS for one thing. The idea is that you trade off having more classes on your objects for more maintainable pluggable blocks of display code. Twitter Bootstrap is an example of this methodology.
The payoff of this method is having organized understandable CSS code. The short message is to stop stop the context based CSS madness.