Skip to content

Commit

Permalink
Add missing require.
Browse files Browse the repository at this point in the history
I was trying to use those files without Rails and that require was
missing.
  • Loading branch information
rafaelfranca committed Dec 13, 2012
1 parent c5fb487 commit 5d54fd7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
@@ -1,5 +1,6 @@
require 'active_support/concern'
require 'active_support/core_ext/hash/indifferent_access'
require 'active_support/core_ext/array/wrap'
require 'active_support/rescuable'

module ActionController
Expand Down
1 change: 1 addition & 0 deletions actionpack/lib/action_view/helpers/form_options_helper.rb
Expand Up @@ -2,6 +2,7 @@
require 'erb'
require 'action_view/helpers/form_helper'
require 'active_support/core_ext/string/output_safety'
require 'active_support/core_ext/array/wrap'

module ActionView
# = Action View Form Option Helpers
Expand Down
2 changes: 2 additions & 0 deletions actionpack/lib/action_view/helpers/tags/date_select.rb
@@ -1,3 +1,5 @@
require 'active_support/core_ext/time/calculations'

module ActionView
module Helpers
module Tags
Expand Down

0 comments on commit 5d54fd7

Please sign in to comment.