SlideShare a Scribd company logo
Ruby on Rails
Introduction to Ruby
ïŹRuby Syntax and Concepts
ïŹVariables
ïŹConstants
ïŹBlocks
ïŹHashes
Ruby on Rails Introduction
Ruby on Rails Introduction
Ruby on Rails Introduction
Ruby on Rails Introduction
Ruby on Rails Introduction
Creating active record
ïŹuser = User.create(name: "David", occupation: "Code Artist")
ïŹuser = User.new
ïŹuser.name = "David"
ïŹuser.occupation = "Code Artist"
ïŹ user.save
Reading an activerecord from database
ïŹusers = User.all
ïŹuser = User.first
ïŹdavid = User.find_by(name: 'David')
ïŹusers = User.where(name: 'David', occupation: 'Code Artist').order('created_at DESC')
Updating Activerecords attributes
ïŹuser = User.find_by(name: 'David')
ïŹuser.update(name: 'Dave')
ïŹDestroying an ActiveRecors
ïŹuser = User.find_by(name: 'David')
ïŹuser.destroy
Validation
ïŹ create
ïŹ create!
ïŹ save
ïŹ save!
ïŹ update
ïŹ update!
Ruby on Rails Introduction
Ruby on Rails Introduction
Validation Helpers
ïŹAcceptance
ïŹclass Person < ActiveRecord::Base
ïŹ validates :terms_of_service, acceptance: true
ïŹend
ïŹvalidates_associated
ïŹclass Library < ActiveRecord::Base
ïŹ has_many :books
ïŹ validates_associated :books
ïŹend
ïŹLength
ïŹclass Person < ActiveRecord::Base
ïŹ validates :name, length: { minimum: 2 }
ïŹ validates :bio, length: { maximum: 500 }
ïŹ validates :password, length: { in: 6..20 }
ïŹ validates :registration_number, length: { is: 6 }
ïŹend
ïŹUniqueness
ïŹclass Account < ActiveRecord::Base
ïŹ validates :email, uniqueness: true
ïŹend
Ruby on Rails Introduction
Order and list of Model Call Backs
Ruby on Rails Introduction
Ruby on Rails Introduction
Ruby on Rails Introduction
Assocaiations
ïŹclass Customer < ActiveRecord::Base
ïŹend
ïŹ class Order < ActiveRecord::Base
ïŹend
ïŹ@order = Order.create(order_date: Time.now, customer_id: @customer.id)
ïŹclass Customer < ActiveRecord::Base
ïŹ has_many :orders, dependent: :destroy
ïŹend
ïŹ
ïŹclass Order < ActiveRecord::Base
ïŹ belongs_to :customer
ïŹend
ïŹ@order = @customer.orders.create(order_date: Time.now)
Ruby on Rails Introduction
belongs_to
ïŹclass Order < ActiveRecord::Base
ïŹ belongs_to :customer
ïŹend
Ruby on Rails Introduction
has_one :through
has_many :
Ruby on Rails Introduction
The has_and_belongs_to_many Association:
Controller
Ruby on Rails Introduction
CRUD, Verbs, and Actions
Ruby on Rails Introduction
Ruby on Rails Introduction

More Related Content

What's hot (12)

PPT
jQuery Learning
Uzair Ali
 
PPTX
TDD With Typescript - Noam Katzir
Wix Engineering
 
PPTX
Building a Location-based platform with MongoDB from Zero.
Ravi Teja
 
PPTX
Base
Joshua Zabala
 
PDF
bcgr3-jquery
tutorialsruby
 
PDF
Introduction to jQuery (Ajax Exp 2006)
jeresig
 
PPTX
Realm mobile database
Parinda Rajapaksha
 
PPTX
Gradle basics
Pedro Borrayo
 
PDF
えっ、ăȘă«ăă‚Œă“ă‚ă„
Kei Shiratsuchi
 
PDF
2013-03-23 - NoSQL Spartakiade
Johannes Hoppe
 
PPTX
àžšàž—7
kiddy67
 
PDF
Php 2
tnngo2
 
jQuery Learning
Uzair Ali
 
TDD With Typescript - Noam Katzir
Wix Engineering
 
Building a Location-based platform with MongoDB from Zero.
Ravi Teja
 
