SlideShare a Scribd company logo
Initiation à
Ruby on Rails
Ruby on Rails
@humancoders
@matthieusegret
Matthieu Segret
Formateur Ruby on Rails
Cofondateur de Human Coders
Formation
Un langage :
Ruby
• Langage interprété / orienté objet
• Libre - Licence Ruby et GPL
• Version 1.9.3 (bientôt 2.0)
• Apparu en 1995
Ruby
Initiation à Ruby on Rails
Initiation à Ruby on Rails
puts "Hello world"
Ruby
"ruby is cool".length # 12
-42.abs # 42
"Nice Day Isn't It?".downcase.split
# ["nice", "day", "isn't", "it?"]
class Book
def initialize(name)
@name = name
end
def name
@name
end
end
Ruby
book = Book.new("Programming Ruby")
book.name # "Programming Ruby"
Initiation à Ruby on Rails
Initiation à Ruby on Rails
Un framework :
Ruby on Rails
• Framework web écrit en Ruby
• Libre - MIT
• Version 3.2 (bientôt 4.0)
• Apparu en 2004
Ruby on Rails
Convention over
Configuration
DRY
(Don’t Repeat Yourself)
Projet : MyNotes
Projet : MyNotes
$ rails new MyNotes
• Créer un nouveau projet
$ cd MyNotes
$ rails server• Démarrer le serveur
Initiation à Ruby on Rails
View
Controller
Model
Routing
Initiation à Ruby on Rails
CRUD
Create
Read
Update
Delete
CRUD
Ressource : notes
notes
id integer
title varchar
content text
$ rails generate scaffold note title content:text
invoke active_recordcreate
db/migrate/20130130171611_create_notes.rbcreate
app/models/note.rbinvoke test_unitcreate
test/unit/note_test.rbcreate
test/fixtures/notes.ymlinvoke resource_routeroute
resources :notesinvoke scaffold_controllercreate
app/controllers/notes_controller.rbinvoke
erbcreate app/views/notescreate
app/views/notes/index.html.erbcreate
app/views/notes/edit.html.erbcreate
app/views/notes/show.html.erbcreate
app/views/notes/new.html.erb
create app/views/notes/_form.html.erb...
Génération du CRUD
Migration
migration 1
migration 2
migration 3
migration 4
devise_create_users
acts_as_follower
create_notes
add_profile_to_user
s
20110720095338_
20110718190746_
20110715205012_
20110605152153_
rake db:migrate rake db:rollback
current
.rb
Migration
Migration
class CreateNotes < ActiveRecord::Migration
def change
create_table :notes do |t|
t.string :title
t.text :content
t.timestamps
end
end
end
db/migrate/20130130175117_create_notes.rb
$ rake db:migrate
Base de données
notes
id integer
title varchar
content text
Initiation à Ruby on Rails
Modèle
View
Controller
Model
Routing
Modèle
class Note < ActiveRecord::Base
end
app/models/note.rb
Modèle : création
Note.create(content: "I created Ruby", title: "Matz")
Modèle : mise à jour
note = Note.find(1)
note.content = "I love Ruby"
note.save
Modèle : lecture
Note.where(:title => "Matz").order("title ASC").limit(5)
Modèle : suppression
Note.find(1).destroy
Vue
View
Controller
Model
Routing
ERB
<p>
<b>Title:</b>
<%= @note.title %>
</p>
<p>
<b>Content:</b>
<%= @note.content %>
</p>
app/views/notes/show.html.erb
Formulaires
<%= form_for(@note) do |f| %>
<%= f.label :title %>
<%= f.text_field :title %>
<%= f.label :content %>
<%= f.text_area :content %>
<%= f.submit %>
<% end %>
Contrôleur
View
Controller
Model
Routing
Contrôleur
class NotesController < ApplicationController
def show
@note = Note.find(params[:id])
end
end
app/controllers/notes_controller.rb
app/views/notes/show.html.erb
Request
GET /notes/1
<p>
<b>Title:</b>
<%= @note.title %>
</p>
Déploiement
Initiation à Ruby on Rails
Les gems
Indexation
Twitter
NoSQL
Paiement en ligne
Géolocalisation
Parsing
Pagination
Cache
Tâches de
fonds
Upload de
fichiers
Facebook
Authentification
Localisation
OAuth
A/B teste
LDAP
La commautée
Française
Montpellier
Lyon
Toulouse
Nantes
Rennes
Lille
Paris
Sophia Antipolis
Strasbourg
Marseille
Compiegne
Bordeaux
Aller plus loin
Initiation à Ruby on Rails
Programming Ruby 1.9 (3rd
edition)
Agile Web Development with Rails
(4th edition)
Initiation à Ruby on Rails
Formation
@humancoders
Merci !

More Related Content

