CSC/ECE 517 Fall 2009/wiki1b 13 Resources For Rails

From Expertiza_Wiki
Revision as of 01:24, 22 September 2009 by Objectoriented (talk | contribs)
Jump to navigation Jump to search

About this Page

This page is a resource for more information regarding the Rails application framework. Consider it an index page for Rails resouces that also has definitions and extra information a user will find helpful before they go to the resource. Ruby programmers that want to get started with Rails are the target audience. We do not cover information regarding IDE's. We chose the following topics as they are relevant to the target audience:

  1. General
  2. Tutorials
  3. Testing
  4. Debugging

Each section starts with an introduction to convey the coverage provided by that topic. Since information is usually made more clear through examples, we point out when resources provide them. You can see this information in our reviews. A review the following fields:



Title:
Type:
Examples:
Summary:
Rating:
Reason for Rating:
Link:



The reviews give you information about what you might expect in the resource. Ratings are out of 5 stars. 5 stars is the highest rating.

This page is not meant to be a source of completely new information regarding the Rails platform. The new and unique content is our intro and reviews. We also provide a list of definitions at the end of the page. This page is meant to be used as a starting point for someone interested in more resources for Rails. We hope you find the information helpful!

For feedback please contact handles: objectoriented or cybo on the NCSU Expertiza system.

Resources for Rails

General

Below are general Ruby on Rails resources. They fall into three categories: rails documentation, platform issues, popularity.



Title: Ruby on Rails Main Site
Type: Installation Instruction, Documentation
Examples: Yes
Summary: This is the main site where you can download Ruby on Rails, see examples, and read documentation.
Rating: *****
Reason for Rating: As a new web platform, Ruby on Rails has been enormously successful in large part because of the resources for the quick install and short time it takes to learn to be productive. This is due to the main resource, rubyonrails.org
Link: http://rubyonrails.org/



Title:
Type:
Examples:
Summary:
Rating:
Reason for Rating:
Link: http://en.wikipedia.org/wiki/Ruby_on_Rails



Title:
Type:
Examples:
Summary:
Rating:
Reason for Rating:
Link: http://rubyonrails.org/documentation



Title:
Type:
Examples:
Summary:
Rating:
Reason for Rating:
Link: http://arstechnica.com/security/news/2009/09/ruby-on-rails-vulnerability-affects-twitter-ie8-immune.ars



Title:
Type:
Examples:
Summary:
Rating:
Reason for Rating:
Link: http://www.planetrubyonrails.org/



Title:
Type:
Examples:
Summary:
Rating:
Reason for Rating:
Link: http://weblog.rubyonrails.org/2009/9/4/xss-vulnerability-in-ruby-on-rails



Title:
Type:
Examples:
Summary:
Rating:
Reason for Rating:
Link: http://www.techcrunch.com/2008/05/01/twitter-said-to-be-abandoning-ruby-on-rails/



Title:
Type:
Examples:
Summary:
Rating:
Reason for Rating:
Link: http://rails100.pbworks.com/



Tutorials

Below are resources for tutorials. Some are more detailed than others...



Title: Rolling with Ruby on Rails
Type: Getting Started Tutorial
Examples: The Rails cookbook application.
Summary: This is a good starting point for someone new to Ruby and Rails. It starts assuming you don't have Ruby installed. At the end of the tutorial, a user should have a fully functioning Rails environment and a sample application. The second part of the extends the cookbook example while describing more features of Rails. At the end of the tutorial there are Rails success stories and even more info about features of Rails such as caching, validation callbacks, and transactions.
Rating: ****
Reason for Rating: This is great starting point. The drawbacks are: 1 - tutorial assumes you are installing on Windows 2 - tutorial is not up to date with the latest Rails framework.
Link: http://oreilly.com/ruby/archive/rails.html, http://oreilly.com/ruby/archive/rails2.html



Title: Four Days on Rails
Type: Tutorial or Documentation for Rails beginners
Examples: Yes. To do list application.
Summary: This resource splits the tutorial into 4 session, thus 'Four Days on Rails.' The tasks are simple and it is actually possible to complete them all in one day. The tutorial refers back to documentation where needed. This gives the user a chance to get more in-depth information where needed.
Rating: ***
Reason for Rating: Four Days on Rails is written in a very causal manner. There tone is not very professional but the content is good for getting started.
Link: http://rails.homelinux.org/


