SlideShare a Scribd company logo
ruby on rails
uniso
@lucasrenan
http://nudesign.com.br
http://aiesec.org.br/sorocaba
Ruby on Rails - UNISO
http://slideshare.net/akitaonrails
linguagem
de programação
yukihiro
matsumoto
Ruby on Rails - UNISO
puramente
orientada a objetos
str = "ruby"
puts str.class # String
str = "ruby"
puts str.class # String

int = 100
puts int.class # Fixnum
str = "ruby"
puts str.class # String

int = 100
puts int.class # Fixnum

puts nil.class # NilClass
Ruby on Rails - UNISO
Ruby on Rails - UNISO
Ruby on Rails - UNISO
framework
web apps
david
heinemeier
 hansson
Ruby on Rails - UNISO
Ruby on Rails - UNISO
Ruby on Rails - UNISO
Ruby on Rails - UNISO
Ruby on Rails - UNISO
produtividade e
felicidade
Model
View
Controller
$ gem install rails
Ruby on Rails - UNISO
~ 45 mil
bibliotecas
Ruby on Rails - UNISO
Ruby on Rails - UNISO
framework
modular
# application.rb
# Pick the frameworks you want:

# require "active_record/railtie"
require "action_controller/railtie"
require "action_mailer/railtie"
require "active_resource/railtie"
require "sprockets/railtie"
# require "rails/test_unit/railtie"
active record
bancos relacionais
Ruby on Rails - UNISO
infraestrutura
web server
nginx, apache
app server
unicorn, passenger,
mongrel
Ruby on Rails - UNISO
Ruby on Rails - UNISO
Ruby on Rails - UNISO
Ruby on Rails - UNISO
Ruby on Rails - UNISO
Ruby on Rails - UNISO
Test
Driven
Development
RSpec
describe Order do
  it "sums the prices of items" do
    order = Order.new
    order.add_entry(Item.new(
       :price => Money.new(1.11, :USD)
    ))
    order.add_entry(Item.new(
       :price => Money.new(2.22, :USD),
       :quantity => 2
    ))
    order.total.should eq(Money.new(5.55, :USD))
  end
end
"Describe an order."
"It sums the prices of items."
Ruby on Rails - UNISO
como
aprender?
Ruby on Rails - UNISO
Ruby on Rails - UNISO
Ruby on Rails - UNISO
comunidade
Ruby on Rails - UNISO
GURU Sorocaba
live
coding
obrigado
:)
Ad

Recommended

AngularJS meets Rails
AngularJS meets Rails
Elena Torró
 
Scaling Rails Sites by default
Scaling Rails Sites by default
Yi-Ting Cheng
 
Put a Button on It: Removing Barriers to Going Fast
Put a Button on It: Removing Barriers to Going Fast
OSCON Byrum
 
Ruby on Rails + AngularJS + Twitter Bootstrap
Ruby on Rails + AngularJS + Twitter Bootstrap
Marcio Marinho
 
Python for AngularJS
Python for AngularJS
Jeff Schenck
 
I18n
I18n
soon
 
Optimizing AngularJS Application
Optimizing AngularJS Application
Md. Ziaul Haq
 
RoR vs-nodejs-by-jcskyting
RoR vs-nodejs-by-jcskyting
信凱 王
 
a_rubygem_for_iknow_api
a_rubygem_for_iknow_api
Nov Matake
 
Symfony bundle fo asynchronous job processing
Symfony bundle fo asynchronous job processing
Wojciech Ciołko
 
Javascript: A sneak preview
Javascript: A sneak preview
Nicolas Demetriou
 
Angularjs Services part 03
Angularjs Services part 03
Mohd Abdul Baquee
 
Scala scripting-slides
Scala scripting-slides
Daniel Sebban
 
Deploying Your Favorite Web App To AWS Lambda with Apex up
Deploying Your Favorite Web App To AWS Lambda with Apex up
Riza Fahmi
 
Impression of Rails 3
Impression of Rails 3
Kosuke Matsuda
 
Rails with mongodb
Rails with mongodb
Kosuke Matsuda
 
Real World Fun with ActiveResource
Real World Fun with ActiveResource
Rob C
 
AWS user group September 2017 - Rob Ribeiro "Seeking Solutions for Debugging ...
AWS user group September 2017 - Rob Ribeiro "Seeking Solutions for Debugging ...
AWS Chicago
 
Prototypejs
Prototypejs
Kosuke Matsuda
 
Angular basicschat
Angular basicschat
Yu Jin
 
Angular performance hint tool
Angular performance hint tool
雨维 巴
 