bcgr3-jquery
tutorialsruby
 
Introduction to jQuery (Ajax Exp 2006)
jeresig
 
Realm mobile database
Parinda Rajapaksha
 
Gradle basics
Pedro Borrayo
 
えっ、ăȘă«ăă‚Œă“ă‚ă„
Kei Shiratsuchi
 
2013-03-23 - NoSQL Spartakiade
Johannes Hoppe
 
àžšàž—7
kiddy67
 
Php 2
tnngo2
 

Similar to Ruby on Rails Introduction (20)

PDF
Building Your First MongoDB App
Henrik Ingo
 
KEY
Ruby/Rails
rstankov
 
ZIP
Rails 3 (beta) Roundup
Wayne Carter
 
PPTX
Venturing Into The Wild: A .NET Developer's Experience As A Ruby Developer
Jon Kruger
 
PDF
Annotation processing and code gen
koji lin
 
PDF
Pourquoi ruby et rails déchirent
Nicolas Ledez
 
PDF
Getting Started with Couchbase Ruby
Sergey Avseyev
 
KEY
Rails Model Basics
James Gray
 
KEY
Couchdb: No SQL? No driver? No problem
delagoya
 
PDF
Scala ActiveRecord
scalaconfjp
 
PPTX
Introduction to RavenDB
Sasha Goldshtein
 
PDF
Alphorm.com Formation React Testing Library
Alphorm
 
KEY
Sequel
Stoyan Zhekov
 
KEY
Why ruby
rstankov
 
PPTX
La sql
James Johnson
 
PPTX
Entity Framework Database and Code First
James Johnson
 
PDF
Doctrine MongoDB Object Document Mapper
Jonathan Wage
 
KEY
Riak with node.js
Sean Cribbs
 
PDF
Introduction to rest.li
Joe Betz
 
PPTX
Dev Jumpstart: Build Your First App with MongoDB
MongoDB
 
Building Your First MongoDB App
Henrik Ingo
 
Ruby/Rails
rstankov
 
Rails 3 (beta) Roundup
Wayne Carter
 
Venturing Into The Wild: A .NET Developer's Experience As A Ruby Developer
Jon Kruger
 
Annotation processing and code gen
koji lin
 
Pourquoi ruby et rails déchirent
Nicolas Ledez
 
Getting Started with Couchbase Ruby
Sergey Avseyev
 
Rails Model Basics
James Gray
 
Couchdb: No SQL? No driver? No problem
delagoya
 
Scala ActiveRecord
scalaconfjp
 
Introduction to RavenDB
Sasha Goldshtein
 
Alphorm.com Formation React Testing Library
Alphorm
 
Sequel
Stoyan Zhekov
 
Why ruby
rstankov
 
La sql
James Johnson
 
Entity Framework Database and Code First
James Johnson
 
Doctrine MongoDB Object Document Mapper
Jonathan Wage
 
Riak with node.js
Sean Cribbs
 
Introduction to rest.li
Joe Betz
 
Dev Jumpstart: Build Your First App with MongoDB
MongoDB
 
Ad

More from paramisoft (9)

PDF
Go language presentation
paramisoft
 
PPTX
Introduction To Backbone JS
paramisoft
 
PPT
Git essentials
paramisoft
 
PPTX
iOS development introduction
paramisoft
 
PPTX
Introduction to HAML
paramisoft
 
PPTX
Desing pattern prototype-Factory Method, Prototype and Builder
paramisoft
 
PPTX
Design pattern (Abstract Factory & Singleton)
paramisoft
 
PDF
ParamiSoft Systems Pvt. Ltd. Profile
paramisoft
 
PPTX
Garden City Ruby Conference - lightening talk
paramisoft
 
Go language presentation
paramisoft
 
Introduction To Backbone JS
paramisoft
 
Git essentials
paramisoft
 
iOS development introduction
paramisoft
 
Introduction to HAML
paramisoft
 
Desing pattern prototype-Factory Method, Prototype and Builder
paramisoft
 
Design pattern (Abstract Factory & Singleton)
paramisoft
 
ParamiSoft Systems Pvt. Ltd. Profile
paramisoft
 
Garden City Ruby Conference - lightening talk
paramisoft
 
Ad

