Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is rails stack?

I've run into rails stack term for many times but I still can't get what do people call rails stack furthermore what is a good knowledge of the rails stack?

like image 512
Bohdan Avatar asked Feb 23 '23 01:02

Bohdan


1 Answers

A "rails stack" refers collectively to all the software needed to run a webapp using Ruby on Rails, most importantly:

  • Operating system
  • Webserver
  • Ruby implementation
  • Rails itself
  • Database

You'll also often see more project-specific libraries mentioned (e.g. here).

This means that the expression "knowledge of the rails stack" is misleading, because different Rails projects may use quite different stacks. What is probably meant is "knowledge of Rails as well as various frameworks and libraries commonly used with Rails".

like image 136
Michael Borgwardt Avatar answered Mar 02 '23 15:03

Michael Borgwardt