By default, Rails only precompiles application.js and application.css (and all non-JS/CSS assets). If you want it to precompile another file (which you need to do if you use javascript_include_tag, et al. in your layout), you need to add your file to the list of precompiled files.
Open config/environments/production.rb, and there should be a commented out line that begins with config.assets.precompile and an explanation above it. Uncomment this line and change it to:
config.assets.precompile += %w(stylesheets/style.css)
(use the path to style.css if that's not the right directory).
To reproduce this on development, you would have to modify development.rb to have all the same asset settings as production.rb.
[Edit]
As you've found, you can start the built-in Rails server in another environment from the command line--however, this effects everything (class reloading, database connections, email settings, etc.) in addition to the asset pipeline settings, so it can sometimes be deceiving at best (unanticipated side-effects) and dangerous at worst (accidentally sending emails to users). Not that it's not useful, just be careful. ;)