Namespace less engine
Namespace less engine
shaokun
 
Introduce cucumber
Introduce cucumber
Bachue Zhou
 
Angular Testing
Angular Testing
Priscila Negreiros
 
Automated Tests and CSS
Automated Tests and CSS
klamping
 
遠端團隊專案建立與管理 remote team management 2016
遠端團隊專案建立與管理 remote team management 2016
Caesar Chi
 
Trucker
Trucker
Patrick Crowley
 
Intro to Backbone.js with Rails
Intro to Backbone.js with Rails
Tim Tyrrell
 
Uberengagement An Introduction
Uberengagement An Introduction
Sean Trainor
 
Ruby on Rails + MongoDB - GURU Sorocaba
Ruby on Rails + MongoDB - GURU Sorocaba
Lucas Renan
 

More Related Content

What's hot (20)

a_rubygem_for_iknow_api
a_rubygem_for_iknow_api
Nov Matake
 
Symfony bundle fo asynchronous job processing
Symfony bundle fo asynchronous job processing
Wojciech Ciołko
 
Javascript: A sneak preview
Javascript: A sneak preview
Nicolas Demetriou
 
Angularjs Services part 03
Angularjs Services part 03
Mohd Abdul Baquee
 
Scala scripting-slides
Scala scripting-slides
Daniel Sebban
 
Deploying Your Favorite Web App To AWS Lambda with Apex up
Deploying Your Favorite Web App To AWS Lambda with Apex up
Riza Fahmi
 
Impression of Rails 3
Impression of Rails 3
Kosuke Matsuda
 
Rails with mongodb
Rails with mongodb
Kosuke Matsuda
 
Real World Fun with ActiveResource
Real World Fun with ActiveResource
Rob C
 
AWS user group September 2017 - Rob Ribeiro "Seeking Solutions for Debugging ...
AWS user group September 2017 - Rob Ribeiro "Seeking Solutions for Debugging ...
AWS Chicago
 
Prototypejs
Prototypejs
Kosuke Matsuda
 
Angular basicschat
Angular basicschat
Yu Jin
 
Angular performance hint tool
Angular performance hint tool
雨维 巴
 
Namespace less engine
Namespace less engine
shaokun
 
Introduce cucumber
Introduce cucumber
Bachue Zhou
 
Angular Testing
Angular Testing
Priscila Negreiros
 
Automated Tests and CSS
Automated Tests and CSS
klamping
 
遠端團隊專案建立與管理 remote team management 2016
遠端團隊專案建立與管理 remote team management 2016
Caesar Chi
 
Trucker
Trucker
Patrick Crowley
 
Intro to Backbone.js with Rails
Intro to Backbone.js with Rails
Tim Tyrrell
 
a_rubygem_for_iknow_api
a_rubygem_for_iknow_api
Nov Matake
 
Symfony bundle fo asynchronous job processing
Symfony bundle fo asynchronous job processing
Wojciech Ciołko
 
Scala scripting-slides
Scala scripting-slides
Daniel Sebban
 
Deploying Your Favorite Web App To AWS Lambda with Apex up
Deploying Your Favorite Web App To AWS Lambda with Apex up
Riza Fahmi
 
Real World Fun with ActiveResource
Real World Fun with ActiveResource
Rob C
 
AWS user group September 2017 - Rob Ribeiro "Seeking Solutions for Debugging ...
AWS user group September 2017 - Rob Ribeiro "Seeking Solutions for Debugging ...
AWS Chicago
 
Angular basicschat
Angular basicschat
Yu Jin
 
Angular performance hint tool
Angular performance hint tool
雨维 巴
 
Namespace less engine
Namespace less engine
shaokun
 
Introduce cucumber
Introduce cucumber
Bachue Zhou
 
Automated Tests and CSS
Automated Tests and CSS
klamping
 
遠端團隊專案建立與管理 remote team management 2016
遠端團隊專案建立與管理 remote team management 2016
Caesar Chi
 
Intro to Backbone.js with Rails
Intro to Backbone.js with Rails
Tim Tyrrell
 

Viewers also liked (17)

Uberengagement An Introduction
Uberengagement An Introduction
Sean Trainor
 
Ruby on Rails + MongoDB - GURU Sorocaba
Ruby on Rails + MongoDB - GURU Sorocaba
Lucas Renan
 
REST Active Resource - 7º Encontro do GURU Sorocaba
REST Active Resource - 7º Encontro do GURU Sorocaba
Lucas Renan
 
Ruby on Rails + MongoDB
Ruby on Rails + MongoDB
Lucas Renan
 
