What rails plugins are good, stable and *really* enhance your code?

前端 未结 7 1681
难免孤独
难免孤独 2021-02-03 14:44

Anyone have a list of rails plugins that are both stable and give you enough functionality to be worth the extra effort of supporting?

Edit:

I am mos

7条回答
  •  说谎
    说谎 (楼主)
    2021-02-03 15:10

    For me, Haml is excellent. It's not for everyone but if it clicks with you you'll love it. Set aside 30 min and give it a shot. It reduces the clutter in my views by about 50%.

    It's easy to install using Rails 2.1+'s gem dependencies :

    # environment.rb
    config.gem 'haml'
    

    Then:

    rake gems:install
    

提交回复
热议问题