emailness 0.1.0.alpha → 0.1.0.alpha.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5c214db36c29017473cd5702bf9ce3d9c392b28670e663e8c82d05c4216e3ce9
4
- data.tar.gz: 44ac81ed3b31cf8599e3fdc125849b44a8dcc9a759a3459767e6590dcabe98dc
3
+ metadata.gz: 41fd5b6b799bfc5f93a7e4cbdbcf2c73900811ca580f04115858ffbd06e4e03c
4
+ data.tar.gz: e9f4eb4fd8b10c9ea7e3810e6f6e0cbeb0cf02cba0abb87099bc688ba1ecab49
5
5
  SHA512:
6
- metadata.gz: 7aaf69076e11dd2802ea2a11b5811be18cf50b19254258ce23b09575d1abfe6bce0db58040a31cdde323d4f89fef20dd0d680df136778320feeaba116d88d22f
7
- data.tar.gz: cb159d71c25ebbc044cf7ff28112185aeed0b49bff4f0f17e9832312501866112a5f234ecb5c9911b3f8bffaf971345da3b7d6d7cd6c44eddb809f760b7ea9cd
6
+ metadata.gz: cad4e4961e2b076570a968a473a96796f9293ab68e7c89631717539e93e63325598f5099adf6ce047b14056e11a0b6ebdf2b4bae0bdb3209c5565a7270ec731a
7
+ data.tar.gz: 616e222f01899aea2cd02fd3ef5e19cd784a4847374cbcd19e135eb50fe88a13bfdd136b28fe748f19b62d6ea3063a4143d9cdc67c5fc77ebe1779bc2c076a40
data/README.md CHANGED
@@ -3,13 +3,14 @@
3
3
 
4
4
  Email validation with sensible defaults so you can go care about more important things.
5
5
 
6
+ ***TODO: The Rails validator isn't finished yet.***
7
+
8
+ * Strives to be trivially easy to choose and use
6
9
  * Meant to match HTML5 email validation, happily deviates from RFC 5322
7
10
  * Email tags with '+' are allowed
8
11
  * Two consecutive dots ('..') are not
9
12
  * Cares very little about most other things
10
13
 
11
- **TODO: Make the Rails validator work/test it.**
12
- **TODO: Publish gem**
13
14
 
14
15
  Add the gem:
15
16
 
@@ -25,6 +26,8 @@ validates_emailness_of :email
25
26
 
26
27
  And have a great day.
27
28
 
29
+ *If this gem is what you needed but had any hesitation or cognitive load in choosing it, please let me know!*
30
+
28
31
  ---
29
32
 
30
33
  ## Test cases
@@ -7,7 +7,18 @@ Gem::Specification.new do |spec|
7
7
  spec.email = ["jonathan@allard.io"]
8
8
 
9
9
  spec.summary = %q{Care very little about email validation}
10
- # spec.description = %q{TOD0: Write a longer description or delete this line.}
10
+ spec.description = <<~md
11
+
12
+ Email validation with sensible defaults so you can go care about more
13
+ important things.
14
+
15
+ * Strives to be trivially easy to choose and use
16
+ * Meant to match HTML5 email validation, happily deviates from RFC 5322
17
+ * Email tags with '+' are allowed
18
+ * Two consecutive dots ('..') are not
19
+ * Cares very little about most other things
20
+ md
21
+
11
22
  spec.homepage = "https://github.com/joallard/emailness"
12
23
  spec.license = "MIT"
13
24
  spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0")
@@ -1,3 +1,4 @@
1
1
  module Emailness
2
- VERSION = "0.1.0.alpha"
2
+ VERSION = "0.1.0.alpha.2"
3
+ # then `rake release`
3
4
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: emailness
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0.alpha
4
+ version: 0.1.0.alpha.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jonathan Allard
@@ -10,7 +10,16 @@ bindir: exe
10
10
  cert_chain: []
11
11
  date: 2020-12-18 00:00:00.000000000 Z
12
12
  dependencies: []
13
- description:
13
+ description: |2
14
+
15
+ Email validation with sensible defaults so you can go care about more
16
+ important things.
17
+
18
+ * Strives to be trivially easy to choose and use
19
+ * Meant to match HTML5 email validation, happily deviates from RFC 5322
20
+ * Email tags with '+' are allowed
21
+ * Two consecutive dots ('..') are not
22
+ * Cares very little about most other things
14
23
  email:
15
24
  - jonathan@allard.io
16
25
  executables: []