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
Sesion II - Taller RoR LCC
Search
A. Felipe Cabargas Madrid
May 16, 2017
Programming
0
120
Sesion II - Taller RoR LCC
2nd session of the USACH's Computer Science degree workshop on RoR
A. Felipe Cabargas Madrid
May 16, 2017
Tweet
Share
More Decks by A. Felipe Cabargas Madrid
See All by A. Felipe Cabargas Madrid
Layers Layers Layers
felipecabargas
0
53
Accesibilidad Web: Que, como, cuando y por que?
felipecabargas
0
23
Untangling git
felipecabargas
0
58
Docker 101
felipecabargas
1
77
GroupRaise Learning Fridays: UX 101
felipecabargas
0
91
GroupRaise Learning Fridays: Hows and whys of version control
felipecabargas
0
46
Sesion III - Taller RoR LCC
felipecabargas
0
75
Taller RoR LCC
felipecabargas
0
120
Diseñando para Personas
felipecabargas
0
99
Other Decks in Programming
See All in Programming
AIコーディング道場勉強会#2 君(エンジニア)たちはどう生きるか
misakiotb
1
250
たった 1 枚の PHP ファイルで実装する MCP サーバ / MCP Server with Vanilla PHP
okashoi
1
210
ruby.wasmで多人数リアルタイム通信ゲームを作ろう
lnit
2
290
設計やレビューに悩んでいるPHPerに贈る、クリーンなオブジェクト設計の指針たち
panda_program
6
1.6k
なんとなくわかった気になるブロックテーマ入門/contents.nagoya 2025 6.28
chiilog
1
230
PHPでWebSocketサーバーを実装しよう2025
kubotak
0
220
PostgreSQLのRow Level SecurityをPHPのORMで扱う Eloquent vs Doctrine #phpcon #track2
77web
2
400
iOSアプリ開発で 関数型プログラミングを実現する The Composable Architectureの紹介
yimajo
2
220
PHP 8.4の新機能「プロパティフック」から学ぶオブジェクト指向設計とリスコフの置換原則
kentaroutakeda
2
660
ふつうの技術スタックでアート作品を作ってみる
akira888
0
180
コードの90%をAIが書く世界で何が待っているのか / What awaits us in a world where 90% of the code is written by AI
rkaga
48
31k
既存デザインを変更せずにタップ領域を広げる方法
tahia910
1
240
Featured
See All Featured
Keith and Marios Guide to Fast Websites
keithpitt
411
22k
What’s in a name? Adding method to the madness
productmarketing
PRO
23
3.5k
How to Ace a Technical Interview
jacobian
277
23k
A Modern Web Designer's Workflow
chriscoyier
694
190k
Cheating the UX When There Is Nothing More to Optimize - PixelPioneers
stephaniewalter
281
13k
Java REST API Framework Comparison - PWX 2021
mraible
31
8.7k
Raft: Consensus for Rubyists
vanstee
140
7k
Thoughts on Productivity
jonyablonski
69
4.7k
XXLCSS - How to scale CSS and keep your sanity
sugarenia
248
1.3M
The Illustrated Children's Guide to Kubernetes
chrisshort
48
50k
Code Reviewing Like a Champion
maltzj
524
40k
Writing Fast Ruby
sferik
628
62k
Transcript
DESARROLLO DE APLICACIONES WEB CON RUBY ON RAILS TALLER ROR
LCC ’17 - V1.0
SOBRE MI @juanpintoduran cabargas.com gitlab.com/cabargas •Desarrollador de Software (2009*-) •Usuario
de RoR (2010-) •Estudiante LCC (2015**-) *empece profesionalmente el 2009 - **tristemente, no empece academicamente el 2015
PARADIGMA MVC
MVC Views Controllers Models Router Browser server client request respuesta
DB
RAILS
TALLER ROR LCC ’17 - V1.0 REQUERIMIENTOS ▸ Rails >=
5.0 ▸ Ruby >= 2.2 ▸ Git ▸ Cuenta en github.com / gitlab.com ▸ Ganas (?)
NUESTRA PRIMERA APP
rails new blog
bin/rails generate rails g bin/rails server rails s bin/rails console
rails c bin/rake db:create db:migrate rails db:create db:migrate
vi Gemfile
gem ‘devise’
rails g devise:install
rails g devise Author
rails db:create rails db:migrate
rails g scaffold Post author:references title:string content:string
rails db:migrate