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
Sponsored
·
Ship Features Fearlessly
Turn features on and off without deploys. Used by thousands of Ruby developers.
→
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
83
Conhecendo o módulo Forwardable do Ruby
jackson_pires
0
69
COMO INSPIRAR PESSOAS E MONETIZAR O SEU CONHECIMENTO?
jackson_pires
0
58
Conhecendo a gem guard, guard-rspec e guard-livereload
jackson_pires
0
84
GDG Meetup - Carreiras em T.I.
jackson_pires
0
90
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
82
Ruby on Rails para Iniciantes - Aula 48
jackson_pires
0
370
Other Decks in Programming
See All in Programming
Coding at the Speed of Thought: The New Era of Symfony Docker
dunglas
0
2.9k
仕様漏れ実装漏れをなくすトレーサビリティAI基盤のご紹介
orgachem
PRO
7
3.4k
PHP でエミュレータを自作して Ubuntu を動かそう
m3m0r7
PRO
2
150
「効かない!」依存性注入(DI)を活用したAPI Platformのエラーハンドリング奮闘記
mkmk884
0
270
RailsのValidatesをSwift Macrosで再現してみた
hokuron
0
140
野球解説AI Agentを開発してみた - 2026/02/27 LayerX社内LT会資料
shinyorke
PRO
0
370
Windows on Ryzen and I
seosoft
0
430
Claude Code Skill入門
mayahoney
0
440
ファインチューニングせずメインコンペを解く方法
pokutuna
0
210
生成 AI 時代のスナップショットテストってやつを見せてあげますよ(α版)
ojun9
0
310
今年もTECHSCOREブログを書き続けます!
hiraoku101
0
190
おれのAgentic Coding 2026/03
tsukasagr
1
120
Featured
See All Featured
Getting science done with accelerated Python computing platforms
jacobtomlinson
2
150
A Modern Web Designer's Workflow
chriscoyier
698
190k
The SEO Collaboration Effect
kristinabergwall1
0
410
Avoiding the “Bad Training, Faster” Trap in the Age of AI
tmiket
0
110
Leveraging Curiosity to Care for An Aging Population
cassininazir
1
200
Practical Orchestrator
shlominoach
191
11k
Understanding Cognitive Biases in Performance Measurement
bluesmoon
32
2.8k
From Legacy to Launchpad: Building Startup-Ready Communities
dugsong
0
190
The Myth of the Modular Monolith - Day 2 Keynote - Rails World 2024
eileencodes
26
3.4k
How to build a perfect <img>
jonoalderson
1
5.3k
How to Build an AI Search Optimization Roadmap - Criteria and Steps to Take #SEOIRL
aleyda
1
2k
Optimizing for Happiness
mojombo
378
71k
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!