diff options
author | schneems <richard.schneeman@gmail.com> | 2016-08-22 12:50:15 -0500 |
---|---|---|
committer | schneems <richard.schneeman@gmail.com> | 2016-08-29 13:16:07 -0500 |
commit | 85f142019ff172ff8518535ceb878bfe205aef14 (patch) | |
tree | 95c3c00502b25e6db3868defab6a1142ec427644 /actionview | |
parent | b47970294e53ed9142ed16a560a8f68b1ae1b5d0 (diff) | |
download | rails-85f142019ff172ff8518535ceb878bfe205aef14.tar.gz rails-85f142019ff172ff8518535ceb878bfe205aef14.tar.bz2 rails-85f142019ff172ff8518535ceb878bfe205aef14.zip |
Missed 2 public_* methods in cleanup
Diffstat (limited to 'actionview')
-rw-r--r-- | actionview/lib/action_view/helpers/asset_tag_helper.rb | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/actionview/lib/action_view/helpers/asset_tag_helper.rb b/actionview/lib/action_view/helpers/asset_tag_helper.rb index 4ff2b8c872..92bf132fbc 100644 --- a/actionview/lib/action_view/helpers/asset_tag_helper.rb +++ b/actionview/lib/action_view/helpers/asset_tag_helper.rb @@ -65,14 +65,6 @@ module ActionView }.join("\n").html_safe end - # Computes the path to a series of javascript assets in the public - # folder. This uses +javascript_include_tag+ and skips any asset - # lookups by assuming any assets are in the `public` folder. - def public_javascript_include_tag(*sources) - options = sources.extract_options! - javascript_include_tag(*sources, { public_folder: true }.merge!(options)) - end - # Returns a stylesheet link tag for the sources specified as arguments. If # you don't specify an extension, <tt>.css</tt> will be appended automatically. # You can modify the link attributes by passing a hash as the last argument. @@ -111,14 +103,6 @@ module ActionView }.join("\n").html_safe end - # Computes the path to a series of stylesheet assets in the public - # folder. This uses +stylesheet_link_tag+ and skips any asset - # lookups by assuming any assets are in the `public` folder. - def public_stylesheet_link_tag(*sources) - options = sources.extract_options! - stylesheet_link_tag(*sources, { public_folder: true }.merge!(options)) - end - # Returns a link tag that browsers and feed readers can use to auto-detect # an RSS or Atom feed. The +type+ can either be <tt>:rss</tt> (default) or # <tt>:atom</tt>. Control the link options in url_for format using the |