validates_email 0.0.1 → 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,9 @@
1
+ == 0.0.2 2007-06-18
2
+
3
+ * 1 minor bug
4
+ * remove depreciated code practice
5
+
1
6
  == 0.0.1 2007-06-15
2
7
 
3
8
  * 1 major enhancement:
4
- * Initial release
9
+ * Initial release
@@ -7,7 +7,7 @@ module ActiveRecord
7
7
  configuration.update(attr_names.pop) if attr_names.last.is_a?(Hash)
8
8
 
9
9
 
10
- validates_each (attr_names, configuration) do |record, attr_name, value|
10
+ validates_each(attr_names, configuration) do |record, attr_name, value|
11
11
  record.errors.add(attr_name, configuration[:message]) unless EmailValidation.valid_email?(value, configuration[:level], configuration[:pass_on_unable_to_verify], configuration[:from])
12
12
  end
13
13
  end
@@ -2,7 +2,7 @@ module ValidatesEmail #:nodoc:
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
4
  MINOR = 0
5
- TINY = 1
5
+ TINY = 2
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
@@ -33,7 +33,7 @@
33
33
  <h1>validates_email</h1>
34
34
  <div id="version" class="clickable" onclick='document.location = "http://rubyforge.org/projects/validates_email"; return false'>
35
35
  <p>Get Version</p>
36
- <a href="http://rubyforge.org/projects/validates_email" class="numbers">0.0.1</a>
36
+ <a href="http://rubyforge.org/projects/validates_email" class="numbers">0.0.2</a>
37
37
  </div>
38
38
  <h1>&#x2192; &#8216;validates_email&#8217;</h1>
39
39
 
metadata CHANGED
@@ -3,7 +3,7 @@ rubygems_version: 0.9.2
3
3
  specification_version: 1
4
4
  name: validates_email
5
5
  version: !ruby/object:Gem::Version
6
- version: 0.0.1
6
+ version: 0.0.2
7
7
  date: 2007-06-18 00:00:00 -05:00
8
8
  summary: Three level validation on email addresses for ActiveRecord.
9
9
  require_paths: