Skip to content

blazingcloud/ruby_lessons

Folders and files

NameName
Last commit message
Last commit date

Latest commit

b90ad55 · Sep 30, 2012

History

52 Commits
Mar 15, 2010
Apr 12, 2010
Nov 14, 2011
Apr 12, 2010
Apr 12, 2010
Apr 12, 2010
Nov 14, 2011
Oct 10, 2010
Apr 16, 2012
Mar 15, 2010
Sep 30, 2012
Oct 10, 2010
Aug 4, 2010
May 16, 2011
Dec 6, 2011
Nov 15, 2011
Oct 17, 2010
Aug 4, 2010
Mar 16, 2011
Apr 19, 2012
Nov 14, 2011
Mar 7, 2011
Mar 16, 2011
Sep 10, 2012
Sep 10, 2012

Repository files navigation

Welcome to Ruby!

Setup

  • Check out the git repository

      git clone git://github.com/blazingcloud/ruby_lessons.git
    
  • Install RSpec

      gem install rspec
    
  • Configure RSpec (optional). If you're running a bash shell, you can put the following in your .bash_profile to make the output a bit nicer.

      alias rspec="rspec --color --format nested"
    
  • For lesson 14

      gem install fakeweb
    

Resources

###Ruby Language

###Good online references for Ruby & Rails

###When you have a question...

First, search for the answer (keywords, exact error string)

If you didn’t find the answer and you need to ask your question:

  1. Include version numbers: $ ruby -v ruby 1.8.6 (2008-08-11 patchlevel 287) [universal-darwin9.0]
  2. Note where you have already looked for an answer
  3. If you can, include code snippets that reproduce the problem in isolation

###Other good resources

Related Projects

As a last resort

Credits

  • Test-First Teaching Concept by Alex Chaffee
  • All exercises cross-published at TestFirst.org where some were created in collaboration with Liah Hansen
  • Most examples and class by Sarah Allen