summaryrefslogtreecommitdiff
path: root/users/app/models/email.rb
diff options
context:
space:
mode:
Diffstat (limited to 'users/app/models/email.rb')
-rw-r--r--users/app/models/email.rb21
1 files changed, 4 insertions, 17 deletions
diff --git a/users/app/models/email.rb b/users/app/models/email.rb
index 6d82f2a..90fc645 100644
--- a/users/app/models/email.rb
+++ b/users/app/models/email.rb
@@ -1,6 +1,5 @@
-module Email
- extend ActiveSupport::Concern
-
+class Email < String
+=begin
included do
validates :email,
:format => {
@@ -8,26 +7,14 @@ module Email
:message => "needs to be a valid email address"
}
end
-
- def initialize(attributes = nil, &block)
- attributes = {:email => attributes} if attributes.is_a? String
- super(attributes, &block)
- end
-
- def to_s
- email
- end
-
- def ==(other)
- other.is_a?(Email) ? self.email == other.email : self.email == other
- end
+=end
def to_partial_path
"emails/email"
end
def to_param
- email
+ to_s
end
end