I had to choose from bootstrap-sass and twitter-bootstrap-rails and I've opted for the first as per suggestions on the web.
However, I see that twitter-bootstrap-rails gem has some generators for application layout. Like,
rails g bootstrap:layout application fixed
rails g bootstrap:themed Posts
Which I find very good for kick-starting a project. But I don't find similar generators available in the bootstrap-sass gem. Running the command:
rails generate
doesn't show any generators like the previous ones.
Is there any way to have those layout using bootstrap-sass instead of using twitter-bootstrap-rails?
Thanks in advance.