rfc822 0.1.1 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- data/LICENSE +20 -0
- data/README.rdoc +8 -0
- data/Rakefile +17 -0
- metadata +28 -44
data/LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright 2010 Marcin Lewandowski
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.rdoc
CHANGED
@@ -74,6 +74,10 @@ You can either clone the git repository or download a tarball or zip file.
|
|
74
74
|
Once you have the source, you can unpack it and use from wherever you downloaded.
|
75
75
|
|
76
76
|
= ChangeLog
|
77
|
+
=== 0.1.2
|
78
|
+
|
79
|
+
* Updated license
|
80
|
+
|
77
81
|
=== 0.1.1
|
78
82
|
|
79
83
|
* Fixed description in the gem description
|
@@ -86,3 +90,7 @@ Once you have the source, you can unpack it and use from wherever you downloaded
|
|
86
90
|
=== 0.0.2
|
87
91
|
|
88
92
|
* Initial release
|
93
|
+
|
94
|
+
= License
|
95
|
+
|
96
|
+
MIT
|
data/Rakefile
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
|
3
|
+
require 'jeweler'
|
4
|
+
Jeweler::Tasks.new do |s|
|
5
|
+
s.name = "rfc822"
|
6
|
+
s.version = '0.1.2'
|
7
|
+
s.authors = ["Marcin Lewandowski"]
|
8
|
+
s.email = ["marcin@saepia.net"]
|
9
|
+
s.summary = %q{This is a simple gem for Ruby that simplifies validating email addresses.}
|
10
|
+
s.description = %q{This is a simple gem for Ruby that simplifies validating email addresses. It provides clean methods like String#is_email? and provides you valid RFC2822 regexp for more complex tasks. See the website for more information.}
|
11
|
+
s.homepage = "http://github.com/saepia/rfc822"
|
12
|
+
s.files = ["README.rdoc", "LICENSE", "Rakefile", "lib/", "lib/rfc822.rb"]
|
13
|
+
s.require_paths = ["lib"]
|
14
|
+
|
15
|
+
end
|
16
|
+
Jeweler::RubygemsDotOrgTasks.new
|
17
|
+
|
metadata
CHANGED
@@ -1,69 +1,53 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: rfc822
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.2
|
5
5
|
prerelease:
|
6
|
-
segments:
|
7
|
-
- 0
|
8
|
-
- 1
|
9
|
-
- 1
|
10
|
-
version: 0.1.1
|
11
6
|
platform: ruby
|
12
|
-
authors:
|
7
|
+
authors:
|
13
8
|
- Marcin Lewandowski
|
14
9
|
autorequire:
|
15
10
|
bindir: bin
|
16
11
|
cert_chain: []
|
17
|
-
|
18
|
-
date: 2011-11-21 00:00:00 +01:00
|
19
|
-
default_executable:
|
12
|
+
date: 2012-09-23 00:00:00.000000000 Z
|
20
13
|
dependencies: []
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
14
|
+
description: This is a simple gem for Ruby that simplifies validating email addresses.
|
15
|
+
It provides clean methods like String#is_email? and provides you valid RFC2822 regexp
|
16
|
+
for more complex tasks. See the website for more information.
|
17
|
+
email:
|
18
|
+
- marcin@saepia.net
|
25
19
|
executables: []
|
26
|
-
|
27
20
|
extensions: []
|
28
|
-
|
29
|
-
|
21
|
+
extra_rdoc_files:
|
22
|
+
- LICENSE
|
30
23
|
- README.rdoc
|
31
|
-
files:
|
32
|
-
-
|
24
|
+
files:
|
25
|
+
- LICENSE
|
33
26
|
- README.rdoc
|
34
|
-
|
27
|
+
- Rakefile
|
28
|
+
- lib/rfc822.rb
|
35
29
|
homepage: http://github.com/saepia/rfc822
|
36
30
|
licenses: []
|
37
|
-
|
38
31
|
post_install_message:
|
39
32
|
rdoc_options: []
|
40
|
-
|
41
|
-
require_paths:
|
33
|
+
require_paths:
|
42
34
|
- lib
|
43
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
35
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
44
36
|
none: false
|
45
|
-
requirements:
|
46
|
-
- -
|
47
|
-
- !ruby/object:Gem::Version
|
48
|
-
|
49
|
-
|
50
|
-
- 0
|
51
|
-
version: "0"
|
52
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ! '>='
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
53
42
|
none: false
|
54
|
-
requirements:
|
55
|
-
- -
|
56
|
-
- !ruby/object:Gem::Version
|
57
|
-
|
58
|
-
segments:
|
59
|
-
- 0
|
60
|
-
version: "0"
|
43
|
+
requirements:
|
44
|
+
- - ! '>='
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
version: '0'
|
61
47
|
requirements: []
|
62
|
-
|
63
48
|
rubyforge_project:
|
64
|
-
rubygems_version: 1.
|
49
|
+
rubygems_version: 1.8.24
|
65
50
|
signing_key:
|
66
51
|
specification_version: 3
|
67
52
|
summary: This is a simple gem for Ruby that simplifies validating email addresses.
|
68
53
|
test_files: []
|
69
|
-
|