Rails defaults to jquery and coffeeScript. What if I want to stop using any of this (total)?
The first thing I did was rails new -h , which gave me a vast amount of flags available when creating a new project.
JavaScript'a there concerns only a couple of pieces, namely rails new --javascript and rails new --skip-javascript . I assume that disabling jQuery and CoffeScript are made there, because if you just delete the use 'jquery' in the Gemfile, then it breaks the entire application.
Interested in the possible uses of these flags. What can I write in --javascript except for jQuery (and, I repeat, what to write, in order to disable the use of any library)? What will happen when using the --skip-javascript flag?
use? Maybegem? - D-side