Title: Really Getting Started in Rails
Type: Blog
Examples: No
Summary: This blog inspired by the 'Rolling with Ruby on Rails' article. The author briefly covers some topics not covered by the tutorial.
Rating: **
Reason for Rating: This is a very informal post without much substance. It is interesting reading after someone has completed a tutorial such as 'Rolling with Ruby on Rails.'
Link: http://www.slash7.com/articles/2005/01/24/really-getting-started-in-rails



Title:
Type:
Examples:
Summary:
Rating:
Reason for Rating:
Link: http://www.ibm.com/developerworks/linux/library/l-rubyrails/



Title:
Type:
Examples:
Summary:
Rating:
Reason for Rating:
Link: http://onlamp.com/pub/a/onlamp/2005/06/09/rails_ajax.html



Title:
Type:
Examples:
Summary:
Rating:
Reason for Rating:
Link: http://jrhicks.net/Projects/rails/has_many_and_belongs_to_many.pdf



Title:
Type:
Examples:
Summary:
Rating:
Reason for Rating:
Link: http://www.erikveen.dds.nl/distributingrubyapplications/rails.html



Title:
Type:
Examples:
Summary:
Rating:
Reason for Rating:
Link: http://digitalmediaminute.com/howto/fc4rails/



Testing

Below are reviews that describe resources that can be used by Ruby on Rails to conduct testing. Some of them are tutorials and some are just information that you need to know. This page also provides some definitions used by the links. In most cases the text in those links is intuitive however if you don’t understand something you can refer to the definition section.



Title: Test-First Programming With Ruby
Type: tutorial
Examples Provided: Yes
Summary: Teaches how to use Test::Unit, specifically how it works, how to set it up and run it, explains the difference between error and failure, explains how to do test refactoring and introduces to a new tool called ZenTest
Rating: *****
Reason for Rating: This is great starting point for people who never done unit testing.
Link: http://www.scribd.com/doc/3499573/TestFirst-Programming-With-Ruby



Title: A Guide to Testing Rails Applications
Type: guide
Examples: Yes
Summary: This guide gives instructions on unit model testing, functional controller testing, test integration, rake tasks to run the tests, test setup and teardown, testing routes and mailer testing. The reader should note that this is a guide not a tutorial. Therefore the user must be familiar with Test::Unit framework already in order to use knowledge from this resource.
Rating: ****
Reason for Rating: No source code for examples is provided.
Link: http://guides.rubyonrails.org/testing.html



Title: Getting Started with Autotest
Type: tutorial
Examples: No
Summary: This tutorial gives reasons to why autotest utility was created and teaches how to use it. Specifically it covers the following topics: why autotest, install autotest, run autotest, configure plugins. This is a fairly good tutorial and needs to be used by people who are tired of rerunning their tests after a change to their code was made. In order to complete this tutorial it is required that the user would have a code and a series of tests to test it since source code for this tutorial is not provided.
Rating: ****
Reason for Rating: It would be easier to learn the material if source code was provided.
Link: http://ph7spot.com/articles/getting_started_with_autotest



Title: ZenTest Documentation
Type: Documentation
Examples: Yes, but they are not sufficient.
Summary: This documentation covers the use of the ZenTest package (there is nothing more to expect from the documentation). This package should be used by people who want to speed up their test facility creation and overall testing process. In order to use the resource to the full advantage the reader should have some source code written prior to use of information provided by this resource.
Rating: ****
Reason for Rating: Documentation could use more examples, and it should provide source code for those examples.
Link: http://ph7spot.com/articles/getting_started_with_autotest



Debuging

Below are reviews to resources that provide the user with useful (and sometimes maybe not so useful) links to pages that contain material on debugging in Rails environment. When the search of these links was conducted it was noted that the most popular debugger was ruby-debug, and 2 loggers, Logger and Log4r. Hence the links provided in these section will be given for those packages. It is assumed that the reader has intermediate knowledge of working with Ruby on Rails and has written some applications.



