homeASCIIcasts

Recent Episodes

  1. 225

    Upgrading to Rails 3 Part 1 Other translations: Pt It Es

    In the first part of this series on upgrading a Rails 2 application to Rails 3, we'll start off by setting up Rails 3.0 Release Candidate in a clean environment. The rails_upgrade plugin will then help us determine what needs upgrading.

    Tags: rails-30 plugins

  2. 224

    Controllers in Rails 3 Other translations: Pt Es De It

    This episode covers changes to controllers in Rails 3 including embedded flash notices, permanent cookies and respond_with.

    Tags: rails-30 controllers

  3. 223

    Charts Other translations: Es It

    There are a number of JavaScript charting libraries available. In this episode we use Highchart in a Rails application.

    Tags: views performance

  4. 222

    Rack in Rails 3 Other translations: Es It

    The router in Rails 3 is fully compatible with Rack. Learn how to embed Sinatra into an app, handle redirects, and improve on Rails Metal.

    Tags: rails-30 routing performance

  5. 221

    Subdomains in Rails 3 Other translations: It Es

    It is now possible to add subdomains to Rails 3 without the use of additional plugins. Learn how in this episode.

    Tags: routing rails-30

  6. 220

    PDFkit Other translations: It Es

    Generating PDFs in plain Ruby can be a lot of work. Instead, consider generating PDFs from HTML using PDFKit.

    Tags: plugins views

  7. 219

    Active Model Other translations: It Es Cn Fr

    In Rails 3 the non-database functionality of Active Record is extracted out into Active Model. This allows you to cleanly add validations and other features to tableless models.

    Tags: models

  8. 218

    Making Generators in Rails 3 Other translations: It Es

    Generators in Rails 3 have been rewritten to use Thor which means the code used to create a generator is quite different. Here you will learn the new way to make generators in Rails 3.

    Tags: rails-30 tools

  9. 217

    Multistep Forms Other translations: It Es

    In this episode we create a multistep form, or wizard, from scratch.

    Tags: forms views active-record

  10. 216

    Generators in Rails 3 Other translations: It Es

    Generators in Rails 3 have been completely rewritten to be more modular. This allows you to customize any generator to fit your specific preferences.

    Tags: rails-30 plugins