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

https://github.com/richardhpa/ruby-on-rails-tutorial

Following basic ruby on rails tutorial
https://github.com/richardhpa/ruby-on-rails-tutorial

rails ruby ruby-on-rails

Last synced: over 1 year ago
JSON representation

Following basic ruby on rails tutorial

Awesome Lists containing this project

README

          

# Ruby on Rails Tutorial

This is a project created in Ruby on Rails, following a tutorial by [Traversy Media.](https://www.youtube.com/watch?v=pPy0GQJLZUM)

## Prerequisites

Make sure you have installed all of the following prerequisites on your development machine:
* Git - [Download & Install Git](https://git-scm.com/downloads). OSX and Linux machines typically have this already installed.
* Ruby - [Download & Install Ruby](https://www.ruby-lang.org/en/downloads/). If you encounter any problems, you can also use this [RVM](https://rvm.io/) to install Ruby.
* Rails - [Download & Install Rails](http://railsinstaller.org/en).
* Ruby Gem - [Download & Install Ruby Gem](https://rubygems.org/pages/download).

## Installing
#### Cloning The GitHub Repository
The recommended way to use this application is to clone it.

```bash
$ git clone https://github.com/RichardHpa/Ruby-on-Rails-Tutorial
$ cd Ruby-on-Rails-Tutorial
```

#### Installing Dependencies
Install all of the dependencies needed using Gem
```bash
$ gem install
```

## Viewing your Application
To start the app on [http://localhost:3000/](http://localhost:3000/) you need to turn call the command bellow.
```bash
$ rails s
```

## Commands to remember
```bash
$ rails g controller $name
```
## License

This project is licensed under the MIT License - see the [LICENSE.md](LICENSE.md) file for details

## Acknowledgments

* This repository follows the[Ruby On Rails In 60 Minutes](https://www.youtube.com/watch?v=pPy0GQJLZUM) tutorial by [Traversy Media](https://www.youtube.com/channel/UC29ju8bIPH5as8OGnQzwJyA)