ruby-on-rails – 什么rails插件好,稳定,*真正*增强你的代码?

任何人都有一个稳定的rails插件列表,并提供足够的功能,值得额外的支持工作?

编辑:

我最感兴趣的是最好,最完整的插件列表,所以我可以在下一次使用它时开始使用rails应用程序.我目前不需要特定的插件.

解决方法

您可以使用 bort作为参考

Plugins Installed

Bort comes with a few commonly used
plugins installed and already setup.

RESTful Authentication

RESTful Authentication is already
setup. The routes are setup,along
with the mailers and observers.
Forgotten password comes setup,so you
don’t have to mess around setting it
up with every project.

The AASM plugin comes pre-installed.
RESTful Authentication is also setup
to use user activation.

User Roles

Bort now comes with Role Requirement
by Tim Harper. A default admin role is
predefined along with a default admin
user. See the migrations for the admin
login details.

Open ID Authentication

Bort,as of 0.3,has Open ID
integrated with RESTful
Authentication. Rejoice!

Will Paginate

We use will_paginate in pretty much
every project we use,so Bort comes
with it pre-installed.

Rspec & Rspec-rails

You should be testing your code,so
Bort comes with Rspec and Rspec-rails
already installed so you’re ready to
roll.

Exception Notifier

You don’t want your applications to
crash and burn so Exception Notifier
is already installed to let you know
when everything goes to shit.

Asset Packager

Packages up your css/javascript so
you’re not sending 143 files down to
the user at the same time. Reduces
load times and saves you bandwidth.

p / s:同意@eric,具体细节

相关文章

以下代码导致我的问题: class Foo def initialize(n=0) @n = n end attr_accessor :n d...
这是我的spec文件,当为上下文添加测试“而不是可单独更新用户余额”时,我得到以下错误. require 's...
我有一个拦截器:DevelopmentMailInterceptor和一个启动拦截器的inititializer setup_mail.rb. 但我想将...
例如,如果我有YAML文件 en: questions: new: 'New Question' other: recent: ...
我听说在RSpec中避免它,let,let !,指定,之前和主题是最佳做法. 关于让,让!之前,如果不使用这些,我该如...
我在Rails中使用MongoDB和mongo_mapper gem,项目足够大.有什么办法可以将数据从Mongoid迁移到 Postgres...