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
150
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
78
Conhecendo o módulo Forwardable do Ruby
jackson_pires
0
65
COMO INSPIRAR PESSOAS E MONETIZAR O SEU CONHECIMENTO?
jackson_pires
0
54
Conhecendo a gem guard, guard-rspec e guard-livereload
jackson_pires
0
80
GDG Meetup - Carreiras em T.I.
jackson_pires
0
78
20 minutos insanos de TDD e Ruby
jackson_pires
0
110
Ruby on Rails para Iniciantes - Aula 46
jackson_pires
0
160
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
新メンバーも今日から大活躍!SREが支えるスケールし続ける組織のオンボーディング
honmarkhunt
5
8.8k
『自分のデータだけ見せたい!』を叶える──Laravel × Casbin で複雑権限をスッキリ解きほぐす 25 分
akitotsukahara
2
660
型で語るカタ
irof
0
710
Flutterで備える!Accessibility Nutrition Labels完全ガイド
yuukiw00w
0
170
「App Intent」よくわからんけどすごい!
rinngo0302
1
110
“いい感じ“な定量評価を求めて - Four Keysとアウトカムの間の探求 -
nealle
2
12k
A full stack side project webapp all in Kotlin (KotlinConf 2025)
dankim
0
150
生成AI時代のコンポーネントライブラリの作り方
touyou
1
290
코딩 에이전트 체크리스트: Claude Code ver.
nacyot
0
930
顧客の画像データをテラバイト単位で配信する 画像サーバを WebP にした際に起こった課題と その対応策 ~継続的な取り組みを添えて~
takutakahashi
4
1.3k
ニーリーにおけるプロダクトエンジニア
nealle
0
950
Hack Claude Code with Claude Code
choplin
7
2.6k
Featured
See All Featured
Side Projects
sachag
455
42k
How to Ace a Technical Interview
jacobian
278
23k
Connecting the Dots Between Site Speed, User Experience & Your Business [WebExpo 2025]
tammyeverts
8
340
Practical Orchestrator
shlominoach
189
11k
Performance Is Good for Brains [We Love Speed 2024]
tammyeverts
10
980
Music & Morning Musume
bryan
46
6.7k
Facilitating Awesome Meetings
lara
54
6.5k
The Art of Programming - Codeland 2020
erikaheidi
54
13k
The Cost Of JavaScript in 2023
addyosmani
51
8.6k
Product Roadmaps are Hard
iamctodd
PRO
54
11k
Balancing Empowerment & Direction
lara
1
460
Done Done
chrislema
184
16k
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!