Latest Screencasts (page 2)
Polymorphism with Many-to-Many Associations – A Teach Me To Code Tutorial
Teach Me To Code - 2011-06-03 - free
Polymorphic associations are very simple, as are many-to-many associations. When you blend the two, it’s not nearly as simple. Since there isn’t a working build-in mechanism for many-to-many polymorphic associations. Here’s a quick demo of what happens if you try to set up a traditional has_many :through association with a polymorphic association. I also show [...]
Watch this screencastMany to Many Associations in Ruby on Rails – A Teach Me To Code Tutorial
Teach Me To Code - 2011-05-27 - free
I had several requests in UserVoice to provide a Many to Many tutorial in Rails. This is a demonstration of how to put together a “has and belongs to many” association and a “has many through” association. This is somewhat basic to Ruby on Rails, but important if you need to associate different models. Download [...]
Watch this screencastRails 3.1 Beta – Sprockets, CoffeeScript, and JQuery – A Teach Me To Code Tutorial
Teach Me To Code - 2011-05-07 - free
Ruby on Rails 3.1 is moving to use Sprockets to compile CoffeeScript into JavaScript and include JQuery in it’s JavaScript by default. This is a quick demo of how it all hangs together to manage your JavaScript in Rails 3.1.
Watch this screencastRailsCasts #264 Guard
Railscasts - 2011-05-02 - free
Guard watches files and runs a command after a file is modified. This allows you to automatically run tests in the background, restart your development server, reload the browser, and more.
Watch this screencastRailsCasts #263 Client Side Validations
Railscasts - 2011-04-25 - free
Showing validation errors inline as the user is filling out the form can lead to a better use experience. Learn how to do this using the Client Side Validations gem.
Watch this screencastCoffeeScript Basics – A Teach Me To Code Tutorial
Teach Me To Code - 2011-04-15 - free
CoffeeScript is now going to be a default installation with Ruby on Rails. So, I installed CoffeeScript and NodeJS and have been playing with it for the last hour or so. Here are the basics you need to know to use CoffeeScript including functions, arrays, hashes (objects), control functions (if, else, unless) and loops. [...]
Watch this screencastRailsCasts #261 Testing JavaScript with Jasmine
Railscasts - 2011-04-11 - free
Are you testing your JavaScript? Learn how to add specs using Jasmine. This episode also covers jQuery integration with jasmine-jquery.
Watch this screencastHow to Use RVM
Screencasts Org - 2011-04-08 - freeIn our Ruby developer career there may come a time when we have to deploy our app with other versions of Ruby. We may also take a fancy to implementations such as MacRuby, and want to try them out. However, installing many different versions of Ruby on the same box...
Watch this screencastRailsCasts #260 Messaging with Faye
Railscasts - 2011-04-04 - free
Faye is a subscription/publishing server which makes it easy to do push notifications within a Rails app.
Watch this screencastConfiguring ActiveRecord in Sinatra
Screencasts Org - 2011-03-31 - freeIn a previous episode, Using ActiveRecord with Sinatra, we showed you how to use ActiveRecord and Sinatra to build a URL shortener. We showed how to get ActiveRecord up and running in your Sinatra application, and now in this screencast, we'll show you the various ways on how to configure...
Watch this screencast