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
77
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
75
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
UPDATEがシステムを複雑にする? イミュータブルデータモデルのすすめ
shimomura
1
530
機械学習って何? 5分で解説頑張ってみる
kuroneko2828
0
200
ktr0731/go-mcpでMCPサーバー作ってみた
takak2166
0
160
業務自動化をJavaとSeleniumとAWS Lambdaで実現した方法
greenflagproject
1
100
C++20 射影変換
faithandbrave
0
420
「ElixirでIoT!!」のこれまでとこれから
takasehideki
0
350
GoのGenericsによるslice操作との付き合い方
syumai
2
510
ワイがおすすめする新潟の食 / 20250530phpconf-niigata-eve
kasacchiful
0
300
実践ArchUnit ~実例による検証パターンの紹介~
ogiwarat
2
250
iOSアプリ開発で 関数型プログラミングを実現する The Composable Architectureの紹介
yimajo
2
210
インターフェース設計のコツとツボ
togishima
2
710
つよそうにふるまい、つよい成果を出すのなら、つよいのかもしれない
irof
1
280
Featured
See All Featured
Practical Orchestrator
shlominoach
188
11k
CoffeeScript is Beautiful & I Never Want to Write Plain JavaScript Again
sstephenson
161
15k
Statistics for Hackers
jakevdp
799
220k
JavaScript: Past, Present, and Future - NDC Porto 2020
reverentgeek
48
5.4k
Building Flexible Design Systems
yeseniaperezcruz
328
39k
Agile that works and the tools we love
rasmusluckow
329
21k
Gamification - CAS2011
davidbonilla
81
5.3k
XXLCSS - How to scale CSS and keep your sanity
sugarenia
248
1.3M
Faster Mobile Websites
deanohume
307
31k
Chrome DevTools: State of the Union 2024 - Debugging React & Beyond
addyosmani
6
690
A designer walks into a library…
pauljervisheath
206
24k
BBQ
matthewcrist
89
9.7k
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!