You need require methods that you need from ActiveSupport; they are not added by default.
As Eugene mentions in a comment, the way to do this is require "active_support/all" if you need everything, or if you want only Hash extensions to use require 'active_support/core_ext/hash' . Note that this usually does not happen in gemspec, but rather in any file that your stone uses to configure.
It might even be better to require required active support files in the actual files that need them, but this is a matter of taste.
source share