letter_thief 0.1.0 → 0.1.1
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.
- checksums.yaml +4 -4
- data/README.md +18 -0
- data/app/views/layouts/letter_thief/application.html.erb +1 -1
- data/app/views/letter_thief/email_messages/index.html.erb +5 -3
- data/app/views/letter_thief/email_messages/show.html.erb +3 -1
- data/config/routes.rb +1 -0
- data/lib/letter_thief/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 39bd9fdf0035b1bf8b6ffdaadb8dd5df7eca96b2d9bb03c7b0a9db6c0dc80667
|
4
|
+
data.tar.gz: 213afbdd43435763f9b2c40e5d62f3190a99ac96e8d2e97cffad46165ba43170
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c84699514d01c43ee6fe829a98fab49642c682fbeab3cd4aa1b683b647426a37c8d3dcb5ab49e8392afa81990bc6dc7fcfae5d0c49d617003c6d9b9e637053a6
|
7
|
+
data.tar.gz: eb1d35d8fec2b7130d15efd7ab616598a74d2e50d57da32a32b294292cad9215ad422218c7c0ed52940a3ff8a09059cd74de5df9cb3835b0d42105969fdfbf68
|
data/README.md
CHANGED
@@ -48,6 +48,15 @@ bin/rails db:migrate
|
|
48
48
|
|
49
49
|
This will create the necessary tables.
|
50
50
|
|
51
|
+
Mount the engine in your routes, protecting it.
|
52
|
+
The code below might be different depending on how you authenticate your users.
|
53
|
+
|
54
|
+
```ruby
|
55
|
+
authenticate :user, ->(user) { sys_manager&.administrator? } do
|
56
|
+
mount LetterThief::Engine => "/letter_thief"
|
57
|
+
end
|
58
|
+
```
|
59
|
+
|
51
60
|
If you want to stop sending emails, you can use it also as delivery method:
|
52
61
|
|
53
62
|
```ruby
|
@@ -101,6 +110,8 @@ development:
|
|
101
110
|
|
102
111
|
## Development
|
103
112
|
|
113
|
+
Clone the project and install dependencies with `bundle install`.
|
114
|
+
|
104
115
|
You can run the tests with `bin/test`. By default they run on sqlite. To run them on postgres or mysql, specify the
|
105
116
|
TARGET_DB.
|
106
117
|
|
@@ -110,6 +121,9 @@ TARGET_DB=postgres bin/test #postgres
|
|
110
121
|
TARGET_DB=mysql bin/test #mysql
|
111
122
|
```
|
112
123
|
|
124
|
+
You can also sping up a dummy app with `bin/rails server` and work there.
|
125
|
+
|
126
|
+
|
113
127
|
## Contributing
|
114
128
|
|
115
129
|
Bug reports and pull requests are welcome on GitHub at https://github.com/coorasse/letter_thief.
|
@@ -120,3 +134,7 @@ Try to be a decent human being while interacting with other people.
|
|
120
134
|
|
121
135
|
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
122
136
|
|
137
|
+
## Credits
|
138
|
+
|
139
|
+
* [letter_opener](https://github.com/ryanb/letter_opener) is simpler and does not persist emails. This might be indeed
|
140
|
+
be better for your use case. It's also the gem that inspired me to create this one.
|
@@ -1,3 +1,5 @@
|
|
1
|
+
<% content_for :title, "Letter Thief" %>
|
2
|
+
|
1
3
|
<h1>📬 Intercepted Emails</h1>
|
2
4
|
|
3
5
|
<form method="get" style="margin-bottom: 1rem;">
|
@@ -50,7 +52,7 @@
|
|
50
52
|
<td><%= email.from&.join(", ") %></td>
|
51
53
|
<td><%= email.to&.join(", ") %></td>
|
52
54
|
<td>
|
53
|
-
<a href="<%=
|
55
|
+
<a href="<%= email_message_path(email) %>">
|
54
56
|
<%= email.subject.presence || "(no subject)" %>
|
55
57
|
</a>
|
56
58
|
</td>
|
@@ -64,7 +66,7 @@
|
|
64
66
|
<ul style="display: flex; gap: 1rem; list-style: none; padding-left: 0;">
|
65
67
|
<% if @search.page > 1 %>
|
66
68
|
<li>
|
67
|
-
<%= link_to "← Previous",
|
69
|
+
<%= link_to "← Previous", email_messages_path(
|
68
70
|
query: @search.query,
|
69
71
|
start_time: @search.start_time,
|
70
72
|
end_time: @search.end_time,
|
@@ -77,7 +79,7 @@
|
|
77
79
|
|
78
80
|
<% if @search.has_next_page %>
|
79
81
|
<li>
|
80
|
-
<%= link_to "Next →",
|
82
|
+
<%= link_to "Next →", email_messages_path(
|
81
83
|
query: @search.query,
|
82
84
|
start_time: @search.start_time,
|
83
85
|
end_time: @search.end_time,
|
data/config/routes.rb
CHANGED
data/lib/letter_thief/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: letter_thief
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Alessandro Rodi
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-04-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|