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 para Iniciantes - Aula 49
Search
Jackson Pires
March 16, 2016
Programming
0
160
Ruby on Rails para Iniciantes - Aula 49
Ruby on Rails para Iniciantes - Aula 49
Rails Admin Interfaces
Jackson Pires
March 16, 2016
Tweet
Share
More Decks by Jackson Pires
See All by Jackson Pires
Como usar uma box Vagrant com a Cloud9 IDE para desenvolver com Elixir ou Phoenix?
jackson_pires
0
80
Conhecendo o módulo Forwardable do Ruby
jackson_pires
0
66
COMO INSPIRAR PESSOAS E MONETIZAR O SEU CONHECIMENTO?
jackson_pires
0
57
Conhecendo a gem guard, guard-rspec e guard-livereload
jackson_pires
0
80
GDG Meetup - Carreiras em T.I.
jackson_pires
0
84
20 minutos insanos de TDD e Ruby
jackson_pires
0
110
Ruby on Rails para Iniciantes - Aula 46
jackson_pires
0
170
Ruby on Rails para Iniciantes - Aula 47
jackson_pires
0
80
Ruby on Rails para Iniciantes - Aula 48
jackson_pires
0
370
Other Decks in Programming
See All in Programming
Blazing Fast UI Development with Compose Hot Reload (droidcon London 2025)
zsmb
0
420
Go言語はstack overflowの夢を見るか?
logica0419
0
660
SODA - FACT BOOK(JP)
sodainc
1
9k
NIKKEI Tech Talk#38
cipepser
0
330
AIと人間の共創開発!OSSで試行錯誤した開発スタイル
mae616
2
830
バッチ処理を「状態の記録」から「事実の記録」へ
panda728
PRO
0
210
実践Claude Code:20の失敗から学ぶAIペアプログラミング
takedatakashi
18
9.2k
なんでRustの環境構築してないのにRust製のツールが動くの? / Why Do Rust-Based Tools Run Without a Rust Environment?
ssssota
14
47k
Leading Effective Engineering Teams in the AI Era
addyosmani
7
680
業務でAIを使いたい話
hnw
0
200
Software Architecture
hschwentner
6
2.4k
コードとあなたと私の距離 / The Distance Between Code, You, and I
hiro_y
0
210
Featured
See All Featured
The Illustrated Children's Guide to Kubernetes
chrisshort
51
51k
Navigating Team Friction
lara
190
15k
A designer walks into a library…
pauljervisheath
209
24k
Rails Girls Zürich Keynote
gr2m
95
14k
Dealing with People You Can't Stand - Big Design 2015
cassininazir
367
27k
Optimizing for Happiness
mojombo
379
70k
Keith and Marios Guide to Fast Websites
keithpitt
411
23k
Thoughts on Productivity
jonyablonski
71
4.9k
GraphQLとの向き合い方2022年版
quramy
49
14k
Helping Users Find Their Own Way: Creating Modern Search Experiences
danielanewman
31
2.9k
Into the Great Unknown - MozCon
thekraken
40
2.1k
Code Review Best Practice
trishagee
72
19k
Transcript
Ruby on Rails Para iniciantes - 4a Temporada ;-)
http://videosdeti.com.br Subscribe!
Aula 49 Rails Admin Interfaces
Ruby on Rails Ruby-Toolbox https://www.ruby-toolbox.com/categories/rails_admin_interfaces
Ruby on Rails ActiveScaffold https://github.com/activescaffold/active_scaffold
Ruby on Rails Gemfile gem 'active_scaffold'
Ruby on Rails bundle install rake db:create rails g active_scaffold
User name:string rake db:migrate
Ruby on Rails Application.js //= require active_scaffold
Ruby on Rails Application.css *= require active_scaffold
Ruby on Rails Active Admin http://activeadmin.info/
Ruby on Rails Gemfile gem 'activeadmin', '~> 1.0.0.pre2' gem 'devise'
bundle install
Ruby on Rails rails g active_admin:install
Ruby on Rails rake db:migrate rake db:seed rails server
Ruby on Rails • User:
[email protected]
• Password: password
Ruby on Rails Registre o Model rails generate active_admin:resource MyModel
Ruby on Rails app/admin/customer.rb ActiveAdmin.register Customer do permit_params :name, :address
end
Ruby on Rails Obrigado!