An open API service indexing awesome lists of open source software.

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

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 ...