aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/helpers/active_model_helper.rb
diff options
context:
space:
mode:
authorVasiliy Ermolovich <younash@gmail.com>2011-12-20 20:25:56 +0300
committerVasiliy Ermolovich <younash@gmail.com>2011-12-20 20:25:56 +0300
commit92088131ac15734f2227e9d85ea751e3f89b0116 (patch)
treed527df27f69e11177cca85ae5c182862089cd87a /actionpack/lib/action_view/helpers/active_model_helper.rb
parent024d3b9fcc684367b1a329c8b89c227b6470520e (diff)
downloadrails-92088131ac15734f2227e9d85ea751e3f89b0116.tar.gz
rails-92088131ac15734f2227e9d85ea751e3f89b0116.tar.bz2
rails-92088131ac15734f2227e9d85ea751e3f89b0116.zip
fix adding field_with_errors to date selects, closes #3487
Diffstat (limited to 'actionpack/lib/action_view/helpers/active_model_helper.rb')
-rw-r--r--actionpack/lib/action_view/helpers/active_model_helper.rb5
1 files changed, 0 insertions, 5 deletions
diff --git a/actionpack/lib/action_view/helpers/active_model_helper.rb b/actionpack/lib/action_view/helpers/active_model_helper.rb
index 96c3eec337..56f15604a6 100644
--- a/actionpack/lib/action_view/helpers/active_model_helper.rb
+++ b/actionpack/lib/action_view/helpers/active_model_helper.rb
@@ -1,4 +1,3 @@
-require 'action_view/helpers/form_helper'
require 'active_support/core_ext/class/attribute_accessors'
require 'active_support/core_ext/enumerable'
require 'active_support/core_ext/object/blank'
@@ -47,9 +46,5 @@ module ActionView
options['type'] != 'hidden'
end
end
-
- class InstanceTag
- include ActiveModelInstanceTag
- end
end
end