https://github.com/walczyk123/rails_nauka
In this repository I've gather some useful programs, tutorials and websites, that will help me to learn Ruby on Rails programming.
https://github.com/walczyk123/rails_nauka
learning-ruby rails ruby
Last synced: 3 months ago
JSON representation
In this repository I've gather some useful programs, tutorials and websites, that will help me to learn Ruby on Rails programming.
- Host: GitHub
- URL: https://github.com/walczyk123/rails_nauka
- Owner: walczyk123
- Created: 2021-02-15T22:44:56.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-06-04T10:06:43.000Z (about 4 years ago)
- Last Synced: 2025-02-02T05:45:20.355Z (5 months ago)
- Topics: learning-ruby, rails, ruby
- Language: Ruby
- Homepage:
- Size: 21.8 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README

# Learning Ruby on Rails
In this repository I've gather some useful programs, tutorials and websites, that will help me to learn Ruby on Rails programming.
Ruby on Rails ( just “Rails”) is a free and open-source web devel-opment framework written in the Ruby programming language.[Yarn](https://yarnpkg.com/ "Yarn - package manager")
[Rubular - testing regex](https://rubular.com/ "Rubular - testing regex")
[Ruby Tutorial PDF - online](https://tiny.pl/rnz23 "Ruby Tutorial PDF - online")
# Rails and Yarn instalation
Ruby gem instalation:
``` bash
gem install rails -v6.0.2.1
```
Checking version of rails:
``` bash
rails -v
```
Instalation of NVM - Node Version Manager:
``` bash
wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.37.2/install.sh | bash
```
Nodejs instalation:
``` bash
sudo apt install nodejs
```
NPM instalation:
``` bash
sudo apt install npm
```
Cmdtest:
``` bash
sudo apt install cmdtest
```
Yarn instalation:
``` bash
sudo apt update && sudo apt install yarn
```
# Binding pry
``` ruby
before_action do
binding.pry
end
```