Ruby on Rails 3 Tutorial: Learn Rails by Example

(häftad)

av Michael Hartl

Bloggar      
Format:
Häftad (paperback)
Utgiven:
2011-01-24
Språk:
Engelska
Ruby on Rails 3 Tutorial: Learn Rails by Example by Michael Hartl has become a must read for developers learning how to build Rails apps.

Peter Cooper, Editor of Ruby Inside

 

Using Rails 3, developers can build web applications of exceptional elegance and power. Although its remarkable capabilities have made Ruby on Rails one of the worlds most popular web development frameworks, it can be challenging to learn and use. Ruby on Rails 3 Tutorial is the solution. Leading Rails developer Michael Hartl teaches Rails 3 by guiding you through the development of your own complete sample application using the latest techniques in Rails web development.

 

Drawing on his experience building RailsSpace, Insoshi, and other sophisticated Rails applications, Hartl illuminates all facets of design and implementationincluding powerful new techniques that simplify and accelerate development.

 

Youll find integrated tutorials not only for Rails, but also for the essential Ruby, HTML, CSS, JavaScript, and SQL skills youll need when developing web applications. Hartl explains how each new technique solves a real-world problem, and he demonstrates this with bite-sized code thats simple enough to understand, yet novel enough to be useful. Whatever your previous web development experience, this book will guide you to true Rails mastery.

 

This book will help you

  • Install and set up your Rails development environment
  • Go beyond generated code to truly understand how to build Rails applications from scratch
  • Learn Test Driven Development (TDD) with RSpec
  • Effectively use the Model-View-Controller (MVC) pattern
  • Structure applications using the REST architecture
  • Build static pages and transform them into dynamic ones
  • Master the Ruby programming skills all Rails developers need
  • Define high-quality site layouts and data models
  • Implement registration and authentication systems, including validation and secure passwords
  • Update, display, and delete users
  • Add social features and microblogging, including an introduction to Ajax
  • Record version changes with Git and share code at GitHub
  • Simplify application deployment with Heroku

Passar bra ihop

Ruby on Rails 3 Tutorial: Learn Rails by Example + Programming Entity Framework 2nd Edition
De som köpt den här boken har ofta också köpt Programming Entity Framework 2nd Edition (häftad) av Julia Lerman
Pris för båda:
557:-Köp

Fler böcker av Michael Hartl

RailsSpace: Building a Social Networking Website with Ruby on Rails (häftad)
Ruby on Rails 3 LiveLessons (Video Training): Learn Rails by Example DVD (häftad)
Just the FACTS101 e-Study Guide for: RailsSpace : Building a Social Networking Website with Ruby on Rails (häftad)
Die Amerikanische Subprimekrise Und Die (häftad)

RailsSpace: Building a Social Networking Website wit...

Michael Hartl, Aurelius Prochazka (häftad)

Ruby on Rails 3 LiveLessons (Video Training): Learn ...

Michael Hartl

Just the FACTS101 e-Study Guide for: RailsSpace : Bu...

Cram101 Reviews, Michael Hartl (e-bok)

Die Amerikanische Subprimekrise Und Die

Michael Hartl (häftad)
350:- Köp
1356:- Köp
170:- Visa
459:- Köp

Kundrecensioner

Bli först med att recensera och betygsätt boken Ruby on Rails 3 Tutorial: Learn Rails by Example - du kan vinna 200 kr varje månad i tävlingen "Månadens recension".

Recensioner i media

RailsTutorial.org: Michael Hartls awesome new Rails Tutorial

The Ruby on Rails3 Tutorial: Learn Rails by Example by Michael Hartl has become a must read for developers learning how to build Rails apps.

Peter Cooper, editor of Ruby Inside

 

Very detailed and hands-on Rails Tutorial!

Great job! Im learning Rails, and found your tutorial to be one of the most detailed and hands-on guides. Besides many details of Rails, it also taught me about Git, Heroku, RSpec, Webrat, and most important (at least to me), it emphasized the Test-Driven Development (TDD) methodology. I learned a lot from your tutorial. Keep up the good job! Thanks so much for sharing it.

Albert Liu, senior manager, Achievo Corporation.

 

Ruby on Rails Tutorial is the best!

Just wanted to say that your Ruby on Rails tutorial is the best! Ive been trying for a while to wrap my head around Rails. Going through your tutorial, Im finally feeling comfortable in the Rails environment. Your pedagogical style of gradually introducing more complex topics while at the same time giving the reader the instant gratification and a sense of accomplishment with working examples really works for me. I also like the tips and suggestions that give me a sense of learning from a real Rails insider. Your e-mail response to a problem I ran into is an example of your generous sharing of your experience.

