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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f34879896479445bff76a77165e6f7db08a18880e14df630b76c747f76fc64af
4
- data.tar.gz: 6db1a3fde6c19127cb57a939b48e98cbf4183eab230ede479909279edd687923
3
+ metadata.gz: 39bd9fdf0035b1bf8b6ffdaadb8dd5df7eca96b2d9bb03c7b0a9db6c0dc80667
4
+ data.tar.gz: 213afbdd43435763f9b2c40e5d62f3190a99ac96e8d2e97cffad46165ba43170
5
5
  SHA512:
6
- metadata.gz: 5c772c8efb3b683164e883057ed94bea7497643f1aeb32e39f76a8430e25bea178c69a4d79a8178d93c277cca7e7be055b01892ef726649af33952ed79ea1edb
7
- data.tar.gz: 05dfe63a3bfbe3ff7bad33e0ec8e5ca3e46728315cd8ceebabde3d59609b37c69876a991e390f4f9109ec5e3406b178f654aab16dff90f2d6b77b4eb41e9cf25
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,7 +1,7 @@
1
1
  <!DOCTYPE html>
2
2
  <html style="height:100%">
3
3
  <head>
4
- <title>Letter thief</title>
4
+ <title><%= yield :title %></title>
5
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
6
6
  <%= csrf_meta_tags %>
7
7
  <%= csp_meta_tag %>
@@ -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="<%= letter_thief.email_message_path(email) %>">
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", letter_thief.email_messages_path(
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 →", letter_thief.email_messages_path(
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,
@@ -1,4 +1,6 @@
1
- <p><a href="<%= letter_thief.email_messages_path %>">&larr; Back to Inbox 📬</a></p>
1
+ <% content_for :title, "Message ##{@email.id}" %>
2
+
3
+ <p><a href="<%= email_messages_path %>">&larr; Back to Inbox 📬</a></p>
2
4
 
3
5
  <section id="message_headers">
4
6
  <dl>
data/config/routes.rb CHANGED
@@ -1,3 +1,4 @@
1
1
  LetterThief::Engine.routes.draw do
2
2
  resources :email_messages, only: [:index, :show]
3
+ root "email_messages#index"
3
4
  end
@@ -1,3 +1,3 @@
1
1
  module LetterThief
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
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.0
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-03-25 00:00:00.000000000 Z
11
+ date: 2025-04-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails