Your are here: Home // Posts Tagged With assets
Rails 3.1 Asset Pipeline
Podcast: Play in new window
| Download
Assets in Rails before version 3.1 were kept in the /public folder. In Rails 3.1 they’ve been moved to /app/assets and function in a slightly different way. Here are some of the highlights:
Javascript assets written in Coffeescript will now be compiled to Javascript.
CSS assets written in SASS or SCSS will now be compiled to CSS
Other templating...
Rails Engines
Podcast: Play in new window
| Download
Rails Engines are a terrific way of mounting on Ruby on Rails application into another.
A Rails Engine is basically a Rails application with an Engine class installed. The main application—the application your engine is mounted into—uses the generators, rake tasks, and routes from engines automatically. As of Rails 3.1, rake tasks are provided...

