-
Notifications
You must be signed in to change notification settings - Fork 16
/
outline.txt
99 lines (75 loc) · 1.45 KB
/
outline.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
# Ruby Outline
1. Introduction
* History
* Ruby vs. Rails
* The Ruby Philosophy
* Humane Interface
* Everything's An Object
* Everything Has A Value
* Method Chaining
* Optional Punctuation
* Blocks
* The Default Block
* Reopening Classes
* Declarative vs. Algorithmic
* Ruby Overview
* The Ruby Ecosystem
* ruby implementations
* tools
* docs
* guides
* testing
* rspec
2. Fundamentals
2a. Variables and Functions
* scope, heap, and references
* variable assignment
* parallel assignment
* functions
2b. Scalar Types
* Numbers
* Strings
* Regular Expressions
* Symbols
2c. Logic
* Truthiness
* Boolean
* Conditionals
2c. Loops and Collections
* Loops (briefly)
* "each", the universal iterator
* Arrays
* Ranges
* Hashes
3. Blocks
* tiers of abstraction
* closures
* the default block
* block scope
* iterators
4. Objects
* objects
* self
* classes
5. Objects (Intermediate)
* class inheritance
* reopening classes and monkey patching
* class methods
* modules
* modules as mixins
* modules as namespaces
* include and extend
* method dispatching (simplified)
6. Objects (Advanced)
* eigenclasses
* method dispatching (actual)
* class methods
* metaprogramming
* method scope
* variable scope
7. Input/Output
* print and puts
* console output
* stdout and stderr
* console input
* File