diff options
| author | Miha Filej <miha@filej.net> | 2013-02-19 10:53:05 +0100 |
|---|---|---|
| committer | Miha Filej <miha@filej.net> | 2013-02-19 11:30:38 +0100 |
| commit | a66ce980e35ea49d596cd6bc57d301978a40387c (patch) | |
| tree | 648cda0a08fa419d2eefc533d1f2a4446709e8df | |
| parent | 012213467667a5d4f56761fbc235a3359d95750a (diff) | |
| download | rails-a66ce980e35ea49d596cd6bc57d301978a40387c.tar.gz rails-a66ce980e35ea49d596cd6bc57d301978a40387c.tar.bz2 rails-a66ce980e35ea49d596cd6bc57d301978a40387c.zip | |
Require AS deps in ActionDispatch::Http::URL
Allows us to use url_for and friends in isolation.
| -rw-r--r-- | actionpack/lib/action_dispatch/http/url.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/actionpack/lib/action_dispatch/http/url.rb b/actionpack/lib/action_dispatch/http/url.rb index e9ef9ee9f2..97ac462411 100644 --- a/actionpack/lib/action_dispatch/http/url.rb +++ b/actionpack/lib/action_dispatch/http/url.rb @@ -1,3 +1,6 @@ +require 'active_support/core_ext/module/attribute_accessors' +require 'active_support/core_ext/hash/slice' + module ActionDispatch module Http module URL |