Social Media
Social Media
Sean Trainor
 
Beyond the rhetoric
Beyond the rhetoric
Sean Trainor
 
Open Source e Ruby on Rails - FLISOL 2013
Open Source e Ruby on Rails - FLISOL 2013
Lucas Renan
 
Seja Feliz com Ruby!
Seja Feliz com Ruby!
Lucas Renan
 
AIESEC Sorocaba - CONACT Effect
AIESEC Sorocaba - CONACT Effect
Lucas Renan
 
Ruby on Rails + MongoDB - FATEC Sorocaba
Ruby on Rails + MongoDB - FATEC Sorocaba
Lucas Renan
 
Be Happy With Ruby on Rails - Ecosystem
Be Happy With Ruby on Rails - Ecosystem
Lucas Renan
 
Real Time with Rails 5
Real Time with Rails 5
Lucas Renan
 
Uberengagement On Integration
Uberengagement On Integration
Sean Trainor
 
Forgotten Language Shel Silverstein
Forgotten Language Shel Silverstein
guest07774a9
 
Beyond the rhetoric
Beyond the rhetoric
Sean Trainor
 
Be happy with Ruby on Rails - CEUNSP Itu
Be happy with Ruby on Rails - CEUNSP Itu
Lucas Renan
 
building an international career
building an international career
Lucas Renan
 
Uberengagement An Introduction
Uberengagement An Introduction
Sean Trainor
 
Ruby on Rails + MongoDB - GURU Sorocaba
Ruby on Rails + MongoDB - GURU Sorocaba
Lucas Renan
 
REST Active Resource - 7º Encontro do GURU Sorocaba
REST Active Resource - 7º Encontro do GURU Sorocaba
Lucas Renan
 
Ruby on Rails + MongoDB
Ruby on Rails + MongoDB
Lucas Renan
 
Beyond the rhetoric
Beyond the rhetoric
Sean Trainor
 
Open Source e Ruby on Rails - FLISOL 2013
Open Source e Ruby on Rails - FLISOL 2013
Lucas Renan
 
Seja Feliz com Ruby!
Seja Feliz com Ruby!
Lucas Renan
 
AIESEC Sorocaba - CONACT Effect
AIESEC Sorocaba - CONACT Effect
Lucas Renan
 
Ruby on Rails + MongoDB - FATEC Sorocaba
Ruby on Rails + MongoDB - FATEC Sorocaba
Lucas Renan
 
Be Happy With Ruby on Rails - Ecosystem
Be Happy With Ruby on Rails - Ecosystem
Lucas Renan
 
Real Time with Rails 5
Real Time with Rails 5
Lucas Renan
 
Uberengagement On Integration
Uberengagement On Integration
Sean Trainor
 
Forgotten Language Shel Silverstein
Forgotten Language Shel Silverstein
guest07774a9
 
Beyond the rhetoric
Beyond the rhetoric
Sean Trainor
 
Be happy with Ruby on Rails - CEUNSP Itu
Be happy with Ruby on Rails - CEUNSP Itu
Lucas Renan
 
building an international career
building an international career
Lucas Renan
 
Ad

Similar to Ruby on Rails - UNISO (20)

Introduction to Rails - presented by Arman Ortega
Introduction to Rails - presented by Arman Ortega
arman o
 
Metaprogramming 101
Metaprogramming 101
Nando Vieira
 
An introduction-to-ruby-on-rails
An introduction-to-ruby-on-rails
vinicorp
 
An Introduction to Ruby on Rails 20100506
An Introduction to Ruby on Rails 20100506
Vu Hung Nguyen
 
Why Ruby?
Why Ruby?
IT Weekend
 
Ruby On Rails
Ruby On Rails
Gautam Rege
 
Building Application with Ruby On Rails Framework
Building Application with Ruby On Rails Framework
Edureka!
 
Impacta - Show Day de Rails
Impacta - Show Day de Rails
Fabio Akita
 
Ruby On Rails Tutorial
Ruby On Rails Tutorial
sunniboy
 
Ruby on Rail Training in Bangalore by myTectra
Ruby on Rail Training in Bangalore by myTectra
myTectra Learning Solutions Private Ltd
 
Ruby on Rail Training in Bangalore by myTectra
Ruby on Rail Training in Bangalore by myTectra
myTectra Learning Solutions Private Ltd
 
FLiSOL - Oficina Ruby on Rails
FLiSOL - Oficina Ruby on Rails
Ronaldo Fuzinato
 
