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
72
Conhecendo o módulo Forwardable do Ruby
jackson_pires
0
60
COMO INSPIRAR PESSOAS E MONETIZAR O SEU CONHECIMENTO?
jackson_pires
0
54
Conhecendo a gem guard, guard-rspec e guard-livereload
jackson_pires
0
78
GDG Meetup - Carreiras em T.I.
jackson_pires
0
70
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
78
Ruby on Rails para Iniciantes - Aula 48
jackson_pires
0
360
Other Decks in Programming
See All in Programming
Fibonacci Function Gallery - Part 1
philipschwarz
PRO
0
260
命名をリントする
chiroruxx
1
550
LLM Supervised Fine-tuningの理論と実践
datanalyticslabo
8
1.8k
CQRS+ES の力を使って効果を感じる / Feel the effects of using the power of CQRS+ES
seike460
PRO
0
230
EC2からECSへ 念願のコンテナ移行と巨大レガシーPHPアプリケーションの再構築
sumiyae
3
540
menu基盤チームによるGoogle Cloudの活用事例~Application Integration, Cloud Tasks編~
yoshifumi_ishikura
0
130
PHPUnitしか使ってこなかった 一般PHPerがPestに乗り換えた実録
mashirou1234
0
390
20241217 競争力強化とビジネス価値創出への挑戦:モノタロウのシステムモダナイズ、開発組織の進化と今後の展望
monotaro
PRO
0
210
Beyond ORM
77web
11
1.5k
Flatt Security XSS Challenge 解答・解説
flatt_security
0
520
KubeCon NA 2024の全DB関連セッションを紹介
nnaka2992
0
110
CloudflareStack でRAGに入門
asahiiwm
0
140
Featured
See All Featured
Raft: Consensus for Rubyists
vanstee
137
6.7k
Why You Should Never Use an ORM
jnunemaker
PRO
54
9.1k
Let's Do A Bunch of Simple Stuff to Make Websites Faster
chriscoyier
507
140k
Put a Button on it: Removing Barriers to Going Fast.
kastner
59
3.6k
Documentation Writing (for coders)
carmenintech
67
4.5k
Done Done
chrislema
182
16k
Save Time (by Creating Custom Rails Generators)
garrettdimon
PRO
29
940
Optimising Largest Contentful Paint
csswizardry
33
3k
jQuery: Nuts, Bolts and Bling
dougneiner
62
7.6k
Site-Speed That Sticks
csswizardry
2
220
Measuring & Analyzing Core Web Vitals
bluesmoon
5
190
The Invisible Side of Design
smashingmag
299
50k
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!