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
130
Diseñando para Personas
felipecabargas
0
99
Other Decks in Programming
See All in Programming
Gemini CLI のはじめ方
ttnyt8701
1
100
リッチエディターを安全に開発・運用するために
unachang113
1
250
Reactの歴史を振り返る
tutinoko
1
140
中級グラフィックス入門~効率的なメッシュレット描画~
projectasura
3
1.6k
テストから始めるAgentic Coding 〜Claude Codeと共に行うTDD〜 / Agentic Coding starts with testing
rkaga
17
6.1k
The Evolution of Enterprise Java with Jakarta EE 11 and Beyond
ivargrimstad
0
510
バイブスあるコーディングで ~PHP~ 便利ツールをつくるプラクティス
uzulla
1
280
MCPを使ってイベントソーシングのAIコーディングを効率化する / Streamlining Event Sourcing AI Coding with MCP
tomohisa
0
190
AIともっと楽するE2Eテスト
myohei
9
3.1k
Git Sync を超える!OSS で実現する CDK Pull 型デプロイ / Deploying CDK with PipeCD in Pull-style
tkikuc
4
470
LLMは麻雀を知らなすぎるから俺が教育してやる
po3rin
2
660
NEWT Backend Evolution
xpromx
1
150
Featured
See All Featured
Templates, Plugins, & Blocks: Oh My! Creating the theme that thinks of everything
marktimemedia
31
2.4k
JavaScript: Past, Present, and Future - NDC Porto 2020
reverentgeek
50
5.5k
The Cost Of JavaScript in 2023
addyosmani
51
8.6k
実際に使うSQLの書き方 徹底解説 / pgcon21j-tutorial
soudai
PRO
181
54k
Evolution of real-time – Irina Nazarova, EuRuKo, 2024
irinanazarova
8
850
Distributed Sagas: A Protocol for Coordinating Microservices
caitiem20
331
22k
Designing for humans not robots
tammielis
253
25k
Fashionably flexible responsive web design (full day workshop)
malarkey
407
66k
How to Think Like a Performance Engineer
csswizardry
25
1.8k
Bash Introduction
62gerente
613
210k
CoffeeScript is Beautiful & I Never Want to Write Plain JavaScript Again
sstephenson
161
15k
Performance Is Good for Brains [We Love Speed 2024]
tammyeverts
10
990
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