mailscope 0.1.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 (39) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELOG.md +68 -0
  3. data/LICENSE.txt +27 -0
  4. data/README.md +210 -0
  5. data/app/assets/mailscope/INTER-LICENSE.txt +92 -0
  6. data/app/assets/mailscope/favicon.svg +6 -0
  7. data/app/assets/mailscope/inter-latin-ext.woff2 +0 -0
  8. data/app/assets/mailscope/inter-latin.woff2 +0 -0
  9. data/app/assets/mailscope/mailscope.css +594 -0
  10. data/app/assets/mailscope/mailscope.js +559 -0
  11. data/app/controllers/mailscope/application_controller.rb +30 -0
  12. data/app/controllers/mailscope/assets_controller.rb +24 -0
  13. data/app/controllers/mailscope/messages_controller.rb +139 -0
  14. data/app/helpers/mailscope/application_helper.rb +124 -0
  15. data/app/views/layouts/mailscope/application.html.erb +30 -0
  16. data/app/views/mailscope/messages/_blank_pane.html.erb +9 -0
  17. data/app/views/mailscope/messages/_list.html.erb +34 -0
  18. data/app/views/mailscope/messages/_list_item.html.erb +39 -0
  19. data/app/views/mailscope/messages/_pane.html.erb +151 -0
  20. data/app/views/mailscope/messages/_rail.html.erb +33 -0
  21. data/app/views/mailscope/messages/_shortcuts.html.erb +21 -0
  22. data/app/views/mailscope/messages/index.html.erb +66 -0
  23. data/app/views/mailscope/shared/_icons.html.erb +58 -0
  24. data/config/locales/mailscope.en.yml +105 -0
  25. data/config/locales/mailscope.pt-BR.yml +105 -0
  26. data/config/routes.rb +24 -0
  27. data/lib/mailscope/body_renderer.rb +142 -0
  28. data/lib/mailscope/configuration.rb +65 -0
  29. data/lib/mailscope/delivery_method.rb +45 -0
  30. data/lib/mailscope/engine.rb +21 -0
  31. data/lib/mailscope/mailbox.rb +39 -0
  32. data/lib/mailscope/message.rb +268 -0
  33. data/lib/mailscope/query.rb +54 -0
  34. data/lib/mailscope/storage/base.rb +35 -0
  35. data/lib/mailscope/storage/filesystem.rb +214 -0
  36. data/lib/mailscope/storage.rb +23 -0
  37. data/lib/mailscope/version.rb +5 -0
  38. data/lib/mailscope.rb +60 -0
  39. metadata +128 -0
metadata ADDED
@@ -0,0 +1,128 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: mailscope
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Renato Ferraz
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2026-08-22 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: actionmailer
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '7.1'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '7.1'
27
+ - !ruby/object:Gem::Dependency
28
+ name: mail
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '2.7'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '2.7'
41
+ - !ruby/object:Gem::Dependency
42
+ name: railties
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '7.1'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '7.1'
55
+ description: 'Mailscope captures outgoing mail and gives you a fast web UI to search,
56
+ preview and inspect it: HTML, plain text, raw source, headers and attachments, with
57
+ responsive previews and remote-content blocking.'
58
+ email:
59
+ - renato@impulso.team
60
+ executables: []
61
+ extensions: []
62
+ extra_rdoc_files: []
63
+ files:
64
+ - CHANGELOG.md
65
+ - LICENSE.txt
66
+ - README.md
67
+ - app/assets/mailscope/INTER-LICENSE.txt
68
+ - app/assets/mailscope/favicon.svg
69
+ - app/assets/mailscope/inter-latin-ext.woff2
70
+ - app/assets/mailscope/inter-latin.woff2
71
+ - app/assets/mailscope/mailscope.css
72
+ - app/assets/mailscope/mailscope.js
73
+ - app/controllers/mailscope/application_controller.rb
74
+ - app/controllers/mailscope/assets_controller.rb
75
+ - app/controllers/mailscope/messages_controller.rb
76
+ - app/helpers/mailscope/application_helper.rb
77
+ - app/views/layouts/mailscope/application.html.erb
78
+ - app/views/mailscope/messages/_blank_pane.html.erb
79
+ - app/views/mailscope/messages/_list.html.erb
80
+ - app/views/mailscope/messages/_list_item.html.erb
81
+ - app/views/mailscope/messages/_pane.html.erb
82
+ - app/views/mailscope/messages/_rail.html.erb
83
+ - app/views/mailscope/messages/_shortcuts.html.erb
84
+ - app/views/mailscope/messages/index.html.erb
85
+ - app/views/mailscope/shared/_icons.html.erb
86
+ - config/locales/mailscope.en.yml
87
+ - config/locales/mailscope.pt-BR.yml
88
+ - config/routes.rb
89
+ - lib/mailscope.rb
90
+ - lib/mailscope/body_renderer.rb
91
+ - lib/mailscope/configuration.rb
92
+ - lib/mailscope/delivery_method.rb
93
+ - lib/mailscope/engine.rb
94
+ - lib/mailscope/mailbox.rb
95
+ - lib/mailscope/message.rb
96
+ - lib/mailscope/query.rb
97
+ - lib/mailscope/storage.rb
98
+ - lib/mailscope/storage/base.rb
99
+ - lib/mailscope/storage/filesystem.rb
100
+ - lib/mailscope/version.rb
101
+ homepage: https://github.com/renatomeloferraz/mailscope
102
+ licenses:
103
+ - MIT
104
+ metadata:
105
+ source_code_uri: https://github.com/renatomeloferraz/mailscope
106
+ changelog_uri: https://github.com/renatomeloferraz/mailscope/blob/main/CHANGELOG.md
107
+ bug_tracker_uri: https://github.com/renatomeloferraz/mailscope/issues
108
+ rubygems_mfa_required: 'true'
109
+ post_install_message:
110
+ rdoc_options: []
111
+ require_paths:
112
+ - lib
113
+ required_ruby_version: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - ">="
116
+ - !ruby/object:Gem::Version
117
+ version: '3.1'
118
+ required_rubygems_version: !ruby/object:Gem::Requirement
119
+ requirements:
120
+ - - ">="
121
+ - !ruby/object:Gem::Version
122
+ version: '0'
123
+ requirements: []
124
+ rubygems_version: 3.5.22
125
+ signing_key:
126
+ specification_version: 4
127
+ summary: A mail inspector for Rails development and staging environments
128
+ test_files: []