aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/helpers
diff options
context:
space:
mode:
authorwycats <wycats@gmail.com>2011-05-23 16:43:58 -0700
committerwycats <wycats@gmail.com>2011-05-23 16:45:26 -0700
commita9f22dc272ad5b7fe23b4648b825fd454ad230a3 (patch)
tree0c122b3e323769ecfb3c1223b3d876e389712ad4 /actionpack/lib/action_view/helpers
parent76f947edf755f57ec721b412c6cef9a9c2c8f4b5 (diff)
downloadrails-a9f22dc272ad5b7fe23b4648b825fd454ad230a3.tar.gz
rails-a9f22dc272ad5b7fe23b4648b825fd454ad230a3.tar.bz2
rails-a9f22dc272ad5b7fe23b4648b825fd454ad230a3.zip
Move the last pockets of Sprockets stuff into the Sprockets directory
Diffstat (limited to 'actionpack/lib/action_view/helpers')
-rw-r--r--actionpack/lib/action_view/helpers/sprockets_helper.rb14
1 files changed, 0 insertions, 14 deletions
diff --git a/actionpack/lib/action_view/helpers/sprockets_helper.rb b/actionpack/lib/action_view/helpers/sprockets_helper.rb
deleted file mode 100644
index 04558438f7..0000000000
--- a/actionpack/lib/action_view/helpers/sprockets_helper.rb
+++ /dev/null
@@ -1,14 +0,0 @@
-require 'uri'
-require 'action_view/helpers/asset_paths'
-
-module ActionView
- module Helpers
- module SprocketsHelper
- def debug_assets?
- params[:debug_assets] == '1' ||
- params[:debug_assets] == 'true'
- end
-
- end
- end
-end