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
Segunda sesión
Search
Ruben Espinosa
July 26, 2015
Programming
0
47
Segunda sesión
Ruben Espinosa
July 26, 2015
Tweet
Share
More Decks by Ruben Espinosa
See All by Ruben Espinosa
RealTime APPS with Rails + Socket.io + Redis
rderoldan1
0
250
Presentación
rderoldan1
0
63
Primera Sesión
rderoldan1
0
53
Docker + DockerCompose
rderoldan1
1
140
Other Decks in Programming
See All in Programming
JavaScriptツール群「UnJS」を5分で一気に駆け巡る!
k1tikurisu
9
1.8k
Kubernetes History Inspector(KHI)を触ってみた
bells17
0
240
『テスト書いた方が開発が早いじゃん』を解き明かす #phpcon_nagoya
o0h
PRO
6
2.1k
Software Architecture
hschwentner
6
2.1k
.NET Frameworkでも汎用ホストが使いたい!
tomokusaba
0
180
Formの複雑さに立ち向かう
bmthd
1
900
一休.com のログイン体験を支える技術 〜Web Components x Vue.js 活用事例と最適化について〜
atsumim
0
710
Amazon ECS とマイクロサービスから考えるシステム構成
hiyanger
2
580
Domain-Driven Transformation
hschwentner
2
1.9k
React 19アップデートのために必要なこと
uhyo
5
850
楽しく向き合う例外対応
okutsu
0
540
Rubyで始める関数型ドメインモデリング
shogo_tksk
0
130
Featured
See All Featured
Imperfection Machines: The Place of Print at Facebook
scottboms
267
13k
Save Time (by Creating Custom Rails Generators)
garrettdimon
PRO
29
1k
Rebuilding a faster, lazier Slack
samanthasiow
80
8.8k
Fireside Chat
paigeccino
34
3.2k
Design and Strategy: How to Deal with People Who Don’t "Get" Design
morganepeng
129
19k
Refactoring Trust on Your Teams (GOTO; Chicago 2020)
rmw
33
2.8k
For a Future-Friendly Web
brad_frost
176
9.5k
[RailsConf 2023] Rails as a piece of cake
palkan
53
5.3k
Site-Speed That Sticks
csswizardry
4
390
Building an army of robots
kneath
303
45k
Gamification - CAS2011
davidbonilla
80
5.1k
CoffeeScript is Beautiful & I Never Want to Write Plain JavaScript Again
sstephenson
160
15k
Transcript
Empezando con Ruby Ruben Espinosa /rderoldan1
Temario Esta presentación mostrará los siguientes temas: 1. Clases 2.
Objetos 3. Atributos 4. Control de acceso 5. Herencia 6. Módulos **TIP Se recomienda leer y aplicar las buenas practicas en la forma de programación especificadas en esta URL https://github.com/bbatsov/ruby-style-guide
Clases
Objeto != Clase
Atributos
Atributos
Atributos
Atributos
Control de acceso (encapsulamiento) Existen tres tipos: 1. Públicos (Valor
por defecto) 2. Protegidos 3. Privados
Herencia