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

https://github.com/sarincr/introduction-to-ruby-programming-language

Basic examples on Ruby Programming
https://github.com/sarincr/introduction-to-ruby-programming-language

ruby ruby-gem ruby-on-rails rubygem

Last synced: 2 months ago
JSON representation

Basic examples on Ruby Programming

Awesome Lists containing this project

README

          

Ruby is an interpreted, high-level, general-purpose programming language. It was designed and developed in the mid-1990s by Yukihiro "Matz" Matsumoto in Japan. Ruby is dynamically typed and uses garbage collection.

** Install **
** apt (Debian or Ubuntu)**
Debian GNU/Linux and Ubuntu use the apt package manager. You can use it like this:
``` sudo apt-get install ruby-full ```
** snap (Ubuntu or other Linux distributions)**
Snap is a package manager developed by Canonical. It is available out-of-the-box on Ubuntu, but snap also works on many other Linux distributions. You can use it like this:

``` sudo snap install ruby --classic ```

You may already have Ruby installed on your computer. You can check inside a terminal emulator by typing:
```ruby -v ```

![Ruby](Ruby-logo-R.svg)