bounce_email 0.2.0

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.
Files changed (56) hide show
  1. data/.gitignore +5 -0
  2. data/Gemfile +4 -0
  3. data/HISTORY.md +17 -0
  4. data/Manifest.txt +11 -0
  5. data/PostInstall.txt +35 -0
  6. data/README.md +71 -0
  7. data/Rakefile +9 -0
  8. data/VERSION +1 -0
  9. data/bounce_email.gemspec +23 -0
  10. data/lib/bounce_email.rb +218 -0
  11. data/script/console +10 -0
  12. data/script/destroy +14 -0
  13. data/script/generate +14 -0
  14. data/test/bounce_email_test.rb +113 -0
  15. data/test/bounces/malformed_bounce_01.txt +75 -0
  16. data/test/bounces/tt_1234175799.txt +73 -0
  17. data/test/bounces/tt_1234177688.txt +75 -0
  18. data/test/bounces/tt_1234210655.txt +105 -0
  19. data/test/bounces/tt_1234211357.txt +82 -0
  20. data/test/bounces/tt_1234211929.txt +89 -0
  21. data/test/bounces/tt_1234211931.txt +87 -0
  22. data/test/bounces/tt_1234211932.txt +77 -0
  23. data/test/bounces/tt_1234241665.txt +78 -0
  24. data/test/bounces/tt_1234285532.txt +80 -0
  25. data/test/bounces/tt_1234285668.txt +78 -0
  26. data/test/bounces/tt_bounce_01.txt +49 -0
  27. data/test/bounces/tt_bounce_02.txt +49 -0
  28. data/test/bounces/tt_bounce_03.txt +91 -0
  29. data/test/bounces/tt_bounce_04.txt +93 -0
  30. data/test/bounces/tt_bounce_05.txt +78 -0
  31. data/test/bounces/tt_bounce_06.txt +48 -0
  32. data/test/bounces/tt_bounce_07.txt +91 -0
  33. data/test/bounces/tt_bounce_08.txt +51 -0
  34. data/test/bounces/tt_bounce_09.txt +51 -0
  35. data/test/bounces/tt_bounce_10.txt +139 -0
  36. data/test/bounces/tt_bounce_11.txt +535 -0
  37. data/test/bounces/tt_bounce_12_soft.txt +46 -0
  38. data/test/bounces/tt_bounce_13.txt +648 -0
  39. data/test/bounces/tt_bounce_14.txt +596 -0
  40. data/test/bounces/tt_bounce_15.txt +137 -0
  41. data/test/bounces/tt_bounce_16.txt +99 -0
  42. data/test/bounces/tt_bounce_17.txt +61 -0
  43. data/test/bounces/tt_bounce_18.txt +99 -0
  44. data/test/bounces/tt_bounce_19.txt +45 -0
  45. data/test/bounces/tt_bounce_20.txt +43 -0
  46. data/test/bounces/tt_bounce_21.txt +65 -0
  47. data/test/bounces/tt_bounce_22.txt +49 -0
  48. data/test/bounces/tt_bounce_23.txt +133 -0
  49. data/test/bounces/tt_bounce_24.txt +297 -0
  50. data/test/bounces/tt_bounce_25.txt +67 -0
  51. data/test/bounces/unknown_code_bounce_01.txt +64 -0
  52. data/test/non_bounces/tt_1234210666.txt +40 -0
  53. data/test/non_bounces/tt_1234211024.txt +42 -0
  54. data/test/non_bounces/tt_1234241664.txt +22 -0
  55. data/test/test_helper.rb +7 -0
  56. metadata +178 -0
