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
140
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
140
A Modern Approach of Software Development - RubyConfBR 2015
lucasrenan
2
210
Be Happy With Ruby on Rails - Ecosystem
lucasrenan
1
130
Be happy with Ruby on Rails - CEUNSP Itu
lucasrenan
1
56
Seja Feliz com Ruby!
lucasrenan
0
130
hey agilista, esqueceu das pessoas?
lucasrenan
0
85
Open Source e Ruby on Rails - FLISOL 2013
lucasrenan
0
75
Ruby on Rails - CEUNSP
lucasrenan
1
64
Other Decks in Technology
See All in Technology
安心してください、日本語使えますよ―Ubuntu日本語Remix提供休止に寄せて― 2024-11-17
nobutomurata
1
1k
RubyのWebアプリケーションを50倍速くする方法 / How to Make a Ruby Web Application 50 Times Faster
hogelog
3
950
FlutterアプリにおけるSLI/SLOを用いたユーザー体験の可視化と計測基盤構築
ostk0069
0
110
Lambda10周年!Lambdaは何をもたらしたか
smt7174
2
120
SRE×AIOpsを始めよう!GuardDutyによるお手軽脅威検出
amixedcolor
0
200
Platform Engineering for Software Developers and Architects
syntasso
1
520
AWS Lambda のトラブルシュートをしていて思うこと
kazzpapa3
2
190
生成AIが変えるデータ分析の全体像
ishikawa_satoru
0
170
TypeScriptの次なる大進化なるか!? 条件型を返り値とする関数の型推論
uhyo
2
1.7k
OTelCol_TailSampling_and_SpanMetrics
gumamon
1
220
TanStack Routerに移行するのかい しないのかい、どっちなんだい! / Are you going to migrate to TanStack Router or not? Which one is it?
kaminashi
0
600
日経電子版のStoreKit2フルリニューアル
shimastripe
1
150
Featured
See All Featured
The MySQL Ecosystem @ GitHub 2015
samlambert
250
12k
Build your cross-platform service in a week with App Engine
jlugia
229
18k
Thoughts on Productivity
jonyablonski
67
4.3k
Why You Should Never Use an ORM
jnunemaker
PRO
54
9.1k
5 minutes of I Can Smell Your CMS
philhawksworth
202
19k
Learning to Love Humans: Emotional Interface Design
aarron
273
40k
Being A Developer After 40
akosma
87
590k
Speed Design
sergeychernyshev
25
620
Bootstrapping a Software Product
garrettdimon
PRO
305
110k
The Cost Of JavaScript in 2023
addyosmani
45
6.8k
Designing for Performance
lara
604
68k
What's in a price? How to price your products and services
michaelherold
243
12k
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 :)