SlideShare una empresa de Scribd logo
1 de 17
Descargar para leer sin conexión
Ruby on Rails
An Introduction
Mark S. Maglana, CompE, MM
Let's get this out of the way...
» My name is Mark S. Maglana
» Bachelor's Degree in Computer Engineering from
the University of San Carlos, Cebu
» Master in Management from the University of the
Philippines in Mindanao
» Computer geek since grade 5 (BASIC, QBASIC)
» Suffered through C, assembly in college
» Web dude since 1997, started with ASP 1.0
» ASP.Net, PHP (w/ CakePHP)
» UML, VB, .Net, C#, Java, Lotus Notes/Domino
“I constantly remind myself that there are multiple
ways and numerous technologies [for] solving a
single problem, some better than others.”
“By being loyal to one technology stack, I am bound
to unconsciously make biased decisions, which will
ultimately hinder my ability to deliver business
value.”
- Stephen Chu
http://tinyurl.com/zz995
Ruby on Rails
A Programming
Language
A Web Framework
built w/ Ruby
Hold it right there, sparky...
This is an introduction, not a tutorial
We wont get in-depth with Ruby and Rails
(You're too intelligent to be spoon fed)
I assume you're familiar with OOP
Ruby
» Created by Yukihiro “Matz” Matsumoto in 1993
» A language designed for humans, not compilers
» A true Object-Oriented language
» Everything you manipulate in Ruby is an object
» They all ultimately inherit from a class named
Object (Surprise! Surprise!)
» Because everything is an object, there's none of
that primitive types vs. reference types silliness.
Hello World
# The famous Hello World
# program is trivial in
# Ruby. You don't need:
#
# * a "main" method
# * newline escapes
# * semicolons
#
# Here's the code:
puts "Hello World!"
Ruby won't force you to define a class if you don't
need to. In such a case, Ruby automatically
encloses your statement in an Object instance.
Other Examples
door.close if door.is_open?
5.times { puts “Odelay!” }
my_text = 'restaurant'
exit unless my_text.include? 'rant'
animals = ['cat', 'dog', 'fox']
animals.each {|animal| puts animal.capitalize}
small_number = 1212123
really_big_number = 1412432423429340234581340234
pretty_number = 12_000_000_000
And here's one more...
class Person
attr_accessor :name, :age, :sex
end
person = Person.new
person.name = 'Perting E. Soga'
person.age = 36
person.sex = 'M'
puts person.name # Perting E. Soga
puts person.age # 36
puts person.sex # M
Ruby Conventions
» Variables starting with $ are Global Variables
(ex. $x, $1, $chunky_bacon)
» Variables starting with @ are Instance Variables
(ex. @width, @x, @y)
» Variables starting with @@ are Class Variables
(ex. @@brokeback_coding, @@choo_choo)
» Variables without prefixes are Local Variables
(ex. chicken_noodles, white_flower)
» Constants are always capitalized
(ex. Time, Array, LuckyPenguin)
Rails
» Created by David Heinemeier Hansson in 2003
» A web application framework built using Ruby
» Uses the Model-View-Controller (MVC) design
pattern
» Also uses the ActiveRecord design pattern
» Some ex-Java programmers claim Rails helped
them develop applications 10x faster
Show me the money!
code
How Rails Works
Internet Web Server
controller
database
view
/posts/show/1
posts_controller.rb
model
post.rb
show.rhtml
blog_production
PostsController::show()
Post::find(1)
1.
2.
3.
4.
5.
6.
7.
8.
9.
Recommended Set-up
Internet Apache 2.2+
MongrelMongrel Mongrel
database
mod_proxy
mod_proxy_balancer
HTTP
HTTP HTTP HTTP
Additional Reading
» www.ruby-lang.org
» www.rubyonrails.org
» http://pine.fm/LearnToProgram/
» ruby-phil@googlegroups.com
» Google for “OnLAMP Rolling with Rails”
» #rubyonrails and #ruby-lang in IRC (freenode)
» wiki.rubyonrails.org
» api.rubyonrails.org
» Agile Web Development book
» Programming Ruby book
And we're done!

Más contenido relacionado

Similar a Slides

Ruby for .NET developers
Ruby for .NET developersRuby for .NET developers
Ruby for .NET developersMax Titov
 
Top 10+ Things .NET Developers Should Know About Ruby
Top 10+ Things .NET Developers Should Know About RubyTop 10+ Things .NET Developers Should Know About Ruby
Top 10+ Things .NET Developers Should Know About RubyJeff Cohen
 
Virtues of platform development
Virtues of platform developmentVirtues of platform development
Virtues of platform developmentPhillip Jackson
 
Intro to Ruby/Rails at TechLady Hackathon
Intro to Ruby/Rails at TechLady HackathonIntro to Ruby/Rails at TechLady Hackathon
Intro to Ruby/Rails at TechLady Hackathonkdmcclin
 
Write your Ruby in Style
Write your Ruby in StyleWrite your Ruby in Style
Write your Ruby in StyleBhavin Javia
 
CPAP.com Introduction to Coding: Part 1
CPAP.com Introduction to Coding: Part 1CPAP.com Introduction to Coding: Part 1
CPAP.com Introduction to Coding: Part 1johnnygoodman
 
Surviving the technical interview
Surviving the technical interviewSurviving the technical interview
Surviving the technical interviewEric Brooke
 
Spoiling The Youth With Ruby (Euruko 2010)
Spoiling The Youth With Ruby (Euruko 2010)Spoiling The Youth With Ruby (Euruko 2010)
Spoiling The Youth With Ruby (Euruko 2010)Karel Minarik
 
You shouldneverdo
You shouldneverdoYou shouldneverdo
You shouldneverdodaniil3
 
ORUG - Sept 2014 - Lesson When Learning Ruby/Rails
ORUG - Sept 2014 - Lesson When Learning Ruby/RailsORUG - Sept 2014 - Lesson When Learning Ruby/Rails
ORUG - Sept 2014 - Lesson When Learning Ruby/Railsdanielrsmith
 
Writing Readable Code
Writing Readable CodeWriting Readable Code
Writing Readable Codeeddiehaber
 
Talking to strangers causes train wrecks
Talking to strangers causes train wrecksTalking to strangers causes train wrecks
Talking to strangers causes train wrecksmtoppa
 
Intro to Ruby - Twin Cities Code Camp 7
Intro to Ruby - Twin Cities Code Camp 7Intro to Ruby - Twin Cities Code Camp 7
Intro to Ruby - Twin Cities Code Camp 7Brian Hogan
 
Beyond the Style Guides
Beyond the Style GuidesBeyond the Style Guides
Beyond the Style GuidesMosky Liu
 

Similar a Slides (20)

Ruby for .NET developers
Ruby for .NET developersRuby for .NET developers
Ruby for .NET developers
 
Top 10+ Things .NET Developers Should Know About Ruby
Top 10+ Things .NET Developers Should Know About RubyTop 10+ Things .NET Developers Should Know About Ruby
Top 10+ Things .NET Developers Should Know About Ruby
 
Virtues of platform development
Virtues of platform developmentVirtues of platform development
Virtues of platform development
 
Ruby Hell Yeah
Ruby Hell YeahRuby Hell Yeah
Ruby Hell Yeah
 
Intro to Ruby/Rails at TechLady Hackathon
Intro to Ruby/Rails at TechLady HackathonIntro to Ruby/Rails at TechLady Hackathon
Intro to Ruby/Rails at TechLady Hackathon
 
Apex for humans
Apex for humansApex for humans
Apex for humans
 
Write your Ruby in Style
Write your Ruby in StyleWrite your Ruby in Style
Write your Ruby in Style
 
CPAP.com Introduction to Coding: Part 1
CPAP.com Introduction to Coding: Part 1CPAP.com Introduction to Coding: Part 1
CPAP.com Introduction to Coding: Part 1
 
Surviving the technical interview
Surviving the technical interviewSurviving the technical interview
Surviving the technical interview
 
Spoiling The Youth With Ruby (Euruko 2010)
Spoiling The Youth With Ruby (Euruko 2010)Spoiling The Youth With Ruby (Euruko 2010)
Spoiling The Youth With Ruby (Euruko 2010)
 
You shouldneverdo
You shouldneverdoYou shouldneverdo
You shouldneverdo
 
ORUG - Sept 2014 - Lesson When Learning Ruby/Rails
ORUG - Sept 2014 - Lesson When Learning Ruby/RailsORUG - Sept 2014 - Lesson When Learning Ruby/Rails
ORUG - Sept 2014 - Lesson When Learning Ruby/Rails
 
Clean Code
Clean CodeClean Code
Clean Code
 
Writing Readable Code
Writing Readable CodeWriting Readable Code
Writing Readable Code
 
Talking to strangers causes train wrecks
Talking to strangers causes train wrecksTalking to strangers causes train wrecks
Talking to strangers causes train wrecks
 
Intro to Ruby - Twin Cities Code Camp 7
Intro to Ruby - Twin Cities Code Camp 7Intro to Ruby - Twin Cities Code Camp 7
Intro to Ruby - Twin Cities Code Camp 7
 
Code with style
Code with styleCode with style
Code with style
 
Beyond the Style Guides
Beyond the Style GuidesBeyond the Style Guides
Beyond the Style Guides
 
All of Javascript
All of JavascriptAll of Javascript
All of Javascript
 
A class action
A class actionA class action
A class action
 

Más de RubyOnRails_dude (15)

State Of Rails 05
State Of Rails 05State Of Rails 05
State Of Rails 05
 
Rails Conf Talk Slides
Rails Conf Talk SlidesRails Conf Talk Slides
Rails Conf Talk Slides
 
Secretsofrubyonrails
SecretsofrubyonrailsSecretsofrubyonrails
Secretsofrubyonrails
 
Thomas Fuchs Presentation
Thomas Fuchs PresentationThomas Fuchs Presentation
Thomas Fuchs Presentation
 
Ugo Cei Presentation
Ugo Cei PresentationUgo Cei Presentation
Ugo Cei Presentation
 
Extractingrails
ExtractingrailsExtractingrails
Extractingrails
 
Marcel Molina Jr. Presentation
Marcel Molina Jr. PresentationMarcel Molina Jr. Presentation
Marcel Molina Jr. Presentation
 
Rails4 Days
Rails4 DaysRails4 Days
Rails4 Days
 
Till Vollmer Presentation
Till Vollmer PresentationTill Vollmer Presentation
Till Vollmer Presentation
 
Programminghappiness
ProgramminghappinessProgramminghappiness
Programminghappiness
 
Workin On The Rails Road
Workin On The Rails RoadWorkin On The Rails Road
Workin On The Rails Road
 
Pursuitofbeauty
PursuitofbeautyPursuitofbeauty
Pursuitofbeauty
 
Dan Webb Presentation
Dan Webb PresentationDan Webb Presentation
Dan Webb Presentation
 
Fisl6
Fisl6Fisl6
Fisl6
 
Worldofresources
WorldofresourcesWorldofresources
Worldofresources
 

Último

Financial-Statement-Analysis-of-Coca-cola-Company.pptx
Financial-Statement-Analysis-of-Coca-cola-Company.pptxFinancial-Statement-Analysis-of-Coca-cola-Company.pptx
Financial-Statement-Analysis-of-Coca-cola-Company.pptxsaniyaimamuddin
 
Call Us 📲8800102216📞 Call Girls In DLF City Gurgaon
Call Us 📲8800102216📞 Call Girls In DLF City GurgaonCall Us 📲8800102216📞 Call Girls In DLF City Gurgaon
Call Us 📲8800102216📞 Call Girls In DLF City Gurgaoncallgirls2057
 
Buy gmail accounts.pdf Buy Old Gmail Accounts
Buy gmail accounts.pdf Buy Old Gmail AccountsBuy gmail accounts.pdf Buy Old Gmail Accounts
Buy gmail accounts.pdf Buy Old Gmail AccountsBuy Verified Accounts
 
8447779800, Low rate Call girls in Shivaji Enclave Delhi NCR
8447779800, Low rate Call girls in Shivaji Enclave Delhi NCR8447779800, Low rate Call girls in Shivaji Enclave Delhi NCR
8447779800, Low rate Call girls in Shivaji Enclave Delhi NCRashishs7044
 
Flow Your Strategy at Flight Levels Day 2024
Flow Your Strategy at Flight Levels Day 2024Flow Your Strategy at Flight Levels Day 2024
Flow Your Strategy at Flight Levels Day 2024Kirill Klimov
 
8447779800, Low rate Call girls in Tughlakabad Delhi NCR
8447779800, Low rate Call girls in Tughlakabad Delhi NCR8447779800, Low rate Call girls in Tughlakabad Delhi NCR
8447779800, Low rate Call girls in Tughlakabad Delhi NCRashishs7044
 
Investment in The Coconut Industry by Nancy Cheruiyot
Investment in The Coconut Industry by Nancy CheruiyotInvestment in The Coconut Industry by Nancy Cheruiyot
Investment in The Coconut Industry by Nancy Cheruiyotictsugar
 
Memorándum de Entendimiento (MoU) entre Codelco y SQM
Memorándum de Entendimiento (MoU) entre Codelco y SQMMemorándum de Entendimiento (MoU) entre Codelco y SQM
Memorándum de Entendimiento (MoU) entre Codelco y SQMVoces Mineras
 
8447779800, Low rate Call girls in Saket Delhi NCR
8447779800, Low rate Call girls in Saket Delhi NCR8447779800, Low rate Call girls in Saket Delhi NCR
8447779800, Low rate Call girls in Saket Delhi NCRashishs7044
 
Organizational Structure Running A Successful Business
Organizational Structure Running A Successful BusinessOrganizational Structure Running A Successful Business
Organizational Structure Running A Successful BusinessSeta Wicaksana
 
Innovation Conference 5th March 2024.pdf
Innovation Conference 5th March 2024.pdfInnovation Conference 5th March 2024.pdf
Innovation Conference 5th March 2024.pdfrichard876048
 
FULL ENJOY Call girls in Paharganj Delhi | 8377087607
FULL ENJOY Call girls in Paharganj Delhi | 8377087607FULL ENJOY Call girls in Paharganj Delhi | 8377087607
FULL ENJOY Call girls in Paharganj Delhi | 8377087607dollysharma2066
 
8447779800, Low rate Call girls in Rohini Delhi NCR
8447779800, Low rate Call girls in Rohini Delhi NCR8447779800, Low rate Call girls in Rohini Delhi NCR
8447779800, Low rate Call girls in Rohini Delhi NCRashishs7044
 
Guide Complete Set of Residential Architectural Drawings PDF
Guide Complete Set of Residential Architectural Drawings PDFGuide Complete Set of Residential Architectural Drawings PDF
Guide Complete Set of Residential Architectural Drawings PDFChandresh Chudasama
 
Church Building Grants To Assist With New Construction, Additions, And Restor...
Church Building Grants To Assist With New Construction, Additions, And Restor...Church Building Grants To Assist With New Construction, Additions, And Restor...
Church Building Grants To Assist With New Construction, Additions, And Restor...Americas Got Grants
 
8447779800, Low rate Call girls in Kotla Mubarakpur Delhi NCR
8447779800, Low rate Call girls in Kotla Mubarakpur Delhi NCR8447779800, Low rate Call girls in Kotla Mubarakpur Delhi NCR
8447779800, Low rate Call girls in Kotla Mubarakpur Delhi NCRashishs7044
 
TriStar Gold Corporate Presentation - April 2024
TriStar Gold Corporate Presentation - April 2024TriStar Gold Corporate Presentation - April 2024
TriStar Gold Corporate Presentation - April 2024Adnet Communications
 
Call US-88OO1O2216 Call Girls In Mahipalpur Female Escort Service
Call US-88OO1O2216 Call Girls In Mahipalpur Female Escort ServiceCall US-88OO1O2216 Call Girls In Mahipalpur Female Escort Service
Call US-88OO1O2216 Call Girls In Mahipalpur Female Escort Servicecallgirls2057
 
Kenya’s Coconut Value Chain by Gatsby Africa
Kenya’s Coconut Value Chain by Gatsby AfricaKenya’s Coconut Value Chain by Gatsby Africa
Kenya’s Coconut Value Chain by Gatsby Africaictsugar
 

Último (20)

Financial-Statement-Analysis-of-Coca-cola-Company.pptx
Financial-Statement-Analysis-of-Coca-cola-Company.pptxFinancial-Statement-Analysis-of-Coca-cola-Company.pptx
Financial-Statement-Analysis-of-Coca-cola-Company.pptx
 
Call Us 📲8800102216📞 Call Girls In DLF City Gurgaon
Call Us 📲8800102216📞 Call Girls In DLF City GurgaonCall Us 📲8800102216📞 Call Girls In DLF City Gurgaon
Call Us 📲8800102216📞 Call Girls In DLF City Gurgaon
 
Buy gmail accounts.pdf Buy Old Gmail Accounts
Buy gmail accounts.pdf Buy Old Gmail AccountsBuy gmail accounts.pdf Buy Old Gmail Accounts
Buy gmail accounts.pdf Buy Old Gmail Accounts
 
8447779800, Low rate Call girls in Shivaji Enclave Delhi NCR
8447779800, Low rate Call girls in Shivaji Enclave Delhi NCR8447779800, Low rate Call girls in Shivaji Enclave Delhi NCR
8447779800, Low rate Call girls in Shivaji Enclave Delhi NCR
 
Enjoy ➥8448380779▻ Call Girls In Sector 18 Noida Escorts Delhi NCR
Enjoy ➥8448380779▻ Call Girls In Sector 18 Noida Escorts Delhi NCREnjoy ➥8448380779▻ Call Girls In Sector 18 Noida Escorts Delhi NCR
Enjoy ➥8448380779▻ Call Girls In Sector 18 Noida Escorts Delhi NCR
 
Flow Your Strategy at Flight Levels Day 2024
Flow Your Strategy at Flight Levels Day 2024Flow Your Strategy at Flight Levels Day 2024
Flow Your Strategy at Flight Levels Day 2024
 
8447779800, Low rate Call girls in Tughlakabad Delhi NCR
8447779800, Low rate Call girls in Tughlakabad Delhi NCR8447779800, Low rate Call girls in Tughlakabad Delhi NCR
8447779800, Low rate Call girls in Tughlakabad Delhi NCR
 
Investment in The Coconut Industry by Nancy Cheruiyot
Investment in The Coconut Industry by Nancy CheruiyotInvestment in The Coconut Industry by Nancy Cheruiyot
Investment in The Coconut Industry by Nancy Cheruiyot
 
Memorándum de Entendimiento (MoU) entre Codelco y SQM
Memorándum de Entendimiento (MoU) entre Codelco y SQMMemorándum de Entendimiento (MoU) entre Codelco y SQM
Memorándum de Entendimiento (MoU) entre Codelco y SQM
 
8447779800, Low rate Call girls in Saket Delhi NCR
8447779800, Low rate Call girls in Saket Delhi NCR8447779800, Low rate Call girls in Saket Delhi NCR
8447779800, Low rate Call girls in Saket Delhi NCR
 
Organizational Structure Running A Successful Business
Organizational Structure Running A Successful BusinessOrganizational Structure Running A Successful Business
Organizational Structure Running A Successful Business
 
Innovation Conference 5th March 2024.pdf
Innovation Conference 5th March 2024.pdfInnovation Conference 5th March 2024.pdf
Innovation Conference 5th March 2024.pdf
 
FULL ENJOY Call girls in Paharganj Delhi | 8377087607
FULL ENJOY Call girls in Paharganj Delhi | 8377087607FULL ENJOY Call girls in Paharganj Delhi | 8377087607
FULL ENJOY Call girls in Paharganj Delhi | 8377087607
 
8447779800, Low rate Call girls in Rohini Delhi NCR
8447779800, Low rate Call girls in Rohini Delhi NCR8447779800, Low rate Call girls in Rohini Delhi NCR
8447779800, Low rate Call girls in Rohini Delhi NCR
 
Guide Complete Set of Residential Architectural Drawings PDF
Guide Complete Set of Residential Architectural Drawings PDFGuide Complete Set of Residential Architectural Drawings PDF
Guide Complete Set of Residential Architectural Drawings PDF
 
Church Building Grants To Assist With New Construction, Additions, And Restor...
Church Building Grants To Assist With New Construction, Additions, And Restor...Church Building Grants To Assist With New Construction, Additions, And Restor...
Church Building Grants To Assist With New Construction, Additions, And Restor...
 
8447779800, Low rate Call girls in Kotla Mubarakpur Delhi NCR
8447779800, Low rate Call girls in Kotla Mubarakpur Delhi NCR8447779800, Low rate Call girls in Kotla Mubarakpur Delhi NCR
8447779800, Low rate Call girls in Kotla Mubarakpur Delhi NCR
 
TriStar Gold Corporate Presentation - April 2024
TriStar Gold Corporate Presentation - April 2024TriStar Gold Corporate Presentation - April 2024
TriStar Gold Corporate Presentation - April 2024
 
Call US-88OO1O2216 Call Girls In Mahipalpur Female Escort Service
Call US-88OO1O2216 Call Girls In Mahipalpur Female Escort ServiceCall US-88OO1O2216 Call Girls In Mahipalpur Female Escort Service
Call US-88OO1O2216 Call Girls In Mahipalpur Female Escort Service
 
Kenya’s Coconut Value Chain by Gatsby Africa
Kenya’s Coconut Value Chain by Gatsby AfricaKenya’s Coconut Value Chain by Gatsby Africa
Kenya’s Coconut Value Chain by Gatsby Africa
 

Slides

  • 1. Ruby on Rails An Introduction Mark S. Maglana, CompE, MM
  • 2. Let's get this out of the way... » My name is Mark S. Maglana » Bachelor's Degree in Computer Engineering from the University of San Carlos, Cebu » Master in Management from the University of the Philippines in Mindanao » Computer geek since grade 5 (BASIC, QBASIC) » Suffered through C, assembly in college » Web dude since 1997, started with ASP 1.0 » ASP.Net, PHP (w/ CakePHP) » UML, VB, .Net, C#, Java, Lotus Notes/Domino
  • 3. “I constantly remind myself that there are multiple ways and numerous technologies [for] solving a single problem, some better than others.” “By being loyal to one technology stack, I am bound to unconsciously make biased decisions, which will ultimately hinder my ability to deliver business value.” - Stephen Chu http://tinyurl.com/zz995
  • 4. Ruby on Rails A Programming Language A Web Framework built w/ Ruby
  • 5. Hold it right there, sparky...
  • 6. This is an introduction, not a tutorial We wont get in-depth with Ruby and Rails (You're too intelligent to be spoon fed) I assume you're familiar with OOP
  • 7. Ruby » Created by Yukihiro “Matz” Matsumoto in 1993 » A language designed for humans, not compilers » A true Object-Oriented language » Everything you manipulate in Ruby is an object » They all ultimately inherit from a class named Object (Surprise! Surprise!) » Because everything is an object, there's none of that primitive types vs. reference types silliness.
  • 8. Hello World # The famous Hello World # program is trivial in # Ruby. You don't need: # # * a "main" method # * newline escapes # * semicolons # # Here's the code: puts "Hello World!" Ruby won't force you to define a class if you don't need to. In such a case, Ruby automatically encloses your statement in an Object instance.
  • 9. Other Examples door.close if door.is_open? 5.times { puts “Odelay!” } my_text = 'restaurant' exit unless my_text.include? 'rant' animals = ['cat', 'dog', 'fox'] animals.each {|animal| puts animal.capitalize} small_number = 1212123 really_big_number = 1412432423429340234581340234 pretty_number = 12_000_000_000
  • 10. And here's one more... class Person attr_accessor :name, :age, :sex end person = Person.new person.name = 'Perting E. Soga' person.age = 36 person.sex = 'M' puts person.name # Perting E. Soga puts person.age # 36 puts person.sex # M
  • 11. Ruby Conventions » Variables starting with $ are Global Variables (ex. $x, $1, $chunky_bacon) » Variables starting with @ are Instance Variables (ex. @width, @x, @y) » Variables starting with @@ are Class Variables (ex. @@brokeback_coding, @@choo_choo) » Variables without prefixes are Local Variables (ex. chicken_noodles, white_flower) » Constants are always capitalized (ex. Time, Array, LuckyPenguin)
  • 12. Rails » Created by David Heinemeier Hansson in 2003 » A web application framework built using Ruby » Uses the Model-View-Controller (MVC) design pattern » Also uses the ActiveRecord design pattern » Some ex-Java programmers claim Rails helped them develop applications 10x faster
  • 13. Show me the money! code
  • 14. How Rails Works Internet Web Server controller database view /posts/show/1 posts_controller.rb model post.rb show.rhtml blog_production PostsController::show() Post::find(1) 1. 2. 3. 4. 5. 6. 7. 8. 9.
  • 15. Recommended Set-up Internet Apache 2.2+ MongrelMongrel Mongrel database mod_proxy mod_proxy_balancer HTTP HTTP HTTP HTTP
  • 16. Additional Reading » www.ruby-lang.org » www.rubyonrails.org » http://pine.fm/LearnToProgram/ » ruby-phil@googlegroups.com » Google for “OnLAMP Rolling with Rails” » #rubyonrails and #ruby-lang in IRC (freenode) » wiki.rubyonrails.org » api.rubyonrails.org » Agile Web Development book » Programming Ruby book