diff options
author | Edouard CHIN <edouard.chin@shopify.com> | 2016-07-02 01:51:41 -0400 |
---|---|---|
committer | Edouard CHIN <edouard.chin@shopify.com> | 2016-07-02 01:55:29 -0400 |
commit | 412b785ec43960058abed342d3d872a5a2f80e7c (patch) | |
tree | e7f86886250cddc2359c03e88335b8125f157efd /actionview/lib | |
parent | 8fb699571486ad752741672e6fec1132026d3dfb (diff) | |
download | rails-412b785ec43960058abed342d3d872a5a2f80e7c.tar.gz rails-412b785ec43960058abed342d3d872a5a2f80e7c.tar.bz2 rails-412b785ec43960058abed342d3d872a5a2f80e7c.zip |
`partial` option on the digest method is no more needed [ci skip]:
- `partial` option is not used anymore, this was removed in https://github.com/rails/rails/pull/23724
Diffstat (limited to 'actionview/lib')
-rw-r--r-- | actionview/lib/action_view/digestor.rb | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/actionview/lib/action_view/digestor.rb b/actionview/lib/action_view/digestor.rb index f3c29d663c..9c18ec56ca 100644 --- a/actionview/lib/action_view/digestor.rb +++ b/actionview/lib/action_view/digestor.rb @@ -12,7 +12,6 @@ module ActionView # * <tt>name</tt> - Template name # * <tt>finder</tt> - An instance of <tt>ActionView::LookupContext</tt> # * <tt>dependencies</tt> - An array of dependent views - # * <tt>partial</tt> - Specifies whether the template is a partial def digest(name:, finder:, dependencies: []) dependencies ||= [] cache_key = [ name, finder.rendered_format, dependencies ].flatten.compact.join('.') |