SlideShare a Scribd company logo
Ruby on RailsJune 17, 2011Elpizo Choi
What is Ruby on Rails?MVC Framework for building web apps in RubyUses Ruby classes to abstract out the various components of an appConvention over configuration
Main ComponentsActiveRecord(ORM – think hibernate)ActionController(business logic, routing)ActionView(template parser)Migrations, rake tasks
Creating a Rails app
Basic folder structureapps foldercontrollers, models, views – where you’ll spend most your timedatabase.ymlConfigures databaseGemfileConfigures external libraries used in app
… a little configuration
…a little configuration
Let’s make a model
ActiveRecord::BaseWhen inherited, maps to table that’s plural of class nameTeam -> teamsBasic methodsTeam.create()Team.find()Team.where().limit().sort().skip().firstTeam.where().limit().sort().skip().all
…first we need to create table
…first we need to create table
…first we need to create tableRakeRuby build tool
rake –T to see all available tasks
rake db:migrate will run all database migrations that haven’t been run
Stores migrations that have already been runCreate a new Team
QueryingMore in-depth tutorial:  http://guides.rubyonrails.org/active_record_querying.html
The “web” part of web-app
Let’s get this running
What happened?
What happened?
What happened?config/routes.rb defines how urls are mapped to controllersget “teams/index” is shorthand for:match “teams/index” => “teams#index”, :via => :getMore details: http://guides.rubyonrails.org/routing.htmlRead comments in config/routes.rb
Let’s make some changes
Let’s make some changes
Let’s make some changes
ControllerLogic to be run every time the mapped route is hit
All code in the corresponding method will happen as side effects
Instanced variables set here are available to the templateView.erb is E-Ruby
Add as extension to allow the default Rails template engine to parse Ruby code inside HTMLViewBasic HTML
<% %> tag:  Ruby code to be run, but not shown
<%= %>tag: Ruby code to be run and shown
^^ important: because everything in Ruby returns something (in this case it’ll be @team object from the block)Creating relationships
Creating relationshipsCreate the playerAdd foreign key
Creating relationships
Creating relationshipsGotta reload console after changing modelsGet players
But wait!  There’s a shortcut!has_many basically does the following:looks in a table with same name as its argument (players)
for records whose foreign key column corresponds to the current class (team_id)
and where the value is the current instance id (1)Likewise…You can either do this….…or this:It’ll accomplish the same thing:

More Related Content

PDF
Advanced Reflection in Pharo
PDF
Reflection in Pharo: Beyond Smalltak
PDF
Reflection in Pharo: Beyond Smalltak
PDF
Dynamically Composing Collection Operations through Collection Promises
PDF
Variables in Pharo5
PDF
Reflection in Pharo5
PDF
#Pharo Days 2016 Reflectivity
PPTX
introduction to server-side scripting
Advanced Reflection in Pharo
Reflection in Pharo: Beyond Smalltak
Reflection in Pharo: Beyond Smalltak
Dynamically Composing Collection Operations through Collection Promises
Variables in Pharo5
Reflection in Pharo5
#Pharo Days 2016 Reflectivity
introduction to server-side scripting

What's hot (20)

PPTX
Arrays &amp; functions in php
PDF
Recipes to build Code Generators for Non-Xtext Models with Xtend
PDF
Reference Semantik mit C# und .NET Core - BASTA 2019
PDF
LINQ Inside
PPTX
Introduction to underscore.js
PPTX
JavaScript operators
PPS
Underscore
DOCX
Ruby Interview Questions
PDF
Dutch hug
PDF
#Pharo Days 2016 Data Formats and Protocols
PDF
C# What's next? (7.x and 8.0)
PPT
Apache Velocity
PDF
Mini Rails Framework
PPTX
From Ruby to Scala
PDF
Codegeneration With Xtend
PDF
PHP 8: What's New and Changed
PPTX
Apache Flink - A Sneek Preview on Language Integrated Queries
ODP
Play framework training by Neelkanth Sachdeva @ Scala traits event , New Delh...
PPTX
Code documentation
PDF
RESTful API development in Laravel 4 - Christopher Pecoraro
Arrays &amp; functions in php
Recipes to build Code Generators for Non-Xtext Models with Xtend
Reference Semantik mit C# und .NET Core - BASTA 2019
LINQ Inside
Introduction to underscore.js
JavaScript operators
Underscore
Ruby Interview Questions
Dutch hug
#Pharo Days 2016 Data Formats and Protocols
C# What's next? (7.x and 8.0)
Apache Velocity
Mini Rails Framework
From Ruby to Scala
Codegeneration With Xtend
PHP 8: What's New and Changed
Apache Flink - A Sneek Preview on Language Integrated Queries
Play framework training by Neelkanth Sachdeva @ Scala traits event , New Delh...
Code documentation
RESTful API development in Laravel 4 - Christopher Pecoraro
Ad

