homeASCIIcasts

Recent Episodes

  1. 330

    Better SASS With Bourbon

    If you are tired of the browser vendor prefixes in CSS, take a look at Bourbon. It provides Sass mixins and functions to make CSS more convenient.

    Tags: plugins views

  2. 328

    Twitter Bootstrap Basics

    Twitter Bootstrap can help make beautiful web apps quickly by providing you with useful CSS and JavaScript. Here you will learn how to include it into Rails with the twitter-bootstrap-rails gem.

    Tags: plugins views

  3. 326

    ActiveAttr

    ActiveAttr provides what Active Model left out. If you need to create a table-less model with features similar to Active Record, read this episode.

    Tags: models plugins

  4. 324

    Passing Data to JavaScript

    There are a variety of ways to pass variables from a Rails application to JavaScript. Here we show three techniques: a script tag, a data attribute, and the Gon gem.

    Tags: views plugins

  5. 304

    OmniAuth Identity

    With the release of OmniAuth 1.0 there is a new Identity strategy which allows users to register/login with a password if they don't want to use an external provider.

    Tags: forms plugins

  6. 302

    In-place Editing

    Edit an attribute in-place without leaving a page using the Best In Place gem. Learn how to add validations and support for various field types.

    Tags: forms ajax views

  7. 300

    Contributing to Open Source

    GitHub makes it easier than ever to contribute to open source with pull requests. Here we show how to submit a pull request to the VCR project.

    Tags: tools testing

  8. 298

    Getting Started With Spree

    Spree allows you to quickly turn a Rails project into a full eCommerce application. Here we show how to set it up and configure the look and feel of the store.

    Tags: ecommerce plugins

  9. 296

    Mercury Editor

    Mercury allows you to edit a section of HTML directly in the web browser through a WISYIWYG editor. Here we show how to integrate Mercury into a Rails app and save the changes back to the database.

    Tags: plugins views

  10. 294

    Playing With PJAX

    PJAX allows you to quickly update a section of a page using AJAX with automatic pushState support. Here we show how to use both pjax_rails and rack-pjax gems.

    Tags: ajax plugins