aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel
diff options
context:
space:
mode:
authorSantiago Pastorino <santiago@wyeworks.com>2010-12-19 19:15:26 -0200
committerSantiago Pastorino <santiago@wyeworks.com>2010-12-19 19:15:26 -0200
commitab2bde45f8140a3ebf8b478e688ef612fc4181fc (patch)
tree61c0b88273eb9285358ba83555775de693539f0f /activemodel
parent5fb42ac478923c78ebc3e457acea4dc6726e3796 (diff)
downloadrails-ab2bde45f8140a3ebf8b478e688ef612fc4181fc.tar.gz
rails-ab2bde45f8140a3ebf8b478e688ef612fc4181fc.tar.bz2
rails-ab2bde45f8140a3ebf8b478e688ef612fc4181fc.zip
Remove require AS::Concern from places where is already in
Diffstat (limited to 'activemodel')
-rw-r--r--activemodel/lib/active_model/dirty.rb1
-rw-r--r--activemodel/lib/active_model/secure_password.rb1
2 files changed, 0 insertions, 2 deletions
diff --git a/activemodel/lib/active_model/dirty.rb b/activemodel/lib/active_model/dirty.rb
index 1dfd0b6132..a479795d51 100644
--- a/activemodel/lib/active_model/dirty.rb
+++ b/activemodel/lib/active_model/dirty.rb
@@ -1,5 +1,4 @@
require 'active_model/attribute_methods'
-require 'active_support/concern'
require 'active_support/hash_with_indifferent_access'
require 'active_support/core_ext/object/duplicable'
diff --git a/activemodel/lib/active_model/secure_password.rb b/activemodel/lib/active_model/secure_password.rb
index f4411cde80..52941942b8 100644
--- a/activemodel/lib/active_model/secure_password.rb
+++ b/activemodel/lib/active_model/secure_password.rb
@@ -1,4 +1,3 @@
-require 'active_support/concern'
require 'bcrypt'
module ActiveModel