mails_viewer 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
@@ -5,10 +5,14 @@ module MailsViewer
|
|
5
5
|
before_filter :find_absolute_filename, only: [:raw, :html, :attachment, :plain]
|
6
6
|
|
7
7
|
def index
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
8
|
+
if File.exist?(mails_path)
|
9
|
+
Dir.chdir(mails_path) do
|
10
|
+
@mails = Dir["**/*"]
|
11
|
+
.select{|f| File.file?(f)}
|
12
|
+
.map{|f| [Mail.read(f), f]}
|
13
|
+
end
|
14
|
+
else
|
15
|
+
@mails = []
|
12
16
|
end
|
13
17
|
end
|
14
18
|
|
data/lib/mails_viewer/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mails_viewer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2013-03-
|
13
|
+
date: 2013-03-22 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: rails
|