Skip to content

Commit

Permalink
Merge pull request rails#5954 from bogdan/routes
Browse files Browse the repository at this point in the history
Add missing requires in routes
  • Loading branch information
josevalim committed Apr 24, 2012
2 parents 82c3aca + ef7815b commit 242f4d1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions actionpack/lib/action_dispatch/http/mime_negotiation.rb
Original file line number Original file line Diff line number Diff line change
@@ -1,3 +1,5 @@
require 'active_support/core_ext/module/attribute_accessors'

module ActionDispatch module ActionDispatch
module Http module Http
module MimeNegotiation module MimeNegotiation
Expand Down
1 change: 1 addition & 0 deletions actionpack/lib/action_dispatch/routing/mapper.rb
Original file line number Original file line Diff line number Diff line change
@@ -1,4 +1,5 @@
require 'active_support/core_ext/hash/except' require 'active_support/core_ext/hash/except'
require 'active_support/core_ext/hash/reverse_merge'
require 'active_support/core_ext/object/blank' require 'active_support/core_ext/object/blank'
require 'active_support/core_ext/enumerable' require 'active_support/core_ext/enumerable'
require 'active_support/inflector' require 'active_support/inflector'
Expand Down

0 comments on commit 242f4d1

Please sign in to comment.