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
Curso de lógica - Rails
Search
Sponsored
·
Ship Features Fearlessly
Turn features on and off without deploys. Used by thousands of Ruby developers.
→
Leandro Vitor
September 26, 2016
Technology
0
62
Curso de lógica - Rails
Introdução a Rails
Leandro Vitor
September 26, 2016
Tweet
Share
More Decks by Leandro Vitor
See All by Leandro Vitor
Curso de lógica - Estruturas de seleção
vitoleandro
0
43
Curso de lógica - Arrays e Hashes
vitoleandro
0
40
Curso de lógica - Funções
vitoleandro
0
40
Curso de lógica - Introdução a desenvolvimento web
vitoleandro
0
110
Curso de lógica - Iniciando com ruby
vitoleandro
0
220
Introdução a Sistemas de controle de versão
vitoleandro
0
60
Curso de lógica - Introdução
vitoleandro
0
33
Guia do Frontend
vitoleandro
1
73
Cases de Sucesso com AngularJS
vitoleandro
2
240
Other Decks in Technology
See All in Technology
Datadog の RBAC のすべて
nulabinc
PRO
3
450
SRE NEXT 2026 CfP レビュアーが語る聞きたくなるプロポーザルとは?
yutakawasaki0911
1
250
JAWS DAYS 2026 楽しく学ぼう!ストレージ 入門
yoshiki0705
2
160
最強のAIエージェントを諦めたら品質が上がった話 / how quality improved after giving up on the strongest AI agent
kt2mikan
0
160
Exadata Database Service on Dedicated Infrastructure(ExaDB-D) UI スクリーン・キャプチャ集
oracle4engineer
PRO
8
7.2k
OCI技術資料 : コンピュート・サービス 概要
ocise
4
54k
Oracle Database@AWS:サービス概要のご紹介
oracle4engineer
PRO
3
1.7k
Abuse report だけじゃない。AWS から緊急連絡が来る状況とは?昨今の攻撃や被害の事例の紹介と備えておきたい考え方について
kazzpapa3
1
550
Evolution of Claude Code & How to use features
oikon48
1
590
AIエージェント、 社内展開の前に知っておきたいこと
oracle4engineer
PRO
2
110
猫でもわかるKiro CLI(AI 駆動開発への道編)
kentapapa
0
140
マルチプレーンGPUネットワークを実現するシャッフルアーキテクチャの整理と考察
markunet
2
240
Featured
See All Featured
AI Search: Implications for SEO and How to Move Forward - #ShenzhenSEOConference
aleyda
1
1.1k
Sam Torres - BigQuery for SEOs
techseoconnect
PRO
0
210
ピンチをチャンスに:未来をつくるプロダクトロードマップ #pmconf2020
aki_iinuma
128
55k
Utilizing Notion as your number one productivity tool
mfonobong
4
250
The Illustrated Children's Guide to Kubernetes
chrisshort
51
52k
Test your architecture with Archunit
thirion
1
2.2k
First, design no harm
axbom
PRO
2
1.1k
Stewardship and Sustainability of Urban and Community Forests
pwiseman
0
140
Jess Joyce - The Pitfalls of Following Frameworks
techseoconnect
PRO
1
100
The Illustrated Guide to Node.js - THAT Conference 2024
reverentgeek
1
300
The Organizational Zoo: Understanding Human Behavior Agility Through Metaphoric Constructive Conversations (based on the works of Arthur Shelley, Ph.D)
kimpetersen
PRO
0
270
Discover your Explorer Soul
emna__ayadi
2
1.1k
Transcript
Lógica de Programação com Ruby 08 - RAILS Leandro Vitor
• Formado em Ciência da Computação • Pós Graduando em
Engenharia de Software • Trabalho com desenvolvimento desde 2011 • Experiência em Php, Java, Python, Ruby, JavaScript • Transpetro, Petrobras, USP, SINE-AL, Beter Park … • https://github.com/vitoleandro •
[email protected]
# Sobre
• Rails • Instalando nosso framework • Rodando nossa aplicação
• Conhecendo a estrutura • Criando nossa primeira funcionalidade Flow
Instalação
$ gem install rails
Iniciar nossa Aplicação
$ cd path/to/myapp $ rails server # acessar a pasta
da aplicação # Inicia o servidor
Estrutura da Aplicação
None
A Primeira Funcionalidade
$ cd path/to/myapp $ rails gererate scaffold Aluno nome:string matricula:integer
curso: string status:boolean # acessar a pasta da aplicação # Gerando a funcionalidade
OBRIGADO. Leandro Vitor