hackathon_manager 0.8.0 → 0.8.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 42bb8fbade8f26eef5e53334f66e8ca79e763df6e69759dd0bc52cf7fd6308ad
4
- data.tar.gz: 197276de127e1213e5741734a19cfeae498aed81016dc6eb907a454102ebd34b
3
+ metadata.gz: f66934a790912f2b4247474d61077285f84f817abc23e5f2482b978ec3c2c884
4
+ data.tar.gz: 2838bf08f1418b114bf2baeb8e2e7fa7b78cc142b832e4f2e632ad8e38eef369
5
5
  SHA512:
6
- metadata.gz: 302c4d953876425e55b177e234ccbdbdf1a496825a06f92b87899f74208ef8eec7575c749144cd8629b9e6bf45859567c85e499da6ea2f443ec4104deeb8933e
7
- data.tar.gz: a1dd14af8ad7fd29a116a8c4ad778b80591073718cba15608a4b0fc2550f7af48d133a256e5e2aab83d3b7bb81302642dbcbaabb62103a1027be3d4df8731c91
6
+ metadata.gz: 4276b9c8cbd48e224a163bcbb3f1e8ceab3216420d0a196fb87b93b6cf765a2899ef61ee63ce4719816e237f1fe199725015368ed6bca312fcf545f09983073e
7
+ data.tar.gz: df57e1260205f02a936edac802da0d119ccbfedaccd35ac0570bc2f70a0d301decaba846c766cf7b19181d51ef33c2d24c08a87f428537275632df70467d425c
data/README.md CHANGED
@@ -6,7 +6,7 @@
6
6
  [![Test Coverage](https://codeclimate.com/github/codeRIT/hackathon_manager/badges/coverage.svg)](https://codeclimate.com/github/codeRIT/hackathon_manager/coverage)
7
7
  [![security](https://hakiri.io/github/codeRIT/hackathon_manager/master.svg)](https://hakiri.io/github/codeRIT/hackathon_manager/master)
8
8
 
9
- ***Still a work in progress! Instructions below are incomplete.** Check out [WiCHacks](https://github.com/sman591/wichacks) for an implementation example.*
9
+ ***Still a work in progress! Instructions below are incomplete.** Check out [WiCHacks](https://github.com/Women-in-Computing-at-RIT/wichacks.io) or [BrickHack](https://github.com/codeRIT/brickhack.io) for an implementation example.*
10
10
 
11
11
  Originally developed for [BrickHack](https://github.com/codeRIT/brickhack.io), this is a Ruby on Rails "plugin" that adds typical hackathon management features to any existing Ruby on Rails application.
12
12
 
@@ -1,25 +1,379 @@
1
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2
- <html xmlns="http://www.w3.org/1999/xhtml"><head>
3
- <title></title>
4
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
5
- <style type="text/css">
6
- <%= Rails.env == "production" ? File.read(Rails.root.join("public" + ActionController::Base.helpers.asset_path("hackathon_manager/mailer.css"))).html_safe : Rails.application.assets["hackathon_manager/mailer"].to_s.html_safe %>
7
- </style>
8
- <meta name="robots" content="noindex,nofollow">
9
- </head>
10
-
11
-
12
- <body>
13
- <div id="content">
14
- <!--head-->
15
- <%= image_tag 'email_banner.jpg', class: 'banner' %>
16
-
17
- <!--content-->
18
- <div id="main-content">
19
- <%= yield %>
20
- </div>
21
- </div>
22
-
23
- </body>
1
+ <!--
2
+ From "Really Simple Free Responsive HTML Email Template",
3
+ https://github.com/leemunroe/responsive-html-email-template
4
+ -->
5
+ <!doctype html>
6
+ <html>
7
+ <head>
8
+ <meta name="viewport" content="width=device-width" />
9
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
10
+ <title>Simple Transactional Email</title>
11
+ <style>
12
+ /* -------------------------------------
13
+ GLOBAL RESETS
14
+ ------------------------------------- */
15
+ img {
16
+ border: none;
17
+ -ms-interpolation-mode: bicubic;
18
+ max-width: 100%;
19
+ }
24
20
 
21
+ body {
22
+ background-color: #f6f6f6;
23
+ font-family: sans-serif;
24
+ -webkit-font-smoothing: antialiased;
25
+ font-size: 14px;
26
+ line-height: 1.4;
27
+ margin: 0;
28
+ padding: 0;
29
+ -ms-text-size-adjust: 100%;
30
+ -webkit-text-size-adjust: 100%;
31
+ }
32
+
33
+ table {
34
+ border-collapse: separate;
35
+ mso-table-lspace: 0pt;
36
+ mso-table-rspace: 0pt;
37
+ width: 100%; }
38
+ table td {
39
+ font-family: sans-serif;
40
+ font-size: 14px;
41
+ vertical-align: top;
42
+ }
43
+
44
+ /* -------------------------------------
45
+ BODY & CONTAINER
46
+ ------------------------------------- */
47
+
48
+ .body {
49
+ background-color: #f6f6f6;
50
+ width: 100%;
51
+ }
52
+
53
+ /* Set a max-width, and make it display as block so it will automatically stretch to that width, but will also shrink down on a phone or something */
54
+ .container {
55
+ display: block;
56
+ Margin: 0 auto !important;
57
+ /* makes it centered */
58
+ max-width: 580px;
59
+ padding: 10px;
60
+ width: 580px;
61
+ }
62
+
63
+ /* This should also be a block element, so that it will fill 100% of the .container */
64
+ .content {
65
+ box-sizing: border-box;
66
+ display: block;
67
+ Margin: 0 auto;
68
+ max-width: 580px;
69
+ padding: 10px;
70
+ }
71
+
72
+ /* -------------------------------------
73
+ HEADER, FOOTER, MAIN
74
+ ------------------------------------- */
75
+ .main {
76
+ background: #ffffff;
77
+ border-radius: 3px;
78
+ width: 100%;
79
+ }
80
+
81
+ .wrapper {
82
+ box-sizing: border-box;
83
+ padding: 20px;
84
+ }
85
+
86
+ .content-block {
87
+ padding-bottom: 10px;
88
+ padding-top: 10px;
89
+ }
90
+
91
+ .footer {
92
+ clear: both;
93
+ Margin-top: 10px;
94
+ text-align: center;
95
+ width: 100%;
96
+ }
97
+ .footer td,
98
+ .footer p,
99
+ .footer span,
100
+ .footer a {
101
+ color: #999999;
102
+ font-size: 12px;
103
+ text-align: center;
104
+ }
105
+
106
+ /* -------------------------------------
107
+ TYPOGRAPHY
108
+ ------------------------------------- */
109
+ h1,
110
+ h2,
111
+ h3,
112
+ h4 {
113
+ color: #000000;
114
+ font-family: sans-serif;
115
+ font-weight: 400;
116
+ line-height: 1.4;
117
+ margin: 0;
118
+ margin-bottom: 30px;
119
+ }
120
+
121
+ h1 {
122
+ font-size: 35px;
123
+ font-weight: 300;
124
+ text-align: center;
125
+ text-transform: capitalize;
126
+ }
127
+
128
+ p,
129
+ ul,
130
+ ol {
131
+ font-family: sans-serif;
132
+ font-size: 14px;
133
+ font-weight: normal;
134
+ margin: 0;
135
+ margin-bottom: 15px;
136
+ }
137
+ p li,
138
+ ul li,
139
+ ol li {
140
+ list-style-position: inside;
141
+ margin-left: 5px;
142
+ }
143
+
144
+ a {
145
+ color: #3498db;
146
+ text-decoration: underline;
147
+ }
148
+
149
+ /* -------------------------------------
150
+ BUTTONS
151
+ ------------------------------------- */
152
+ .btn {
153
+ box-sizing: border-box;
154
+ width: 100%; }
155
+ .btn > tbody > tr > td {
156
+ padding-bottom: 15px; }
157
+ .btn table {
158
+ width: auto;
159
+ }
160
+ .btn table td {
161
+ background-color: #ffffff;
162
+ border-radius: 5px;
163
+ text-align: center;
164
+ }
165
+ .btn a {
166
+ background-color: #ffffff;
167
+ border: solid 1px #3498db;
168
+ border-radius: 5px;
169
+ box-sizing: border-box;
170
+ color: #3498db;
171
+ cursor: pointer;
172
+ display: inline-block;
173
+ font-size: 14px;
174
+ font-weight: bold;
175
+ margin: 0;
176
+ padding: 12px 25px;
177
+ text-decoration: none;
178
+ text-transform: capitalize;
179
+ }
180
+
181
+ .btn-primary table td {
182
+ background-color: #3498db;
183
+ }
184
+
185
+ .btn-primary a {
186
+ background-color: #3498db;
187
+ border-color: #3498db;
188
+ color: #ffffff;
189
+ }
190
+
191
+ /* -------------------------------------
192
+ OTHER STYLES THAT MIGHT BE USEFUL
193
+ ------------------------------------- */
194
+ .last {
195
+ margin-bottom: 0;
196
+ }
197
+
198
+ .first {
199
+ margin-top: 0;
200
+ }
201
+
202
+ .align-center {
203
+ text-align: center;
204
+ }
205
+
206
+ .align-right {
207
+ text-align: right;
208
+ }
209
+
210
+ .align-left {
211
+ text-align: left;
212
+ }
213
+
214
+ .clear {
215
+ clear: both;
216
+ }
217
+
218
+ .mt0 {
219
+ margin-top: 0;
220
+ }
221
+
222
+ .mb0 {
223
+ margin-bottom: 0;
224
+ }
225
+
226
+ .preheader {
227
+ color: transparent;
228
+ display: none;
229
+ height: 0;
230
+ max-height: 0;
231
+ max-width: 0;
232
+ opacity: 0;
233
+ overflow: hidden;
234
+ mso-hide: all;
235
+ visibility: hidden;
236
+ width: 0;
237
+ }
238
+
239
+ .powered-by a {
240
+ text-decoration: none;
241
+ }
242
+
243
+ hr {
244
+ border: 0;
245
+ border-bottom: 1px solid #f6f6f6;
246
+ Margin: 20px 0;
247
+ }
248
+
249
+ /* -------------------------------------
250
+ RESPONSIVE AND MOBILE FRIENDLY STYLES
251
+ ------------------------------------- */
252
+ @media only screen and (max-width: 620px) {
253
+ table[class=body] h1 {
254
+ font-size: 28px !important;
255
+ margin-bottom: 10px !important;
256
+ }
257
+ table[class=body] p,
258
+ table[class=body] ul,
259
+ table[class=body] ol,
260
+ table[class=body] td,
261
+ table[class=body] span,
262
+ table[class=body] a {
263
+ font-size: 16px !important;
264
+ }
265
+ table[class=body] .wrapper,
266
+ table[class=body] .article {
267
+ padding: 10px !important;
268
+ }
269
+ table[class=body] .content {
270
+ padding: 0 !important;
271
+ }
272
+ table[class=body] .container {
273
+ padding: 0 !important;
274
+ width: 100% !important;
275
+ }
276
+ table[class=body] .main {
277
+ border-left-width: 0 !important;
278
+ border-radius: 0 !important;
279
+ border-right-width: 0 !important;
280
+ }
281
+ table[class=body] .btn table {
282
+ width: 100% !important;
283
+ }
284
+ table[class=body] .btn a {
285
+ width: 100% !important;
286
+ }
287
+ table[class=body] .img-responsive {
288
+ height: auto !important;
289
+ max-width: 100% !important;
290
+ width: auto !important;
291
+ }
292
+ }
293
+
294
+ /* -------------------------------------
295
+ PRESERVE THESE STYLES IN THE HEAD
296
+ ------------------------------------- */
297
+ @media all {
298
+ .ExternalClass {
299
+ width: 100%;
300
+ }
301
+ .ExternalClass,
302
+ .ExternalClass p,
303
+ .ExternalClass span,
304
+ .ExternalClass font,
305
+ .ExternalClass td,
306
+ .ExternalClass div {
307
+ line-height: 100%;
308
+ }
309
+ .apple-link a {
310
+ color: inherit !important;
311
+ font-family: inherit !important;
312
+ font-size: inherit !important;
313
+ font-weight: inherit !important;
314
+ line-height: inherit !important;
315
+ text-decoration: none !important;
316
+ }
317
+ .btn-primary table td:hover {
318
+ background-color: #34495e !important;
319
+ }
320
+ .btn-primary a:hover {
321
+ background-color: #34495e !important;
322
+ border-color: #34495e !important;
323
+ }
324
+ }
325
+
326
+ </style>
327
+ </head>
328
+ <body class="">
329
+ <table role="presentation" border="0" cellpadding="0" cellspacing="0" class="body">
330
+ <tr>
331
+ <td>&nbsp;</td>
332
+ <td class="container">
333
+ <div class="content">
334
+
335
+ <!-- START CENTERED WHITE CONTAINER -->
336
+ <span class="preheader">This is preheader text. Some clients will show this text as a preview.</span>
337
+ <table role="presentation" class="main">
338
+
339
+ <!-- START MAIN CONTENT AREA -->
340
+ <tr>
341
+ <td class="wrapper">
342
+ <table role="presentation" border="0" cellpadding="0" cellspacing="0">
343
+ <tr>
344
+ <td>
345
+ <%= yield %>
346
+ </td>
347
+ </tr>
348
+ </table>
349
+ </td>
350
+ </tr>
351
+
352
+ <!-- END MAIN CONTENT AREA -->
353
+ </table>
354
+
355
+ <!-- START FOOTER -->
356
+ <div class="footer">
357
+ <table role="presentation" border="0" cellpadding="0" cellspacing="0">
358
+ <tr>
359
+ <td class="content-block">
360
+ You received this email because you applied to <%= Rails.configuration.hackathon['name'] %>. <%= link_to 'Manage account', questionnaires_url %>.
361
+ </td>
362
+ </tr>
363
+ <tr>
364
+ <td class="content-block powered-by">
365
+ Powered by <a href="https://github.com/codeRIT/hackathon_manager">hackathon_manager</a>
366
+ </td>
367
+ </tr>
368
+ </table>
369
+ </div>
370
+ <!-- END FOOTER -->
371
+
372
+ <!-- END CENTERED WHITE CONTAINER -->
373
+ </div>
374
+ </td>
375
+ <td>&nbsp;</td>
376
+ </tr>
377
+ </table>
378
+ </body>
25
379
  </html>
@@ -1,379 +1 @@
1
- <!--
2
- From "Really Simple Free Responsive HTML Email Template",
3
- https://github.com/leemunroe/responsive-html-email-template
4
- -->
5
- <!doctype html>
6
- <html>
7
- <head>
8
- <meta name="viewport" content="width=device-width" />
9
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
10
- <title>Simple Transactional Email</title>
11
- <style>
12
- /* -------------------------------------
13
- GLOBAL RESETS
14
- ------------------------------------- */
15
- img {
16
- border: none;
17
- -ms-interpolation-mode: bicubic;
18
- max-width: 100%;
19
- }
20
-
21
- body {
22
- background-color: #f6f6f6;
23
- font-family: sans-serif;
24
- -webkit-font-smoothing: antialiased;
25
- font-size: 14px;
26
- line-height: 1.4;
27
- margin: 0;
28
- padding: 0;
29
- -ms-text-size-adjust: 100%;
30
- -webkit-text-size-adjust: 100%;
31
- }
32
-
33
- table {
34
- border-collapse: separate;
35
- mso-table-lspace: 0pt;
36
- mso-table-rspace: 0pt;
37
- width: 100%; }
38
- table td {
39
- font-family: sans-serif;
40
- font-size: 14px;
41
- vertical-align: top;
42
- }
43
-
44
- /* -------------------------------------
45
- BODY & CONTAINER
46
- ------------------------------------- */
47
-
48
- .body {
49
- background-color: #f6f6f6;
50
- width: 100%;
51
- }
52
-
53
- /* Set a max-width, and make it display as block so it will automatically stretch to that width, but will also shrink down on a phone or something */
54
- .container {
55
- display: block;
56
- Margin: 0 auto !important;
57
- /* makes it centered */
58
- max-width: 580px;
59
- padding: 10px;
60
- width: 580px;
61
- }
62
-
63
- /* This should also be a block element, so that it will fill 100% of the .container */
64
- .content {
65
- box-sizing: border-box;
66
- display: block;
67
- Margin: 0 auto;
68
- max-width: 580px;
69
- padding: 10px;
70
- }
71
-
72
- /* -------------------------------------
73
- HEADER, FOOTER, MAIN
74
- ------------------------------------- */
75
- .main {
76
- background: #ffffff;
77
- border-radius: 3px;
78
- width: 100%;
79
- }
80
-
81
- .wrapper {
82
- box-sizing: border-box;
83
- padding: 20px;
84
- }
85
-
86
- .content-block {
87
- padding-bottom: 10px;
88
- padding-top: 10px;
89
- }
90
-
91
- .footer {
92
- clear: both;
93
- Margin-top: 10px;
94
- text-align: center;
95
- width: 100%;
96
- }
97
- .footer td,
98
- .footer p,
99
- .footer span,
100
- .footer a {
101
- color: #999999;
102
- font-size: 12px;
103
- text-align: center;
104
- }
105
-
106
- /* -------------------------------------
107
- TYPOGRAPHY
108
- ------------------------------------- */
109
- h1,
110
- h2,
111
- h3,
112
- h4 {
113
- color: #000000;
114
- font-family: sans-serif;
115
- font-weight: 400;
116
- line-height: 1.4;
117
- margin: 0;
118
- margin-bottom: 30px;
119
- }
120
-
121
- h1 {
122
- font-size: 35px;
123
- font-weight: 300;
124
- text-align: center;
125
- text-transform: capitalize;
126
- }
127
-
128
- p,
129
- ul,
130
- ol {
131
- font-family: sans-serif;
132
- font-size: 14px;
133
- font-weight: normal;
134
- margin: 0;
135
- margin-bottom: 15px;
136
- }
137
- p li,
138
- ul li,
139
- ol li {
140
- list-style-position: inside;
141
- margin-left: 5px;
142
- }
143
-
144
- a {
145
- color: #3498db;
146
- text-decoration: underline;
147
- }
148
-
149
- /* -------------------------------------
150
- BUTTONS
151
- ------------------------------------- */
152
- .btn {
153
- box-sizing: border-box;
154
- width: 100%; }
155
- .btn > tbody > tr > td {
156
- padding-bottom: 15px; }
157
- .btn table {
158
- width: auto;
159
- }
160
- .btn table td {
161
- background-color: #ffffff;
162
- border-radius: 5px;
163
- text-align: center;
164
- }
165
- .btn a {
166
- background-color: #ffffff;
167
- border: solid 1px #3498db;
168
- border-radius: 5px;
169
- box-sizing: border-box;
170
- color: #3498db;
171
- cursor: pointer;
172
- display: inline-block;
173
- font-size: 14px;
174
- font-weight: bold;
175
- margin: 0;
176
- padding: 12px 25px;
177
- text-decoration: none;
178
- text-transform: capitalize;
179
- }
180
-
181
- .btn-primary table td {
182
- background-color: #3498db;
183
- }
184
-
185
- .btn-primary a {
186
- background-color: #3498db;
187
- border-color: #3498db;
188
- color: #ffffff;
189
- }
190
-
191
- /* -------------------------------------
192
- OTHER STYLES THAT MIGHT BE USEFUL
193
- ------------------------------------- */
194
- .last {
195
- margin-bottom: 0;
196
- }
197
-
198
- .first {
199
- margin-top: 0;
200
- }
201
-
202
- .align-center {
203
- text-align: center;
204
- }
205
-
206
- .align-right {
207
- text-align: right;
208
- }
209
-
210
- .align-left {
211
- text-align: left;
212
- }
213
-
214
- .clear {
215
- clear: both;
216
- }
217
-
218
- .mt0 {
219
- margin-top: 0;
220
- }
221
-
222
- .mb0 {
223
- margin-bottom: 0;
224
- }
225
-
226
- .preheader {
227
- color: transparent;
228
- display: none;
229
- height: 0;
230
- max-height: 0;
231
- max-width: 0;
232
- opacity: 0;
233
- overflow: hidden;
234
- mso-hide: all;
235
- visibility: hidden;
236
- width: 0;
237
- }
238
-
239
- .powered-by a {
240
- text-decoration: none;
241
- }
242
-
243
- hr {
244
- border: 0;
245
- border-bottom: 1px solid #f6f6f6;
246
- Margin: 20px 0;
247
- }
248
-
249
- /* -------------------------------------
250
- RESPONSIVE AND MOBILE FRIENDLY STYLES
251
- ------------------------------------- */
252
- @media only screen and (max-width: 620px) {
253
- table[class=body] h1 {
254
- font-size: 28px !important;
255
- margin-bottom: 10px !important;
256
- }
257
- table[class=body] p,
258
- table[class=body] ul,
259
- table[class=body] ol,
260
- table[class=body] td,
261
- table[class=body] span,
262
- table[class=body] a {
263
- font-size: 16px !important;
264
- }
265
- table[class=body] .wrapper,
266
- table[class=body] .article {
267
- padding: 10px !important;
268
- }
269
- table[class=body] .content {
270
- padding: 0 !important;
271
- }
272
- table[class=body] .container {
273
- padding: 0 !important;
274
- width: 100% !important;
275
- }
276
- table[class=body] .main {
277
- border-left-width: 0 !important;
278
- border-radius: 0 !important;
279
- border-right-width: 0 !important;
280
- }
281
- table[class=body] .btn table {
282
- width: 100% !important;
283
- }
284
- table[class=body] .btn a {
285
- width: 100% !important;
286
- }
287
- table[class=body] .img-responsive {
288
- height: auto !important;
289
- max-width: 100% !important;
290
- width: auto !important;
291
- }
292
- }
293
-
294
- /* -------------------------------------
295
- PRESERVE THESE STYLES IN THE HEAD
296
- ------------------------------------- */
297
- @media all {
298
- .ExternalClass {
299
- width: 100%;
300
- }
301
- .ExternalClass,
302
- .ExternalClass p,
303
- .ExternalClass span,
304
- .ExternalClass font,
305
- .ExternalClass td,
306
- .ExternalClass div {
307
- line-height: 100%;
308
- }
309
- .apple-link a {
310
- color: inherit !important;
311
- font-family: inherit !important;
312
- font-size: inherit !important;
313
- font-weight: inherit !important;
314
- line-height: inherit !important;
315
- text-decoration: none !important;
316
- }
317
- .btn-primary table td:hover {
318
- background-color: #34495e !important;
319
- }
320
- .btn-primary a:hover {
321
- background-color: #34495e !important;
322
- border-color: #34495e !important;
323
- }
324
- }
325
-
326
- </style>
327
- </head>
328
- <body class="">
329
- <table role="presentation" border="0" cellpadding="0" cellspacing="0" class="body">
330
- <tr>
331
- <td>&nbsp;</td>
332
- <td class="container">
333
- <div class="content">
334
-
335
- <!-- START CENTERED WHITE CONTAINER -->
336
- <span class="preheader">This is preheader text. Some clients will show this text as a preview.</span>
337
- <table role="presentation" class="main">
338
-
339
- <!-- START MAIN CONTENT AREA -->
340
- <tr>
341
- <td class="wrapper">
342
- <table role="presentation" border="0" cellpadding="0" cellspacing="0">
343
- <tr>
344
- <td>
345
- <%= markdown(@message.body) %>
346
- </td>
347
- </tr>
348
- </table>
349
- </td>
350
- </tr>
351
-
352
- <!-- END MAIN CONTENT AREA -->
353
- </table>
354
-
355
- <!-- START FOOTER -->
356
- <div class="footer">
357
- <table role="presentation" border="0" cellpadding="0" cellspacing="0">
358
- <tr>
359
- <td class="content-block">
360
- You received this email because you applied to <%= Rails.configuration.hackathon['name'] %>. <%= link_to 'Manage account', questionnaires_url %>.
361
- </td>
362
- </tr>
363
- <tr>
364
- <td class="content-block powered-by">
365
- Powered by <a href="https://github.com/codeRIT/hackathon_manager">hackathon_manager</a>
366
- </td>
367
- </tr>
368
- </table>
369
- </div>
370
- <!-- END FOOTER -->
371
-
372
- <!-- END CENTERED WHITE CONTAINER -->
373
- </div>
374
- </td>
375
- <td>&nbsp;</td>
376
- </tr>
377
- </table>
378
- </body>
379
- </html>
1
+ <%= markdown(@message.body) %>
@@ -1,3 +1,3 @@
1
1
  module HackathonManager
2
- VERSION = '0.8.0'.freeze
2
+ VERSION = '0.8.1'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hackathon_manager
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.0
4
+ version: 0.8.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stuart Olivera
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-10-26 00:00:00.000000000 Z
11
+ date: 2018-10-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails