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
Leandro Vitor
September 26, 2016
Technology
0
56
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
38
Curso de lógica - Arrays e Hashes
vitoleandro
0
33
Curso de lógica - Funções
vitoleandro
0
33
Curso de lógica - Introdução a desenvolvimento web
vitoleandro
0
100
Curso de lógica - Iniciando com ruby
vitoleandro
0
180
Introdução a Sistemas de controle de versão
vitoleandro
0
53
Curso de lógica - Introdução
vitoleandro
0
28
Guia do Frontend
vitoleandro
1
67
Cases de Sucesso com AngularJS
vitoleandro
2
240
Other Decks in Technology
See All in Technology
職種別ミートアップで社内から盛り上げる アウトプット文化の醸成と関係強化/ #DevRelKaigi
nishiuma
2
160
「使い方教えて」「事例教えて」じゃもう遅い! Microsoft 365 Copilot を触り倒そう!
taichinakamura
0
360
衛星画像超解像化によって実現する2D, 3D空間情報の即時生成と“AI as a Service”/ Real-time generation spatial data enabled_by satellite image super-resolution
lehupa
0
160
Where will it converge?
ibknadedeji
0
210
How to achieve interoperable digital identity across Asian countries
fujie
0
150
リセラー企業のテクサポ担当が考える、生成 AI 時代のトラブルシュート 2025
kazzpapa3
1
160
能登半島災害現場エンジニアクロストーク 【JAWS FESTA 2025 in 金沢】
ditccsugii
0
570
サイバーエージェント流クラウドコスト削減施策「みんなで金塊堀太郎」
kurochan
0
290
プロポーザルのコツ ~ Kaigi on Rails 2025 初参加で3名の登壇を実現 ~
naro143
1
220
LLM時代にデータエンジニアの役割はどう変わるか?
ikkimiyazaki
6
1.3k
JAZUG 15周年記念 × JAT「AI Agent開発者必見:"今"のOracle技術で拡張するAzure × OCIの共存アーキテクチャ」
shisyu_gaku
1
160
Escaping_the_Kraken_-_October_2025.pdf
mdalmijn
0
170
Featured
See All Featured
BBQ
matthewcrist
89
9.8k
Fashionably flexible responsive web design (full day workshop)
malarkey
407
66k
Sharpening the Axe: The Primacy of Toolmaking
bcantrill
45
2.5k
Context Engineering - Making Every Token Count
addyosmani
6
240
XXLCSS - How to scale CSS and keep your sanity
sugarenia
248
1.3M
How GitHub (no longer) Works
holman
315
140k
Building Better People: How to give real-time feedback that sticks.
wjessup
369
20k
Being A Developer After 40
akosma
91
590k
Writing Fast Ruby
sferik
629
62k
Building Applications with DynamoDB
mza
96
6.7k
Optimising Largest Contentful Paint
csswizardry
37
3.4k
Embracing the Ebb and Flow
colly
88
4.8k
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