KEY
Ruby On Rails Ecosystem
KEY
About Clack
PDF
An introduction to the ruby ecosystem
PDF
RubyStack: the easiest way to deploy Ruby on Rails
PDF
Ruby in office time reboot
PPTX
Rubykaigi 2017-nishimotz-v6
PDF
Docker for the Rubyist
PPTX
Lisp in the Cloud
Ruby On Rails Ecosystem
About Clack
An introduction to the ruby ecosystem
RubyStack: the easiest way to deploy Ruby on Rails
Ruby in office time reboot
Rubykaigi 2017-nishimotz-v6
Docker for the Rubyist
Lisp in the Cloud

What's hot (20)

ODP
Lisp Meet Up #31, Clake: a GNU make-like build utility in Common Lisp
PDF
Building GUI App with Electron and Lisp
PDF
Ruby projects of interest for DevOps
PPTX
Ruby on Rails : First Mile
PPTX
Ruby, the language of devops
PDF
Woo: Writing a fast web server @ ELS2015
PDF
Writing a fast HTTP parser
ODP
Developing high-performance network servers in Lisp
PDF
FaaS you like it (if Shakespeare had written Functions-as-a-Service)
PDF
How to distribute Ruby to the world
KEY
tDiary annual report 2009 - Sapporo Ruby Kaigi02
PDF
An introduction and future of Ruby coverage library
PDF
How to develop the Standard Libraries of Ruby?
PPT
Ruby eventmachine pres at rubybdx
KEY
Less to Few
PDF
Middleware as Code with mruby
PDF
Gems on Ruby
PDF
20140918 ruby kaigi2014
PPT
Introduction to Ruby on Rails
Lisp Meet Up #31, Clake: a GNU make-like build utility in Common Lisp
Building GUI App with Electron and Lisp
Ruby projects of interest for DevOps
Ruby on Rails : First Mile
Ruby, the language of devops
Woo: Writing a fast web server @ ELS2015
Writing a fast HTTP parser
Developing high-performance network servers in Lisp
FaaS you like it (if Shakespeare had written Functions-as-a-Service)
How to distribute Ruby to the world
tDiary annual report 2009 - Sapporo Ruby Kaigi02
An introduction and future of Ruby coverage library
How to develop the Standard Libraries of Ruby?
Ruby eventmachine pres at rubybdx
Less to Few
Middleware as Code with mruby
Gems on Ruby
20140918 ruby kaigi2014
Introduction to Ruby on Rails
Ad

Viewers also liked (9)

PDF
Malware Unchained
PDF
Stratégie et évolution de Microsoft IT pour supporter la transformation digit...
PPTX
Geek is in da House 2014
PPTX
[AzureCamp 24 Juin 2014] Azure Media Services par Xavier Pouyat
PPTX
Mise en œuvre d’une démarche DevOps dans Windows Azure
PPTX
Power Query Demos Extravaganza
PDF
Just In Time Scalability Agile Methods To Support Massive Growth Presentation
PPTX
Powershell, 45 tips & tricks pour votre utilisation quotidienne
PPTX
Plongée profonde dans les technos de haute disponibilité d’Exchange 2010 par...
Malware Unchained
Stratégie et évolution de Microsoft IT pour supporter la transformation digit...
Geek is in da House 2014
[AzureCamp 24 Juin 2014] Azure Media Services par Xavier Pouyat
Mise en œuvre d’une démarche DevOps dans Windows Azure
Power Query Demos Extravaganza
Just In Time Scalability Agile Methods To Support Massive Growth Presentation
Powershell, 45 tips & tricks pour votre utilisation quotidienne
Plongée profonde dans les technos de haute disponibilité d’Exchange 2010 par...
Ad

Similar to Initiation à Ruby on Rails (20)

PPTX
Intro to Rails and MVC
PPT
An introduction-to-ruby-on-rails
PPT
An Introduction to Ruby on Rails 20100506
PDF
Ruby on Rail Training in Bangalore by myTectra
PDF
Ruby on Rail Training in Bangalore by myTectra
PDF
PDF
Ruby course-1-preview
PPTX
Why Ruby?
PPT
Introduction to Ruby on Rails
PDF
Ruby hellug
KEY
Rails vu d'un Javaiste
PDF
Ruby on Rails
PDF
Introduction to rails
PDF
Happy Coding with Ruby on Rails
PDF
Rails workshop for Java people (September 2015)
PDF
Ruby on Rails Crash course
PDF
PDF
Introduction to Rails - presented by Arman Ortega
PPT
Ruby On Rails Tutorial
PDF
Make your app idea a reality with Ruby On Rails
Intro to Rails and MVC
An introduction-to-ruby-on-rails
An Introduction to Ruby on Rails 20100506
Ruby on Rail Training in Bangalore by myTectra
Ruby on Rail Training in Bangalore by myTectra
Ruby course-1-preview
Why Ruby?
Introduction to Ruby on Rails
Ruby hellug
Rails vu d'un Javaiste
Ruby on Rails
Introduction to rails
Happy Coding with Ruby on Rails
Rails workshop for Java people (September 2015)
Ruby on Rails Crash course
Introduction to Rails - presented by Arman Ortega
Ruby On Rails Tutorial
Make your app idea a reality with Ruby On Rails

More from Microsoft Technet France (20)

