As apneadiving points out, Sprockets (what Rails 3.1 uses for its asset pipeline) supports LESS.
To configure your Rails app to support LESS, you can add the gem to the assets group of your Gemfile:
group :assets do
gem 'less'
end
Then, run bundle install to get the less gem and its dependencies (which includes the libv8 gem, by the way, and can take awhile to install).
Now it's just a matter of using the .css.less extension with the stylesheets in your ./app/assets/stylesheets directory. Note that you won't get any helpful messages if you have any syntax errors in your LESS files (this tripped me up for a second).