Building Application With Ruby On Rails Framework
Building Application With Ruby On Rails Framework
Vineet Chaturvedi
 
Jicc teaching rails
Jicc teaching rails
Bernard Loire
 
Rapid Application Development using Ruby on Rails
Rapid Application Development using Ruby on Rails
Simobo
 
Introduction To Rails
Introduction To Rails
Eric Gruber
 
Ruby 2.0: to infinity... and beyond!
Ruby 2.0: to infinity... and beyond!
Fabio Kung
 
Ruby on Rails Web Development Best Practices and Tips.pdf
Ruby on Rails Web Development Best Practices and Tips.pdf
lubnayasminsebl
 
Ecossistema Ruby - versão SCTI UNF 2013
Ecossistema Ruby - versão SCTI UNF 2013
Fabio Akita
 
Payments integration: Stripe & Taxamo
Payments integration: Stripe & Taxamo
Netguru
 
Introduction to Rails - presented by Arman Ortega
Introduction to Rails - presented by Arman Ortega
arman o
 
Metaprogramming 101
Metaprogramming 101
Nando Vieira
 
An introduction-to-ruby-on-rails
An introduction-to-ruby-on-rails
vinicorp
 
An Introduction to Ruby on Rails 20100506
An Introduction to Ruby on Rails 20100506
Vu Hung Nguyen
 
Building Application with Ruby On Rails Framework
Building Application with Ruby On Rails Framework
Edureka!
 
Impacta - Show Day de Rails
Impacta - Show Day de Rails
Fabio Akita
 
Ruby On Rails Tutorial
Ruby On Rails Tutorial
sunniboy
 
FLiSOL - Oficina Ruby on Rails
FLiSOL - Oficina Ruby on Rails
Ronaldo Fuzinato
 
Building Application With Ruby On Rails Framework
Building Application With Ruby On Rails Framework
Vineet Chaturvedi
 
Rapid Application Development using Ruby on Rails
Rapid Application Development using Ruby on Rails
Simobo
 
Introduction To Rails
Introduction To Rails
Eric Gruber
 
Ruby 2.0: to infinity... and beyond!
Ruby 2.0: to infinity... and beyond!
Fabio Kung
 
Ruby on Rails Web Development Best Practices and Tips.pdf
Ruby on Rails Web Development Best Practices and Tips.pdf
lubnayasminsebl
 
Ecossistema Ruby - versão SCTI UNF 2013
Ecossistema Ruby - versão SCTI UNF 2013
Fabio Akita
 
Payments integration: Stripe & Taxamo
Payments integration: Stripe & Taxamo
Netguru
 
Ad

Recently uploaded (20)

10 Key Challenges for AI within the EU Data Protection Framework.pdf
10 Key Challenges for AI within the EU Data Protection Framework.pdf
Priyanka Aash
 
OWASP Barcelona 2025 Threat Model Library
OWASP Barcelona 2025 Threat Model Library
PetraVukmirovic
 
cnc-processing-centers-centateq-p-110-en.pdf
cnc-processing-centers-centateq-p-110-en.pdf
AmirStern2
 
Smarter Aviation Data Management: Lessons from Swedavia Airports and Sweco
Smarter Aviation Data Management: Lessons from Swedavia Airports and Sweco
Safe Software
 
"Scaling in space and time with Temporal", Andriy Lupa.pdf
"Scaling in space and time with Temporal", Andriy Lupa.pdf
Fwdays
 
Security Tips for Enterprise Azure Solutions
Security Tips for Enterprise Azure Solutions
Michele Leroux Bustamante
 
"How to survive Black Friday: preparing e-commerce for a peak season", Yurii ...
"How to survive Black Friday: preparing e-commerce for a peak season", Yurii ...
Fwdays
 
" How to survive with 1 billion vectors and not sell a kidney: our low-cost c...
" How to survive with 1 billion vectors and not sell a kidney: our low-cost c...
Fwdays
 
Python Conference Singapore - 19 Jun 2025
Python Conference Singapore - 19 Jun 2025
ninefyi
 
Securing Account Lifecycles in the Age of Deepfakes.pptx
Securing Account Lifecycles in the Age of Deepfakes.pptx
FIDO Alliance
 
You are not excused! How to avoid security blind spots on the way to production
You are not excused! How to avoid security blind spots on the way to production
Michele Leroux Bustamante
 
WebdriverIO & JavaScript: The Perfect Duo for Web Automation
WebdriverIO & JavaScript: The Perfect Duo for Web Automation
digitaljignect
 