PDF
Automatisez, visualisez et améliorez vos processus d’entreprise avec Nintex
PPTX
Comment réussir votre déploiement de Windows 10
PPTX
OMS log search au quotidien
PPTX
Fusion, Acquisition - Optimisez la migration et la continuité des outils col...
PPTX
Wavestone déploie son portail Powell 365 en 5 semaines
PPTX
Retour d’expérience sur le monitoring et la sécurisation des identités Azure
PPTX
Scénarios de mobilité couverts par Enterprise Mobility + Security
PPTX
SharePoint Framework : le développement SharePoint nouvelle génération
PPTX
Stockage Cloud : il y en aura pour tout le monde
PPTX
Bien appréhender le concept de Windows As a Service
PPTX
Protéger vos données avec le chiffrement dans Azure et Office 365
PPTX
Protéger votre patrimoine informationnel dans un monde hybride avec Azure Inf...
PPTX
Comprendre la stratégie identité de Microsoft
PPTX
Vous avez dit « authentification sans mot de passe » : une illustration avec ...
PPTX
Sécurité des données
PPTX
Déploiement hybride, la téléphonie dans le cloud
PPTX
Supervisez la qualité des appels Skype for Business Online à l'aide de Call Q...
PPTX
SharePoint 2016 : architecture, déploiement et topologies hybrides
PPTX
Gestion de Windows 10 et des applications dans l'entreprise moderne
PPTX
Office 365 dans votre Système d'Informations
Automatisez, visualisez et améliorez vos processus d’entreprise avec Nintex
Comment réussir votre déploiement de Windows 10
OMS log search au quotidien
Fusion, Acquisition - Optimisez la migration et la continuité des outils col...
Wavestone déploie son portail Powell 365 en 5 semaines
Retour d’expérience sur le monitoring et la sécurisation des identités Azure
Scénarios de mobilité couverts par Enterprise Mobility + Security
SharePoint Framework : le développement SharePoint nouvelle génération
Stockage Cloud : il y en aura pour tout le monde
Bien appréhender le concept de Windows As a Service
Protéger vos données avec le chiffrement dans Azure et Office 365
Protéger votre patrimoine informationnel dans un monde hybride avec Azure Inf...
Comprendre la stratégie identité de Microsoft
Vous avez dit « authentification sans mot de passe » : une illustration avec ...
Sécurité des données
Déploiement hybride, la téléphonie dans le cloud
Supervisez la qualité des appels Skype for Business Online à l'aide de Call Q...
SharePoint 2016 : architecture, déploiement et topologies hybrides
Gestion de Windows 10 et des applications dans l'entreprise moderne
Office 365 dans votre Système d'Informations

Recently uploaded (20)

PDF
MIND Revenue Release Quarter 2 2025 Press Release
PDF
Dropbox Q2 2025 Financial Results & Investor Presentation
PDF
The Rise and Fall of 3GPP – Time for a Sabbatical?
PPTX
Group 1 Presentation -Planning and Decision Making .pptx
PPT
Teaching material agriculture food technology
PDF
Approach and Philosophy of On baking technology
PPTX
20250228 LYD VKU AI Blended-Learning.pptx
PPTX
Digital-Transformation-Roadmap-for-Companies.pptx
PDF
Assigned Numbers - 2025 - Bluetooth® Document
PDF
Optimiser vos workloads AI/ML sur Amazon EC2 et AWS Graviton
PDF
Spectral efficient network and resource selection model in 5G networks
PDF
cuic standard and advanced reporting.pdf
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PDF
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
PDF
Building Integrated photovoltaic BIPV_UPV.pdf
PPTX
SOPHOS-XG Firewall Administrator PPT.pptx
PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
PDF
Network Security Unit 5.pdf for BCA BBA.
PPTX
Machine Learning_overview_presentation.pptx
PDF
NewMind AI Weekly Chronicles - August'25-Week II
MIND Revenue Release Quarter 2 2025 Press Release
Dropbox Q2 2025 Financial Results & Investor Presentation
The Rise and Fall of 3GPP – Time for a Sabbatical?
Group 1 Presentation -Planning and Decision Making .pptx
Teaching material agriculture food technology
Approach and Philosophy of On baking technology
20250228 LYD VKU AI Blended-Learning.pptx
Digital-Transformation-Roadmap-for-Companies.pptx
Assigned Numbers - 2025 - Bluetooth® Document
Optimiser vos workloads AI/ML sur Amazon EC2 et AWS Graviton
Spectral efficient network and resource selection model in 5G networks
cuic standard and advanced reporting.pdf
Reach Out and Touch Someone: Haptics and Empathic Computing
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
Building Integrated photovoltaic BIPV_UPV.pdf
SOPHOS-XG Firewall Administrator PPT.pptx
Agricultural_Statistics_at_a_Glance_2022_0.pdf
Network Security Unit 5.pdf for BCA BBA.
Machine Learning_overview_presentation.pptx
NewMind AI Weekly Chronicles - August'25-Week II

Initiation à Ruby on Rails