开发者

How to use Rails 3's ActiveSupport core extensions outside Rails [duplicate]

This question already has answers here: How to use Active Support core extensions (5 answers) Closed 2 years ago.

I'm having a problem using ActiveSupport's core extens开发者_运维问答ions on a gem I am developing.

I had it working with AS 2.3.8, but as soon as I wanted to port it to 3b4, the extensions stopped working and my test results are filled with lines such as:

undefined method `blank?' for "something":String

I've included it via

gem "activesupport"

followed by

require "active_support"

Is there anything else I need to call to include those extensions?


ActiveSupport is more separate now in Rails 3.

If you want the all active_support thing, you can require 'active_support/all' now.

But if you want only the blank? method, you can try

require 'active_support/core_ext/string'
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