https://github.com/alexius-huang/ruby-memo
My Ruby Programming Language Learning Memo
https://github.com/alexius-huang/ruby-memo
Last synced: 3 months ago
JSON representation
My Ruby Programming Language Learning Memo
- Host: GitHub
- URL: https://github.com/alexius-huang/ruby-memo
- Owner: Alexius-Huang
- Created: 2017-05-22T06:56:42.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-05-22T11:06:06.000Z (about 8 years ago)
- Last Synced: 2025-01-28T14:39:38.492Z (4 months ago)
- Size: 4.88 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Ruby Memo by Maxwell Alexius
## Main Topics
My Ruby programming language learning notes. This README page includes the topics I planned to record:
- About Ruby Lang
- Creator of Ruby: Matz
- Core Concept of Ruby- Learn Ruby Programming (using Ruby version 2.4.1)
- [**Ruby and RVM Installation**](https://github.com/Maxwell-Alexius/Ruby-Memo/blob/master/Learn%20Ruby%20Programming/Ruby_and_RVM_Installation.md)
- Overview with Interactive Ruby
- Common Data Type
- [**Numbers and Mathematics**](https://github.com/Maxwell-Alexius/Ruby-Memo/blob/master/Learn%20Ruby%20Programming/Numbers_and_Mathematics.md)
- [**String and Symbol**](https://github.com/Maxwell-Alexius/Ruby-Memo/blob/master/Learn%20Ruby%20Programming/String_and_Symbol.md)
- [**Boolean**](https://github.com/Maxwell-Alexius/Ruby-Memo/blob/master/Learn%20Ruby%20Programming/Boolean.md)
- Array
- Hash
- Range (* Splat Operator)
- Time / Date / DateTime
- Nil (Nilclass)
- Programming in Ruby
- Conditional Statement
- `if...elsif...else...`
- `unless`
- `case...when...then...`
- Looping Statement
- `for...in...`
- `while...`
- `until...`
- `each` Method Series
- Useful Integer Methods
- Useful Array Methods
- Looping Date
- Methods and Blocks
- Object Oriented Programming
- Class and Object
- Class Method & self
- public, private & protected- Ruby on Rails 5
- Install Rails
- Rails Scaffolding
- MVC Overview
- TDD using Rspec
- More on Planning ...- Ruby Metaprogramming
- Everything in Ruby (most of them) Are Objects
- Ruby Object Model
- More on Planning ...