mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Fixed missing require
Missing require caused fail of guide generation (in action_dispatch/http/mime_type, line 295, undefined method `ends_with` for "to_ary":String) With this fix guides were normally generated
This commit is contained in:
parent
c242f6bb3b
commit
6701bb08c9
1 changed files with 1 additions and 0 deletions
|
@ -1,5 +1,6 @@
|
|||
require 'set'
|
||||
require 'active_support/core_ext/class/attribute_accessors'
|
||||
require 'active_support/core_ext/string/starts_ends_with'
|
||||
|
||||
module Mime
|
||||
class Mimes < Array
|
||||
|
|
Loading…
Reference in a new issue