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
混合雲環境整合異質工作流程工具運行關鍵業務 Job 的經驗分享
yaosiang
0
110
Implementing and Evaluating a High-Level Language with WasmGC and the Wasm Component Model: Scala’s Case
tanishiking
0
150
今この時代に技術とどう向き合うべきか
gree_tech
PRO
2
2.1k
React19.2のuseEffectEventを追う
maguroalternative
2
550
Oracle Autonomous AI Database:サービス概要のご紹介
oracle4engineer
PRO
2
15k
OSSで50の競合と戦うためにやったこと
yamadashy
3
600
AIとともに歩んでいくデザイナーの役割の変化
lycorptech_jp
PRO
0
660
Claude Code Subagents 再入門 ~cc-sddの実装で学んだこと~
gotalab555
10
17k
OAuthからOIDCへ ― 認可の仕組みが認証に拡張されるまで
yamatai1212
0
140
WEBサービスを成り立たせるAWSサービス
takano0131
1
190
OCIjp_Oracle AI World_Recap
shinpy
1
120
Codexとも仲良く。CodeRabbit CLIの紹介
moongift
PRO
1
260
Featured
See All Featured
Keith and Marios Guide to Fast Websites
keithpitt
411
23k
The MySQL Ecosystem @ GitHub 2015
samlambert
251
13k
Design and Strategy: How to Deal with People Who Don’t "Get" Design
morganepeng
132
19k
Practical Tips for Bootstrapping Information Extraction Pipelines
honnibal
PRO
23
1.5k
Become a Pro
speakerdeck
PRO
29
5.6k
How To Stay Up To Date on Web Technology
chriscoyier
791
250k
No one is an island. Learnings from fostering a developers community.
thoeni
21
3.5k
Building an army of robots
kneath
306
46k
Music & Morning Musume
bryan
46
6.9k
The World Runs on Bad Software
bkeepers
PRO
72
11k
A better future with KSS
kneath
239
18k
A Modern Web Designer's Workflow
chriscoyier
697
190k
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 :)