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

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.

Awesome Lists containing this project

README

        

![](https://jaki-jezyk-programowania.pl/img/technologies/rubyonrails.png)

# 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
```