metadata ADDED
@@ -0,0 +1,178 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: bounce_email
3
+ version: !ruby/object:Gem::Version
4
+ hash: 23
5
+ prerelease:
6
+ segments:
7
+ - 0
8
+ - 2
9
+ - 0
10
+ version: 0.2.0
11
+ platform: ruby
12
+ authors:
13
+ - Tobias Bielohlawek
14
+ - Agris Ameriks
15
+ - Pedro Visintin
16
+ - Dimitar Dimitrov
17
+ autorequire:
18
+ bindir: bin
19
+ cert_chain: []
20
+
21
+ date: 2011-10-24 00:00:00 +03:00
22
+ default_executable:
23
+ dependencies:
24
+ - !ruby/object:Gem::Dependency
25
+ name: mail
26
+ prerelease: false
27
+ requirement: &id001 !ruby/object:Gem::Requirement
28
+ none: false
29
+ requirements:
30
+ - - ">="
31
+ - !ruby/object:Gem::Version
32
+ hash: 3
33
+ segments:
34
+ - 0
35
+ version: "0"
36
+ type: :runtime
37
+ version_requirements: *id001
38
+ description: fork of whatcould/bounce-email incl. patches from wakiki, peterpunk, agowan & rngtng
39
+ email: tobi@rngtng.com
40
+ executables: []
41
+
42
+ extensions: []
43
+
44
+ extra_rdoc_files: []
45
+
46
+ files:
47
+ - .gitignore
48
+ - Gemfile
49
+ - HISTORY.md
50
+ - Manifest.txt
51
+ - PostInstall.txt
52
+ - README.md
53
+ - Rakefile
54
+ - VERSION
55
+ - bounce_email.gemspec
56
+ - lib/bounce_email.rb
57
+ - script/console
58
+ - script/destroy
59
+ - script/generate
60
+ - test/bounce_email_test.rb
61
+ - test/bounces/malformed_bounce_01.txt
62
+ - test/bounces/tt_1234175799.txt
63
+ - test/bounces/tt_1234177688.txt
64
+ - test/bounces/tt_1234210655.txt
65
+ - test/bounces/tt_1234211357.txt
66
+ - test/bounces/tt_1234211929.txt
67
+ - test/bounces/tt_1234211931.txt
68
+ - test/bounces/tt_1234211932.txt
69
+ - test/bounces/tt_1234241665.txt
70
+ - test/bounces/tt_1234285532.txt
71
+ - test/bounces/tt_1234285668.txt
72
+ - test/bounces/tt_bounce_01.txt
73
+ - test/bounces/tt_bounce_02.txt
74
+ - test/bounces/tt_bounce_03.txt
75
+ - test/bounces/tt_bounce_04.txt
76
+ - test/bounces/tt_bounce_05.txt
77
+ - test/bounces/tt_bounce_06.txt
78
+ - test/bounces/tt_bounce_07.txt
79
+ - test/bounces/tt_bounce_08.txt
80
+ - test/bounces/tt_bounce_09.txt
81
+ - test/bounces/tt_bounce_10.txt
82
+ - test/bounces/tt_bounce_11.txt
83
+ - test/bounces/tt_bounce_12_soft.txt
84
+ - test/bounces/tt_bounce_13.txt
85
+ - test/bounces/tt_bounce_14.txt
86
+ - test/bounces/tt_bounce_15.txt
87
+ - test/bounces/tt_bounce_16.txt
88
+ - test/bounces/tt_bounce_17.txt
89
+ - test/bounces/tt_bounce_18.txt
90
+ - test/bounces/tt_bounce_19.txt
91
+ - test/bounces/tt_bounce_20.txt
92
+ - test/bounces/tt_bounce_21.txt
93
+ - test/bounces/tt_bounce_22.txt
94
+ - test/bounces/tt_bounce_23.txt
95
+ - test/bounces/tt_bounce_24.txt
96
+ - test/bounces/tt_bounce_25.txt
97
+ - test/bounces/unknown_code_bounce_01.txt
98
+ - test/non_bounces/tt_1234210666.txt
99
+ - test/non_bounces/tt_1234211024.txt
100
+ - test/non_bounces/tt_1234241664.txt
101
+ - test/test_helper.rb
102
+ has_rdoc: true
103
+ homepage: http://github.com/mitio/bounce_email
104
+ licenses: []
105
+
106
+ post_install_message:
107
+ rdoc_options: []
108
+
109
+ require_paths:
110
+ - lib
111
+ required_ruby_version: !ruby/object:Gem::Requirement
112
+ none: false
113
+ requirements:
114
+ - - ">="
115
+ - !ruby/object:Gem::Version
116
+ hash: 3
117
+ segments:
118
+ - 0
119
+ version: "0"
120
+ required_rubygems_version: !ruby/object:Gem::Requirement
121
+ none: false
122
+ requirements:
123
+ - - ">="
124
+ - !ruby/object:Gem::Version
125
+ hash: 3
126
+ segments:
127
+ - 0
128
+ version: "0"
129
+ requirements: []
130
+
131
+ rubyforge_project:
132
+ rubygems_version: 1.6.2
133
+ signing_key:
134
+ specification_version: 3
135
+ summary: Detect kind of bounced email
136
+ test_files:
137
+ - test/bounce_email_test.rb
138
+ - test/bounces/malformed_bounce_01.txt
139
+ - test/bounces/tt_1234175799.txt
140
+ - test/bounces/tt_1234177688.txt
141
+ - test/bounces/tt_1234210655.txt
142
+ - test/bounces/tt_1234211357.txt
143
+ - test/bounces/tt_1234211929.txt
144
+ - test/bounces/tt_1234211931.txt
145
+ - test/bounces/tt_1234211932.txt
146
+ - test/bounces/tt_1234241665.txt
147
+ - test/bounces/tt_1234285532.txt
148
+ - test/bounces/tt_1234285668.txt
149
+ - test/bounces/tt_bounce_01.txt
150
+ - test/bounces/tt_bounce_02.txt
151
+ - test/bounces/tt_bounce_03.txt
152
+ - test/bounces/tt_bounce_04.txt
153
+ - test/bounces/tt_bounce_05.txt
154
+ - test/bounces/tt_bounce_06.txt
155
+ - test/bounces/tt_bounce_07.txt
156
+ - test/bounces/tt_bounce_08.txt
157
+ - test/bounces/tt_bounce_09.txt
158
+ - test/bounces/tt_bounce_10.txt
159
+ - test/bounces/tt_bounce_11.txt
160
+ - test/bounces/tt_bounce_12_soft.txt
161
+ - test/bounces/tt_bounce_13.txt
162
+ - test/bounces/tt_bounce_14.txt
163
+ - test/bounces/tt_bounce_15.txt
164
+ - test/bounces/tt_bounce_16.txt
165
+ - test/bounces/tt_bounce_17.txt
166
+ - test/bounces/tt_bounce_18.txt
167
+ - test/bounces/tt_bounce_19.txt
168
+ - test/bounces/tt_bounce_20.txt
169
+ - test/bounces/tt_bounce_21.txt
170
+ - test/bounces/tt_bounce_22.txt
171
+ - test/bounces/tt_bounce_23.txt
172
+ - test/bounces/tt_bounce_24.txt
173
+ - test/bounces/tt_bounce_25.txt
174
+ - test/bounces/unknown_code_bounce_01.txt
175
+ - test/non_bounces/tt_1234210666.txt
176
+ - test/non_bounces/tt_1234211024.txt
177
+ - test/non_bounces/tt_1234241664.txt
178
+ - test/test_helper.rb