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
- Host: GitHub
- URL: https://github.com/sarincr/introduction-to-ruby-programming-language
- Owner: sarincr
- Created: 2018-08-14T13:19:20.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2021-06-03T10:50:08.000Z (about 5 years ago)
- Last Synced: 2025-10-27T08:23:42.019Z (8 months ago)
- Topics: ruby, ruby-gem, ruby-on-rails, rubygem
- Language: Jupyter Notebook
- Homepage:
- Size: 244 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 ```