Recently uploaded (20)

PPTX
Engineering the Java Web Application (MVC)
abhishekoza1981
 
PDF
iTop VPN With Crack Lifetime Activation Key-CODE
utfefguu
 
PPTX
Human Resources Information System (HRIS)
Amity University, Patna
 
PPTX
Comprehensive Guide: Shoviv Exchange to Office 365 Migration Tool 2025
Shoviv Software
 
PPTX
Writing Better Code - Helping Developers make Decisions.pptx
Lorraine Steyn
 
PDF
Mobile CMMS Solutions Empowering the Frontline Workforce
CryotosCMMSSoftware
 
PPTX
MiniTool Power Data Recovery Full Crack Latest 2025
muhammadgurbazkhan
 
PPTX
3uTools Full Crack Free Version Download [Latest] 2025
muhammadgurbazkhan
 
PPTX
Java Native Memory Leaks: The Hidden Villain Behind JVM Performance Issues
Tier1 app
 
PDF
Alarm in Android-Scheduling Timed Tasks Using AlarmManager in Android.pdf
Nabin Dhakal
 
PDF
Efficient, Automated Claims Processing Software for Insurers
Insurance Tech Services
 
PDF
Automate Cybersecurity Tasks with Python
VICTOR MAESTRE RAMIREZ
 
PDF
Thread In Android-Mastering Concurrency for Responsive Apps.pdf
Nabin Dhakal
 
PDF
vMix Pro 28.0.0.42 Download vMix Registration key Bundle
kulindacore
 
PDF
Why Businesses Are Switching to Open Source Alternatives to Crystal Reports.pdf
Varsha Nayak
 
PPTX
Why Businesses Are Switching to Open Source Alternatives to Crystal Reports.pptx
Varsha Nayak
 
PDF
GetOnCRM Speeds Up Agentforce 3 Deployment for Enterprise AI Wins.pdf
GetOnCRM Solutions
 
PDF
Unlock Efficiency with Insurance Policy Administration Systems
Insurance Tech Services
 
PDF
Linux Certificate of Completion - LabEx Certificate
VICTOR MAESTRE RAMIREZ
 
PPTX
An Introduction to ZAP by Checkmarx - Official Version
Simon Bennetts
 
Engineering the Java Web Application (MVC)
abhishekoza1981
 
iTop VPN With Crack Lifetime Activation Key-CODE
utfefguu
 
Human Resources Information System (HRIS)
Amity University, Patna
 
Comprehensive Guide: Shoviv Exchange to Office 365 Migration Tool 2025
Shoviv Software
 
Writing Better Code - Helping Developers make Decisions.pptx
Lorraine Steyn
 
Mobile CMMS Solutions Empowering the Frontline Workforce
CryotosCMMSSoftware
 
MiniTool Power Data Recovery Full Crack Latest 2025
muhammadgurbazkhan
 
3uTools Full Crack Free Version Download [Latest] 2025
muhammadgurbazkhan
 
Java Native Memory Leaks: The Hidden Villain Behind JVM Performance Issues
Tier1 app
 
Alarm in Android-Scheduling Timed Tasks Using AlarmManager in Android.pdf
Nabin Dhakal
 
Efficient, Automated Claims Processing Software for Insurers
Insurance Tech Services
 
Automate Cybersecurity Tasks with Python
VICTOR MAESTRE RAMIREZ
 
Thread In Android-Mastering Concurrency for Responsive Apps.pdf
Nabin Dhakal
 
vMix Pro 28.0.0.42 Download vMix Registration key Bundle
kulindacore
 
Why Businesses Are Switching to Open Source Alternatives to Crystal Reports.pdf
Varsha Nayak
 
Why Businesses Are Switching to Open Source Alternatives to Crystal Reports.pptx
Varsha Nayak
 
GetOnCRM Speeds Up Agentforce 3 Deployment for Enterprise AI Wins.pdf
GetOnCRM Solutions
 
Unlock Efficiency with Insurance Policy Administration Systems
Insurance Tech Services
 
Linux Certificate of Completion - LabEx Certificate
VICTOR MAESTRE RAMIREZ
 
An Introduction to ZAP by Checkmarx - Official Version
Simon Bennetts
 

Ruby on Rails Introduction