Viewers also liked (14)

PPT
Matrizes e determinantes
PDF
Jose victor patiño duran - curriculum
PDF
WordCamp Northeast Ohio The Designers Toolkit
PDF
Playing Like a Girl
PPT
Redes sociales
DOC
Malnutrition in the hospital
PDF
One hundred million dollars
PDF
One hundred million dollars
PPT
Vitamin c and the common cold
PDF
2012 AAA Cavalier Bremworth Unbuilt Architecture Awards
PDF
Chineese smuggling
PDF
A low carbohydrate mediterranean diet improves cardiovascular risk factors a...
PDF
Celebrate life issue25
PDF
2 sumandos-de-2-y-1-dígito (1)
Matrizes e determinantes
Jose victor patiño duran - curriculum
WordCamp Northeast Ohio The Designers Toolkit
Playing Like a Girl
Redes sociales
Malnutrition in the hospital
One hundred million dollars
One hundred million dollars
Vitamin c and the common cold
2012 AAA Cavalier Bremworth Unbuilt Architecture Awards
Chineese smuggling
A low carbohydrate mediterranean diet improves cardiovascular risk factors a...
Celebrate life issue25
2 sumandos-de-2-y-1-dígito (1)
Ad

Similar to Intro to Ruby on Rails (20)

PPT
Ruby on Rails introduction
PDF
Ruby On Rails
PPTX
Ruby on rails for beginers
PDF
RoR 101: Session 2
PPT
Ruby On Rails Tutorial
PPT
Ruby on rails
PPT
Ruby On Rails
PPT
Introduction to Ruby on Rails
PPTX
Ruby On Rails Intro
KEY
Supa fast Ruby + Rails
PPT
Introduction To Ruby On Rails
PDF
Ruby On Rails Introduction
PPTX
Intro to Rails and MVC
PPT
Ruby on rails
PPT
Ruby on rails
PPT
Ruby on Rails
PPT
An Introduction to Ruby on Rails 20100506
PPT
An introduction-to-ruby-on-rails
PPT
Rails
 
KEY
What's new and great in Rails 3 - Matt Gauger - Milwaukee Ruby Users Group De...
Ruby on Rails introduction
Ruby On Rails
Ruby on rails for beginers
RoR 101: Session 2
Ruby On Rails Tutorial
Ruby on rails
Ruby On Rails
Introduction to Ruby on Rails
Ruby On Rails Intro
Supa fast Ruby + Rails
Introduction To Ruby On Rails
Ruby On Rails Introduction
Intro to Rails and MVC
Ruby on rails
Ruby on rails
Ruby on Rails
An Introduction to Ruby on Rails 20100506
An introduction-to-ruby-on-rails
Rails
 
What's new and great in Rails 3 - Matt Gauger - Milwaukee Ruby Users Group De...

Recently uploaded (20)

PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
PDF
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
PDF
Dropbox Q2 2025 Financial Results & Investor Presentation
PPTX
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
PPTX
sap open course for s4hana steps from ECC to s4
PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
PPTX
Understanding_Digital_Forensics_Presentation.pptx
PDF
MIND Revenue Release Quarter 2 2025 Press Release
PDF
Machine learning based COVID-19 study performance prediction
PDF
Approach and Philosophy of On baking technology
PPTX
Big Data Technologies - Introduction.pptx
DOCX
The AUB Centre for AI in Media Proposal.docx
PDF
Review of recent advances in non-invasive hemoglobin estimation
PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
PPTX
Cloud computing and distributed systems.
PDF
NewMind AI Weekly Chronicles - August'25 Week I
PDF
Encapsulation_ Review paper, used for researhc scholars
PPTX
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
PPTX
Spectroscopy.pptx food analysis technology
Agricultural_Statistics_at_a_Glance_2022_0.pdf
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
Dropbox Q2 2025 Financial Results & Investor Presentation
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
sap open course for s4hana steps from ECC to s4
“AI and Expert System Decision Support & Business Intelligence Systems”
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
Understanding_Digital_Forensics_Presentation.pptx
MIND Revenue Release Quarter 2 2025 Press Release
Machine learning based COVID-19 study performance prediction
Approach and Philosophy of On baking technology
Big Data Technologies - Introduction.pptx
The AUB Centre for AI in Media Proposal.docx
Review of recent advances in non-invasive hemoglobin estimation
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
Cloud computing and distributed systems.
NewMind AI Weekly Chronicles - August'25 Week I
Encapsulation_ Review paper, used for researhc scholars
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
Spectroscopy.pptx food analysis technology

Intro to Ruby on Rails