diff options
author | Yehuda Katz + Carl Lerche <ykatz+clerche@engineyard.com> | 2009-06-15 11:31:52 -0700 |
---|---|---|
committer | Yehuda Katz + Carl Lerche <ykatz+clerche@engineyard.com> | 2009-06-15 11:31:52 -0700 |
commit | 614374b3e5b19b737175a82c6dad2f146800eef1 (patch) | |
tree | 29dc79ad4455bd66bb408be41834ee9eec7ef51e /activesupport/lib | |
parent | 64ae5b56fff7c51fd436aaf81b8f30488cce3a2d (diff) | |
download | rails-614374b3e5b19b737175a82c6dad2f146800eef1.tar.gz rails-614374b3e5b19b737175a82c6dad2f146800eef1.tar.bz2 rails-614374b3e5b19b737175a82c6dad2f146800eef1.zip |
Require missing file in AS
Diffstat (limited to 'activesupport/lib')
-rw-r--r-- | activesupport/lib/active_support/core_ext/proc.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/core_ext/proc.rb b/activesupport/lib/active_support/core_ext/proc.rb index 572fc5f92c..d50076a01e 100644 --- a/activesupport/lib/active_support/core_ext/proc.rb +++ b/activesupport/lib/active_support/core_ext/proc.rb @@ -1,3 +1,5 @@ +require "active_support/core_ext/object" + class Proc #:nodoc: def bind(object) block, time = self, Time.now |