Cluster-Based Multi-Objective Metamorphic Test Case Pair Selection for Deep N...
Cluster-Based Multi-Objective Metamorphic Test Case Pair Selection for Deep N...
janeliewang985
 
Mastering AI Workflows with FME by Mark Döring
Mastering AI Workflows with FME by Mark Döring
Safe Software
 
GenAI Opportunities and Challenges - Where 370 Enterprises Are Focusing Now.pdf
GenAI Opportunities and Challenges - Where 370 Enterprises Are Focusing Now.pdf
Priyanka Aash
 
AI Agents and FME: A How-to Guide on Generating Synthetic Metadata
AI Agents and FME: A How-to Guide on Generating Synthetic Metadata
Safe Software
 
The Future of Technology: 2025-2125 by Saikat Basu.pdf
The Future of Technology: 2025-2125 by Saikat Basu.pdf
Saikat Basu
 
Quantum AI Discoveries: Fractal Patterns Consciousness and Cyclical Universes
Quantum AI Discoveries: Fractal Patterns Consciousness and Cyclical Universes
Saikat Basu
 
The Future of Product Management in AI ERA.pdf
The Future of Product Management in AI ERA.pdf
Alyona Owens
 
Cyber Defense Matrix Workshop - RSA Conference
Cyber Defense Matrix Workshop - RSA Conference
Priyanka Aash
 
10 Key Challenges for AI within the EU Data Protection Framework.pdf
10 Key Challenges for AI within the EU Data Protection Framework.pdf
Priyanka Aash
 
OWASP Barcelona 2025 Threat Model Library
OWASP Barcelona 2025 Threat Model Library
PetraVukmirovic
 
cnc-processing-centers-centateq-p-110-en.pdf
cnc-processing-centers-centateq-p-110-en.pdf
AmirStern2
 
Smarter Aviation Data Management: Lessons from Swedavia Airports and Sweco
Smarter Aviation Data Management: Lessons from Swedavia Airports and Sweco
Safe Software
 
"Scaling in space and time with Temporal", Andriy Lupa.pdf
"Scaling in space and time with Temporal", Andriy Lupa.pdf
Fwdays
 
Security Tips for Enterprise Azure Solutions
Security Tips for Enterprise Azure Solutions
Michele Leroux Bustamante
 
"How to survive Black Friday: preparing e-commerce for a peak season", Yurii ...
"How to survive Black Friday: preparing e-commerce for a peak season", Yurii ...
Fwdays
 
" How to survive with 1 billion vectors and not sell a kidney: our low-cost c...
" How to survive with 1 billion vectors and not sell a kidney: our low-cost c...
Fwdays
 
Python Conference Singapore - 19 Jun 2025
Python Conference Singapore - 19 Jun 2025
ninefyi
 
Securing Account Lifecycles in the Age of Deepfakes.pptx
Securing Account Lifecycles in the Age of Deepfakes.pptx
FIDO Alliance
 
You are not excused! How to avoid security blind spots on the way to production
You are not excused! How to avoid security blind spots on the way to production
Michele Leroux Bustamante
 
WebdriverIO & JavaScript: The Perfect Duo for Web Automation
WebdriverIO & JavaScript: The Perfect Duo for Web Automation
digitaljignect
 
Cluster-Based Multi-Objective Metamorphic Test Case Pair Selection for Deep N...
Cluster-Based Multi-Objective Metamorphic Test Case Pair Selection for Deep N...
janeliewang985
 
Mastering AI Workflows with FME by Mark Döring
Mastering AI Workflows with FME by Mark Döring
Safe Software
 
GenAI Opportunities and Challenges - Where 370 Enterprises Are Focusing Now.pdf
GenAI Opportunities and Challenges - Where 370 Enterprises Are Focusing Now.pdf
Priyanka Aash
 
AI Agents and FME: A How-to Guide on Generating Synthetic Metadata
AI Agents and FME: A How-to Guide on Generating Synthetic Metadata
Safe Software
 
The Future of Technology: 2025-2125 by Saikat Basu.pdf
The Future of Technology: 2025-2125 by Saikat Basu.pdf
Saikat Basu
 
Quantum AI Discoveries: Fractal Patterns Consciousness and Cyclical Universes
Quantum AI Discoveries: Fractal Patterns Consciousness and Cyclical Universes
Saikat Basu
 
The Future of Product Management in AI ERA.pdf
The Future of Product Management in AI ERA.pdf
Alyona Owens
 
Cyber Defense Matrix Workshop - RSA Conference
Cyber Defense Matrix Workshop - RSA Conference
Priyanka Aash
 

Ruby on Rails - UNISO