Latest Screencasts (page 4)
Rails Shell Application in 10 easy steps
Teach Me To Code - 2009-10-07 - free
In this screencast you will see how to make a rails application capable of parse and execute shell commands using the ruby function %x The screencast start with basic shell commands, creation of a ruby script demonstrating the concept and finally follow the recipe of 10 easy steps to build your rails shell application. Download [...]
Watch this screencastStoring Encrypted Data Securely using Active Record
Teach Me To Code - 2009-09-29 - free
Learn how to save data such as bank information, social security number, or other sensitive information in your Rails application securely by encrypting the data. By using spikex’s gem Strongbox, you can use private and public keys to secure your data in your database to where you must have the password to decrypt them. Download [...]
Watch this screencastBasic Ruby on Rails Routing
Teach Me To Code - 2009-09-25 - free
Ruby on Rails gives you some simple but powerful tools for mapping URL’s and HTTP Verbs to your Controllers and Views. Here is a simple walkthrough of 4 of these ‘Routes’: default routes, regular routes, named routes, and RESTful routes.
Watch this screencastIntroduction to Outside-in Development with Cucumber
Teach Me To Code - 2009-09-06 - free
This is a basic introduction to integration testing with cucumber. In it, I describe how to use cucumber and rspec to implement a feature in a web application, emphasizing the importance of writing tests before code, which is often referred to as TDD (test-driven development) or BDD (behavior-driven development, a refinement of the original TDD). [...]
Watch this screencastCreating a Twitter Clone in Rails – Part 1
Teach Me To Code - 2009-09-06 - free
In this series, I attempt to recreate a twitter style application called ‘Flitter’. In this installment, I show you how to create an authenticated system easily using existing tools. I also show how to generate test data to simulate an active application. Finally, you will learn how to set up self-referencial associations.
Watch this screencastCreating a Simple Plugin
Teach Me To Code - 2009-08-02 - free
Learn how to create a simple plugin using Ruby on Rails. This video will teach you how to turn a view helper into it’s own plugin, and extend the ActionView::Base.
Watch this screencastIntroduction to Ruby on Rails 2
Teach Me To Code - 2009-07-26 - free
Presentation given to introduce Rails for URUG Rails Workshop 2009. In this screencast, you can learn about Rails from an outside-in approach.
Watch this screencastRails CRUD Example
Teach Me To Code - 2009-07-26 - free
This is a walkthrough on how to create a simple address book using Ruby on Rails v2.1.
Watch this screencast