love_monster 0.0.2 → 0.0.3
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
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ae592efe0d03c1897b32da554aeb597872a65946
|
4
|
+
data.tar.gz: 250a7f32b944876d4f9b496d4bf16f94b9094895
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 96bef555e7004de2c0a803dea30dc3f067362f9ebc72730c1aaf918718617c9f26bcfff3f1e97fa4165ed679e5285ecc1ce72bd9ee237a95745e05f67ba0d283
|
7
|
+
data.tar.gz: 91a246561477b38ea74bebd5482eacc31dcfa3aa8a56a14bcbbd07169acb4f5379b4940bad07a6445769325cd926cf5a3594c6a92f070c2bfa5689d31abb0b7e
|
@@ -37,7 +37,7 @@
|
|
37
37
|
<TABLE class=deviceWidth cellSpacing=0 cellPadding=0 width=600 align=center bgColor=#fcfffa border=0 style="margin-bottom: 20px">
|
38
38
|
<TR>
|
39
39
|
<TD style="text-align: center; PADDING-BOTTOM: 0px; PADDING-TOP: 0px; PADDING-LEFT: 0px; PADDING-RIGHT: 0px" vAlign=top>
|
40
|
-
|
40
|
+
<%= link_to "send love to someone", root_url, style: "color: #333" %>
|
41
41
|
</TD>
|
42
42
|
</TR>
|
43
43
|
</TABLE>
|
@@ -1,11 +1,13 @@
|
|
1
|
-
|
1
|
+
You got love!
|
2
2
|
===================================================
|
3
3
|
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
4
|
+
From: <%= @love.person_from.name_or_email %>
|
5
|
+
Reason: <%= @love.reason %>
|
6
|
+
<% unless @love.message.nil? %>
|
7
|
+
Message:
|
8
|
+
<%= @love.message %>
|
9
|
+
<% end %>
|
10
10
|
|
11
|
-
|
11
|
+
Send love to someone!
|
12
|
+
|
13
|
+
<%= root_url %>
|
data/lib/love_monster/version.rb
CHANGED