Rails & Agile web development

Hey, is there any documentation anywhere that shows the Methodology and
Process of makeing a rails application?

Cheers

stevep wrote:

Hey, is there any documentation anywhere that shows the Methodology and
Process of makeing a rails application?

/Agile Web D. with Rails—Second Edition/ by Dave T., Mike
Clark, David Heinemeier H., Leon Breedt, Thomas F., Andrea
Schwarz; Pragmatic Bookshelf, 2006, ISBN 0977616630.

The “methodology” is you write test cases for every feature, as you
write it.

At the higher level, you should use the general “Agile” methodology of
weekly releases, refactoring everything including databases, and
streamlining your deployment. Your test cases should cover everything
so well that if someone asks you to tweak the code and upload its
latest version to a live site, you should be able to stop what you are
doing, tweak, and upload your code, including your work in progress.
Your tests should be so high quality that you can use them to gate
your integrations and deployments, with high confidence that passing
test results mean your deployment won’t break the live site.


Phlip
http://c2.com/cgi/wiki?ZeekLand ← NOT a blog!!

Steve,

I have found the following resources on agile/lean methodologies useful

  1. Lean Software Development (http://www.poppendieck.com/ld.htm). The
    site (http://www.poppendieck.com) is also useful.

  2. Practices of an Agile Developer
    (https://pragprog.com/titles/pad/practices-of-an-agile-developer/)

  3. Getting Real" (https://pragprog.com/titles/pad/practices-of-an-agile-developer/). This
    one is written by the folks who Developed RoR and BaseCamp.

  4. Martin F.'s site also has some cool info on agile methodology,
    tdd and other related topics. Start here
    https://pragprog.com/titles/pad/practices-of-an-agile-developer/

hope this helps.

Thanks for your felp guys

Steve (once again with the correct links),

I have found the following resources on agile/lean methodologies useful

  1. Lean Software Development (http://www.poppendieck.com/ld.htm). The
    site (http://www.poppendieck.com) is also useful.

  2. Practices of an Agile Developer
    (https://pragprog.com/titles/pad/practices-of-an-agile-developer/)

  3. Getting Real" (http://gettingreal.37signals.com/). This one is
    written by the folks who Developed RoR and BaseCamp.

  4. Martin F.'s site also has some cool info on agile methodology,
    tdd and other related topics. Start here
    The New Methodology

hope this helps.