Skip to content

Latest commit

 

History

History

rubyonrails

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Notejam: Ruby on Rails

Notejam application implemented using Ruby on Rails framework.

Ruby on Rails version: 4.2.5

Installation and launching

Clone

Clone the repo:

$ git clone git@github.com:komarserjio/notejam.git YOUR_PROJECT_DIR/

Install

Use RVM or rbenv for environment management.

Install dependencies:

$ cd YOUR_PROJECT_DIR/rubyonrails/notejam/
$ bundle install

Create database schema:

$ cd YOUR_PROJECT_DIR/rubyonrails/notejam/
$ rake db:migrate

Launch

Start built-in web server:

$ cd YOUR_PROJECT_DIR/rubyonrails/notejam/
$ rails server

Go to http://127.0.0.1:3000/ in your browser.

Run tests

Start functional and unit tests:

$ cd YOUR_PROJECT_DIR/rubyonrails/notejam/
$ rake test

Contribution

Do you have ruby/rails experience? Help the app to follow ruby and rails best practices.

Please send your pull requests in the master branch. Always prepend your commits with framework name:

Rubyonrails: Implemented sign in functionality

Read contribution guide for details.