Title: Basics of use of ruby-debug
Type: tutorial, vodeocast, fibonacci method
Examples: Yes
Summary: Assumes that a user hasn't installed the gem and explains how to do it. It contains explanation of basic commands such as how to view current context, step through the code and set breakpoints. It is a very simple and easy tutorial and provides an excellent good starting point
Rating: *****
Reason for Rating: This is great starting point.
Link: http://cardero.textdrive.com/~eventualbuddha/ruby-debug-1-basics.mov



Title: Basics of use of ruby-debug in Rails
Type: tutorial, vodeocast
Examples: Yes, To Do List
Summary: Assumes that a user hasn't installed the gem and explains how to do it. It contains explanation of basic commands such as how to view current context, step through the code, breakpoints and and how to change variable values while debuggin. It is a very simple and easy tutorial and provides a good starting point
Rating: ****
Reason for Rating: No link for the source code of the example was provided
Link: http://media.railscasts.com/videos/054_debugging_rails.mov



Title: Basics of Reading of a Stack Trace
Type: tutorial, vodeocast
Examples: Yes
Summary: Demonstrates how to read and use a stack trace.
Rating: ****
Reason for Rating: No link for the source code of the example was provided, could use more than one example.
Link: http://media.railscasts.com/videos/024_the_stack_trace.mov



Title: ruby-debug Documentation
Type: tutorial/documenation
Examples: Yes
Summary: Goes over all of the documentation of ruby-debug using examples. Despite that it is a documentation (which is usually hard to read) it is a fairly decent document.
Rating: ****
Reason for Rating: Nor source code for examples is provided.
Link: http://bashdb.sourceforge.net/ruby-debug.html



Title: Basics of Logger Use
Type: videocast/tutorial
Examples: Yes
Summary: Teaches how to do write custom messages to the log, use the logger for custom classes, customize the severity of messages and logger customization.
Rating: ****
Reason for Rating: No source code for the example is provided
Link: http://media.railscasts.com/videos/056_the_logger.mov



Title: Logger Documentation
Type: documentation
Examples: No
Summary: Hard cold documentation. Provides you with the description of methods and variables.
Rating: ***
Reason for Rating: No examples and documentations are always hard to read.
Link: http://www.ruby-doc.org/stdlib/libdoc/logger/rdoc



Title: Log4r Documentation
Type: Documentation
Examples: Yes, they are included in the examples folder after the gem is installed
Summary: A thorough Log4r documentation on the usage of Log4r.
Rating: ****
Reason for Rating: Documentations are always a hard read, not much fun there.
Link: http://log4r.sourceforge.net/manual.html



Definitions

BDDWikipedia definition. Behavior Driven Development. In plain English it means that when you work on a project you define its behavior, not the technical details of its implementation. Say you work with a customer on a webcatalog. You shouldn’t bore him/her with the technical detail of how you are going to do it. Just say that catalog will probably have administrators who can edit it, users who can view it, a shopping cart so that the product could be checked out, login and logout pages etc. That will define what this webcatalog can do (its behavior).

Core dump - Wikipedia definition. In simpler terms it is the record of the state of the computer when it crashed, i.e. contents of registers, contents of memory (not all of it, just parts that are related to the program that was executing)

Post-mortem debugging - the act of debugging the core dump of a process

rake – ruby make utility

RoRWikipedia definition. Abbreviation for Ruby on Rails

TDDWikipedia definition. Test Driven Development. In other words you write a test before you write your code. Say you know that you have to write a method named do_something. Before writing it you will write a test for it, test_do_something and only then do_something. This methodology helps you to 1) define what your method should do exactly, since before you wrote it you already have a test for it so in some sense you already know what you expect your method to do 2)verify if you defined your method the way you wanted, because if you didn’t then your test will most likely fail

XPWikipedia definition. Extreme Programming. A key concept is that at least one pair of eyes should look at your code, say a fellow developer. They might be able to find errors that you are not able to. Say you wrote a method and it doesn’t the way you wanted it to. Let your programmer friend take a look at it. Frequent testing is also a part of this methodology.

ZenTest – a set of tools that are used for testing in Ruby on Rails. Also it is a name of the tools in the ZenTest tool package. It should be installed separately. To install use: gem install ZenTest (Windows) or sudo gem install ZenTest (Linux)