File tree 2 files changed +10
-13
lines changed
2 files changed +10
-13
lines changed Original file line number Diff line number Diff line change @@ -11,20 +11,19 @@ install ruby dengan perintah `sudo apt-get install ruby`
11
11
## Session 1: Basic Ruby
12
12
13
13
* Ruby Overview
14
- * Console I/O
14
+ * Menjalankan Ruby
15
+ * Syntax dan Idiom
15
16
* Object-Oriented in Ruby: Classes, Attributes, Methods
16
17
* String Type and Operations
17
- * Numeric Types and Mathematical Expressions
18
- * Boolean Expressions
18
+ * Numeric
19
+ * Boolean
19
20
* Conditional Constructs
20
21
* Arrays
21
- * Loop Constructs
22
22
* Code Blocks
23
23
* Ranges
24
24
* Regular Expressions
25
25
* Symbols
26
26
* Hashes
27
- * Methods
28
27
29
28
## Session 2: OOP with Ruby
30
29
@@ -48,12 +47,10 @@ install ruby dengan perintah `sudo apt-get install ruby`
48
47
49
48
## Session 4: Testing
50
49
51
- * Unit Testing with Test::Unit
52
- * Leveraging Libraries
53
- * RubyForge and RubyGems
50
+ * Libraries
51
+ * Instalasi & Menggunakan Gems
52
+ * Bundler
54
53
* Packaging Programs and Libraries for Distribution
54
+ * Testing
55
+ * Unit Testing with Minitest
55
56
* Introduction to TDD
56
- * Red-Green-Refactor
57
- * Describing a feature
58
- * Verifying expectations
59
- * Mocks & Stubs
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ Berikut ini adalah contoh program hello world di ruby:
23
23
puts " Hello world"
24
24
```
25
25
26
- ## Menjalankan ruby
26
+ ## Menjalankan Ruby
27
27
28
28
Cara paling mudah untuk mencoba ruby adalah dengan menggunakan irb (interactive ruby).
29
29
You can’t perform that action at this time.
0 commit comments