Ron Bingham, CEO, SounDBuytz

 

I love the writing style of the Rails Tutorial

I love the writing style of the Rails Tutorial, and there is so much content that is different from other Rails books out there, making it that much more valuable...Thanks for your work!

Allen Ding

Bloggat om Ruby on Rails 3 Tutorial: Learn Rails by Example

Övrig information

Michael Hartl is a programmer, educator, and entrepreneur. He coauthored RailsSpace (Addison-Wesley, 2008), and was cofounder and lead developer of Insoshi, a popular social networking platform based on Rails. He previously taught theoretical and computational physics at the California Institute of Technology, earning the Caltech Lifetime Achievement Award for Excellence in Teaching. Michael is a graduate of Harvard College, holds a Ph.D. in physics from Caltech, and is an alumnus of the Y Combinator entrepreneur program.

Innehållsförteckning

Foreword by Derek Sivers         xv

Foreword by Obie Fernandez         xvii

Acknowledgments         xix

About the Author         xxi

 

Chapter 1: From Zero to Deploy         1

1.1 Introduction   3

1.2 Up and Running   9

1.3 Version Control with Git   24

1.4 Deploying   35

1.5 Conclusion   40

 

Chapter 2: A Demo App         41

2.1 Planning the Application   41

2.2 The Users Resource   44

2.3 The Microposts Resource   58

2.4 Conclusion   69

 

Chapter 3: Mostly Static Pages          71

3.1 Static Pages   74

3.2 Our First Tests   84

3.3 Slightly Dynamic Pages   103

3.4 Conclusion   115

3.5 Exercises   116

 

Chapter 4: Rails-Flavored Ruby         119

4.1 Motivation   119

4.2 Strings and Methods   125

4.3 Other Data Structures   134

4.4 Ruby Classes   144

4.5 Exercises   154

 

Chapter 5: Filling in the Layout         157

5.1 Adding Some Structure   157

5.2 Layout Links   177

5.3 User Signup: A First Step   186

5.4 Conclusion   191

5.5 Exercises   191

 

Chapter 6: Modeling and Viewing Users, Part I         193

6.1 User Model   194

6.2 User Validations   210

6.3 Viewing Users   227

6.4 Conclusion   236

6.5 Exercises   237

 

Chapter 7: Modeling and Viewing Users, Part II         239

7.1 Insecure Passwords   239

7.2 Secure Passwords   250

7.3 Better User Views   262

7.4 Conclusion   279

7.5 Exercises   280

 

Chapter 8 Sign Up 283

8.1 Signup Form 283

8.2 Signup Failure 292

8.3 Signup Success 305

8.4 RSpec Integration Tests 313

8.5 Conclusion 321

8.6 Exercises 321

 

Chapter 9: Sign In, Sign Out         325

9.1 Sessions  325

9.2 Signin Failure   332

9.3 Signin Success   338

9.4 Signing Out   354<...

De som köpt "Ruby on Rails 3 Tutorial: Learn Rails by Example" har även köpt:

Practical Ruby Gems (häftad)

Practical Ruby Gems

David Berube (häftad)
287:-
Rails for .NET Developers (häftad)

Rails for .NET Developers

Jeff Cohen, Brian Eng (häftad)
277:-
SharePoint 2010 WebParts in Action (häftad)

SharePoint 2010 WebParts in Action

Wictor Wilen (häftad)
288:-
The Art Of Unit Testing: With Examples In .NET (häftad)

The Art Of Unit Testing: With Examples In .NET

Roy Osherove (häftad)
262:-
jQuery in Action 2nd Edition (häftad)

jQuery in Action 2nd Edition

Bear Bibeault, Yehuda Katz (häftad)
263:-
Ruby on Rails 3 Tutorial: Learn Rails by Example (häftad)

Fler böcker inom

  • Titel: Ruby on Rails 3 Tutorial: Learn Rails by Example
  • ISBN: 9780321743121
  • Förlag: ADDISON-WESLEY
  • Utgivningsland: USA
  • Utgivningsort: Boston
  • Medarbetare: Sivers, Derek/Fernandez, Obie
  • Illustrationer: illustrations
  • Upplaga: 1
  • Antal sidor: 544
  • Vikt: 879 g
  • Höjd: 234 mm
  • Antal komponenter: 1
  • Format: Häftad (paperback)