rfc822 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. data/README.rdoc +24 -1
  2. metadata +5 -5
@@ -53,13 +53,36 @@ using the latest version of rubygems:
53
53
 
54
54
  $ gem update --system
55
55
 
56
- Then you can install the jack-ffi gem as follows:
56
+ Then you can install the gem as follows:
57
57
 
58
58
  $ gem install rfc822
59
59
 
60
+ === Bundler
61
+
62
+ Add to your Gemfile:
63
+
64
+ gem "rfc822", "~> 0.1.1"
65
+
66
+ and then type:
67
+
68
+ bundle install
69
+
60
70
  === From the GitHub source
61
71
 
62
72
  The source code is available at http://github.com/saepia/rfc822.
63
73
  You can either clone the git repository or download a tarball or zip file.
64
74
  Once you have the source, you can unpack it and use from wherever you downloaded.
65
75
 
76
+ = ChangeLog
77
+ === 0.1.1
78
+
79
+ * Fixed description in the gem description
80
+
81
+ === 0.1.0
82
+
83
+ * Added compatibility with Ruby 1.9
84
+ * Added String#is_email?, String#contains_email? and String#scan_for_emails methods
85
+
86
+ === 0.0.2
87
+
88
+ * Initial release
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rfc822
3
3
  version: !ruby/object:Gem::Version
4
- hash: 27
4
+ hash: 25
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
- - 0
10
- version: 0.1.0
9
+ - 1
10
+ version: 0.1.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - Marcin Lewandowski
@@ -19,7 +19,7 @@ date: 2011-11-21 00:00:00 +01:00
19
19
  default_executable:
20
20
  dependencies: []
21
21
 
22
- description: Gem containing just e-mail validation regexp based on RFC822, please use RFC822::EMAIL_REGEXP_WHOLE for checking if whole string is an valid email, and RFC822::EMAIL_REGEXP_PART for e.g. scanning a string for e-mail address extraction.
22
+ description: 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.
23
23
  email:
24
24
  - edek123456@gmail.com
25
25
  executables: []
@@ -64,6 +64,6 @@ rubyforge_project:
64
64
  rubygems_version: 1.6.2
65
65
  signing_key:
66
66
  specification_version: 3
67
- summary: Gem containing just e-mail validation regexp based on RFC822, please use RFC822::EMAIL_REGEXP_WHOLE for checking if whole string is an valid email, and RFC822::EMAIL_REGEXP_PART for e.g. scanning a string for e-mail address extraction.
67
+ summary: This is a simple gem for Ruby that simplifies validating email addresses.
68
68
  test_files: []
69
69