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 + MongoDB - FATEC Sorocaba
Search
lucas renan
October 10, 2012
Technology
0
150
Ruby on Rails + MongoDB - FATEC Sorocaba
Ruby on Rails + MongoDB - FATEC Sorocaba
lucas renan
October 10, 2012
Tweet
Share
More Decks by lucas renan
See All by lucas renan
building an international career
lucasrenan
2
110
Real Time with Rails 5
lucasrenan
0
150
A Modern Approach of Software Development - RubyConfBR 2015
lucasrenan
2
220
Be Happy With Ruby on Rails - Ecosystem
lucasrenan
1
130
Be happy with Ruby on Rails - CEUNSP Itu
lucasrenan
1
60
Seja Feliz com Ruby!
lucasrenan
0
140
hey agilista, esqueceu das pessoas?
lucasrenan
0
94
Open Source e Ruby on Rails - FLISOL 2013
lucasrenan
0
80
Ruby on Rails - CEUNSP
lucasrenan
1
70
Other Decks in Technology
See All in Technology
E2Eテスト設計_自動化のリアル___Playwrightでの実践とMCPの試み__AIによるテスト観点作成_.pdf
findy_eventslides
1
580
Reflections of AI: A Trilogy in Four Parts (GOTO; Copenhagen 2025)
ondfisk
0
110
社内報はAIにやらせよう / Let AI handle the company newsletter
saka2jp
8
1.3k
ガバメントクラウド(AWS)へのデータ移行戦略の立て方【虎の巻】 / 20251011 Mitsutosi Matsuo
shift_evolve
PRO
2
180
Adminaで実現するISMS/SOC2運用の効率化 〜 アカウント管理編 〜
shonansurvivors
4
430
ACA でMAGI システムを社内で展開しようとした話
mappie_kochi
1
310
Developer Advocate / Community Managerなるには?
tsho
0
110
10年の共創が示す、これからの開発者と企業の関係 ~ Crossroad
soracom
PRO
1
690
【Kaigi on Rails 事後勉強会LT】MeはどうしてGirlsに? 私とRubyを繋いだRail(s)
joyfrommasara
0
220
小学4年生夏休みの自由研究「ぼくと Copilot エージェント」
taichinakamura
0
590
衛星画像超解像化によって実現する2D, 3D空間情報の即時生成と“AI as a Service”/ Real-time generation spatial data enabled_by satellite image super-resolution
lehupa
0
130
M5製品で作るポン置きセルラー対応カメラ
sayacom
0
170
Featured
See All Featured
Building Applications with DynamoDB
mza
96
6.7k
Scaling GitHub
holman
463
140k
Being A Developer After 40
akosma
91
590k
Cheating the UX When There Is Nothing More to Optimize - PixelPioneers
stephaniewalter
285
14k
Fantastic passwords and where to find them - at NoRuKo
philnash
52
3.4k
実際に使うSQLの書き方 徹底解説 / pgcon21j-tutorial
soudai
PRO
189
55k
個人開発の失敗を避けるイケてる考え方 / tips for indie hackers
panda_program
114
20k
Designing Experiences People Love
moore
142
24k
Improving Core Web Vitals using Speculation Rules API
sergeychernyshev
19
1.2k
Statistics for Hackers
jakevdp
799
220k
Building Better People: How to give real-time feedback that sticks.
wjessup
368
20k
Connecting the Dots Between Site Speed, User Experience & Your Business [WebExpo 2025]
tammyeverts
9
590
Transcript
ruby on rails mongodb
@lucasrenan
http://nudesign.com.br
traidor do movimento
None
matz
instalação
None
None
dhh
Model View Controller
$ gem install rails
None
~ 45 mil bibliotecas
None
None
framework modular
# application.rb # Pick the frameworks you want: # require
"active_record/railtie" require "action_controller/railtie" require "action_mailer/railtie" require "active_resource/railtie" require "sprockets/railtie" # require "rails/test_unit/railtie"
persistência poliglota
None
None
estrutura flexível
None
class Artist include Mongoid::Document field :name, type: String embeds_many :instruments
end class Instrument include Mongoid::Document field :name, type: String embedded_in :artist end
toby = Artist.new(name: "Toby Morse") toby.save!
marky = Artist.where(name: "Marky Ramone").first marky.instruments.create(name: "Drums")
live coding
None
None
None
None
None
obrigado :)