Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Ruby on Rails - UNISO
Search
lucas renan
October 29, 2012
Technology
1
200
Ruby on Rails - UNISO
Apresentação sobre Ruby on Rails na Semana de Informática da Universidade de Sorocaba. 29/out/2012
lucas renan
October 29, 2012
Tweet
Share
More Decks by lucas renan
See All by lucas renan
building an international career
lucasrenan
2
110
Real Time with Rails 5
lucasrenan
0
140
A Modern Approach of Software Development - RubyConfBR 2015
lucasrenan
2
210
Be Happy With Ruby on Rails - Ecosystem
lucasrenan
1
130
Be happy with Ruby on Rails - CEUNSP Itu
lucasrenan
1
56
Seja Feliz com Ruby!
lucasrenan
0
130
hey agilista, esqueceu das pessoas?
lucasrenan
0
84
Open Source e Ruby on Rails - FLISOL 2013
lucasrenan
0
75
Ruby on Rails - CEUNSP
lucasrenan
1
61
Other Decks in Technology
See All in Technology
四国クラウドお遍路 2024 in 高知 エンディング
yukataoka
0
160
忙しい人のためのLangGraph概要まとめ
__ymgc__
0
100
20分で分かるIAM全機能 (拡大版) / 20240903-jawsug-yokohama-iam
opelab
3
130
技術力あげたい
hisaichi5518
2
2.9k
株式会社M2X エンジニアチーム紹介資料
m2xsoftware
0
430
Practical GenAI with Go - Elastic and Golang Sydney
adriancole
0
140
バックログを導入し やっぱやめた話
ota42y
0
190
LandingZoneAccelerator と学ぶ 「スケーラブルで安全なマルチアカウントAWS環境」と 私たちにもできるベストプラクティス
maimyyym
1
120
MySQLユーザ会なにやってるの?とおさそいと / たいへんなのw
sakaik
1
120
Functional TypeScript
naoya
10
3.9k
スーパーマリオRPGのリメイク版の変更点からみるUX
nishiharatsubasa
1
290
歴史と背景から改めて振り返るVPC
shotashiratori
2
220
Featured
See All Featured
A Tale of Four Properties
chriscoyier
155
22k
The Cost Of JavaScript in 2023
addyosmani
40
5.2k
The Brand Is Dead. Long Live the Brand.
mthomps
53
37k
Unsuck your backbone
ammeep
667
57k
RailsConf 2023
tenderlove
27
800
I Don’t Have Time: Getting Over the Fear to Launch Your Podcast
jcasabona
26
1.9k
GitHub's CSS Performance
jonrohan
1029
450k
How GitHub Uses GitHub to Build GitHub
holman
472
290k
Principles of Awesome APIs and How to Build Them.
keavy
125
16k
Adopting Sorbet at Scale
ufuk
72
8.9k
Raft: Consensus for Rubyists
vanstee
135
6.5k
GraphQLとの向き合い方2022年版
quramy
43
13k
Transcript
ruby on rails uniso
@lucasrenan
http://nudesign.com.br
http://aiesec.org.br/sorocaba
None
http://slideshare.net/akitaonrails
linguagem de programação
yukihiro matsumoto
None
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
None
None
None
framework web apps
david heinemeier hansson
None
None
None
None
None
produtividade e felicidade
Model View Controller
$ gem install rails
None
~ 45 mil bibliotecas
None
None
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
None
infraestrutura
web server nginx, apache
app server unicorn, passenger, mongrel
None
None
None
None
None
None
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."
None
como aprender?
None
None
None
comunidade
None
GURU Sorocaba
live coding
obrigado :)