seyhunak / twitter-bootstrap-rails

Twitter Bootstrap for Rails 6.0, Rails 5 - Rails 4.x Asset Pipeline
https://github.com/seyhunak/twitter-bootstrap-rails
4.5k stars 998 forks source link

customize views by `rails g bootstrap:themed` #828

Closed gabrieltong closed 9 years ago

gabrieltong commented 9 years ago

hey there , this command is very useful , I always use it when I create new views

but I need to make changes , and the changes are always the same , can I change the scaffolds my self ?

toadkicker commented 9 years ago

Generators are meant to get you going with a basic understanding of your model. It isn't meant to be an end solution to designing things; that's where the components bootstrap and others come in. You can customize bootstrap by overriding the values in bootstrap's variables.less file with the install generator's bootstrap_overrides.less file. You can also configure rails to use a specific template for scaffolding your app as well.

gabrieltong commented 9 years ago

@toadkicker thanks man!