Ruby on Rails
Rails API – Quick note
1. Setting up Rails 5 rails new api_app_name –api -d postgresql -T cd api_app_name bundle install rails db:setup Note: –api : generate API app only -d postgresql : using postgresql database -T : to skip generating Test because we are going to use RSpec for testing. 2. Using RSpec for Read more…