aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel
diff options
context:
space:
mode:
authorSantiago Pastorino <santiago@wyeworks.com>2010-07-11 00:46:34 -0300
committerSantiago Pastorino <santiago@wyeworks.com>2010-07-11 02:55:47 -0300
commit060ca6abce737b1c2ad53f2427ccaee7142d7cf9 (patch)
treefdaa9679c2a3568ba1a8c9b048bbbe32a99ed5fb /activemodel
parent16c14f7465530df51e938d00f26141dd0ecf46bc (diff)
downloadrails-060ca6abce737b1c2ad53f2427ccaee7142d7cf9.tar.gz
rails-060ca6abce737b1c2ad53f2427ccaee7142d7cf9.tar.bz2
rails-060ca6abce737b1c2ad53f2427ccaee7142d7cf9.zip
Add missing require to use Set
Diffstat (limited to 'activemodel')
-rw-r--r--activemodel/lib/active_model/mass_assignment_security/permission_set.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/activemodel/lib/active_model/mass_assignment_security/permission_set.rb b/activemodel/lib/active_model/mass_assignment_security/permission_set.rb
index 7c48472799..9fcb94d48a 100644
--- a/activemodel/lib/active_model/mass_assignment_security/permission_set.rb
+++ b/activemodel/lib/active_model/mass_assignment_security/permission_set.rb
@@ -1,3 +1,4 @@
+require 'set'
require 'active_model/mass_assignment_security/sanitizer'
module ActiveModel
@@ -36,4 +37,4 @@ module ActiveModel
end
end
end
-end \ No newline at end of file
+end