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
93
Open Source e Ruby on Rails - FLISOL 2013
lucasrenan
0
79
Ruby on Rails - CEUNSP
lucasrenan
1
68
Other Decks in Technology
See All in Technology
LLMで構造化出力の成功率をグンと上げる方法
keisuketakiguchi
0
780
Bet "Bet AI" - Accelerating Our AI Journey #BetAIDay
layerx
PRO
4
1.7k
UDDのススメ - 拡張版 -
maguroalternative
1
470
【OptimizationNight】数理最適化のラストワンマイルとしてのUIUX
brainpadpr
1
470
JAWS AI/ML #30 AI コーディング IDE "Kiro" を触ってみよう
inariku
3
360
Kiroから考える AIコーディングツールの潮流
oikon48
4
680
相互運用可能な学修歴クレデンシャルに向けた標準技術と国際動向
fujie
0
240
[OCI Technical Deep Dive] OracleのAI戦略(2025年8月5日開催)
oracle4engineer
PRO
1
150
専門分化が進む分業下でもユーザーが本当に欲しかったものを追求するプロダクトマネジメント/Focus on real user needs despite deep specialization and division of labor
moriyuya
1
1.3k
LLMでAI-OCR、実際どうなの? / llm_ai_ocr_layerx_bet_ai_day_lt
sbrf248
0
460
마라톤 끝의 단거리 스퍼트: 2025년의 AI
inureyes
PRO
1
740
Amazon Bedrock AgentCoreのフロントエンドを探す旅 (Next.js編)
kmiya84377
1
140
Featured
See All Featured
Building Applications with DynamoDB
mza
96
6.5k
Git: the NoSQL Database
bkeepers
PRO
431
65k
For a Future-Friendly Web
brad_frost
179
9.9k
I Don’t Have Time: Getting Over the Fear to Launch Your Podcast
jcasabona
33
2.4k
How to Ace a Technical Interview
jacobian
278
23k
Distributed Sagas: A Protocol for Coordinating Microservices
caitiem20
332
22k
The Art of Programming - Codeland 2020
erikaheidi
54
13k
Large-scale JavaScript Application Architecture
addyosmani
512
110k
Unsuck your backbone
ammeep
671
58k
Art, The Web, and Tiny UX
lynnandtonic
301
21k
The Success of Rails: Ensuring Growth for the Next 100 Years
eileencodes
46
7.6k
Facilitating Awesome Meetings
lara
54
6.5k
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 :)