lena 0.0.2 → 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.
- checksums.yaml +4 -4
- data/lib/lena/routing.rb +2 -2
- data/lib/lena/version.rb +1 -1
- data/spec/dummy/app/views/layouts/application.html.erb +1 -1
- data/spec/dummy/log/test.log +70 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/1c6fd1c437c9411ba952f11bacc0320f +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/b7a52d401e731277ea560db378ef97c3 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: eaa0b5cbe38c609040c11d5536d407f5812b7711
|
|
4
|
+
data.tar.gz: faddb4191005eecb6cebf04bcee94c6669aa04cb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5acb2ab4b9f796bc1cd41a0216dcd2a41b4edd4b424b13e26f358afeae183ba6cac8df77fee3927d039e98800cda98d2cc45edd7febad6af242685e45e6c05cb
|
|
7
|
+
data.tar.gz: 9525d18c1e9df004efca8f4816142b4a9db59e6ccf39111e1af4840856738c1fb726a88c5307bacdc98d5c1d93b1ec38d7166dae6d1efb222c6227a37922667b
|
data/lib/lena/routing.rb
CHANGED
|
@@ -5,8 +5,8 @@ module Lena
|
|
|
5
5
|
module Routing
|
|
6
6
|
def configuration
|
|
7
7
|
return {
|
|
8
|
-
'
|
|
9
|
-
'
|
|
8
|
+
'lena-destination' => Rails.env.development? ? "local" : "all",
|
|
9
|
+
'lena-remote-url' => self.report_path,
|
|
10
10
|
}
|
|
11
11
|
end
|
|
12
12
|
end
|
data/lib/lena/version.rb
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
<html>
|
|
3
3
|
<head>
|
|
4
4
|
<title>Dummy</title>
|
|
5
|
-
<%= javascript_include_tag "application",
|
|
5
|
+
<%= javascript_include_tag "application", "data-turbolinks-track" => true, data: lena.configuration %>
|
|
6
6
|
<%= csrf_meta_tags %>
|
|
7
7
|
</head>
|
|
8
8
|
<body>
|
data/spec/dummy/log/test.log
CHANGED
|
@@ -1306,3 +1306,73 @@ Processing by Lena::LenaController#report as */*
|
|
|
1306
1306
|
Parameters: {"message"=>"ReferenceError: Can't find variable: undefinedFunctionCall\nResource: undefined:0"}
|
|
1307
1307
|
Rendered text template (0.0ms)
|
|
1308
1308
|
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
1309
|
+
Started GET "/lena/report" for 127.0.0.1 at 2013-11-28 16:09:25 -0300
|
|
1310
|
+
Processing by Lena::LenaController#report as HTML
|
|
1311
|
+
Completed 500 Internal Server Error in 0ms
|
|
1312
|
+
Started GET "/throw_callstack" for 127.0.0.1 at 2013-11-28 16:09:26 -0300
|
|
1313
|
+
Processing by ApplicationController#throw_callstack as HTML
|
|
1314
|
+
Rendered application/throw_callstack.html within layouts/application (0.9ms)
|
|
1315
|
+
Completed 200 OK in 204ms (Views: 203.1ms)
|
|
1316
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-11-28 16:09:26 -0300
|
|
1317
|
+
Started GET "/lena/report?message=ReferenceError%3A%20Can't%20find%20variable%3A%20undefinedFunctionCall%0AResource%3A%20undefined%3A0" for 127.0.0.1 at 2013-11-28 16:09:26 -0300
|
|
1318
|
+
Processing by Lena::LenaController#report as */*
|
|
1319
|
+
Parameters: {"message"=>"ReferenceError: Can't find variable: undefinedFunctionCall\nResource: undefined:0"}
|
|
1320
|
+
Rendered text template (0.0ms)
|
|
1321
|
+
Completed 200 OK in 2ms (Views: 1.3ms)
|
|
1322
|
+
Started GET "/log" for 127.0.0.1 at 2013-11-28 16:09:26 -0300
|
|
1323
|
+
Processing by ApplicationController#log as HTML
|
|
1324
|
+
Rendered application/log.html within layouts/application (0.4ms)
|
|
1325
|
+
Completed 200 OK in 2ms (Views: 1.9ms)
|
|
1326
|
+
Started GET "/lena/report?message=Simple%20error%20log&stacktrace=unsupported" for 127.0.0.1 at 2013-11-28 16:09:26 -0300
|
|
1327
|
+
Processing by Lena::LenaController#report as */*
|
|
1328
|
+
Parameters: {"message"=>"Simple error log", "stacktrace"=>"unsupported"}
|
|
1329
|
+
Rendered text template (0.0ms)
|
|
1330
|
+
Completed 200 OK in 1ms (Views: 0.4ms)
|
|
1331
|
+
Started GET "/throw" for 127.0.0.1 at 2013-11-28 16:09:26 -0300
|
|
1332
|
+
Processing by ApplicationController#throw as HTML
|
|
1333
|
+
Rendered application/throw.html within layouts/application (0.4ms)
|
|
1334
|
+
Completed 200 OK in 3ms (Views: 2.5ms)
|
|
1335
|
+
Started GET "/lena/report?message=Error%3A%20Simple%20error%20throw%0AResource%3A%20undefined%3A0" for 127.0.0.1 at 2013-11-28 16:09:26 -0300
|
|
1336
|
+
Processing by Lena::LenaController#report as */*
|
|
1337
|
+
Parameters: {"message"=>"Error: Simple error throw\nResource: undefined:0"}
|
|
1338
|
+
Rendered text template (0.0ms)
|
|
1339
|
+
Completed 200 OK in 1ms (Views: 0.5ms)
|
|
1340
|
+
Started GET "/" for 127.0.0.1 at 2013-11-28 16:09:26 -0300
|
|
1341
|
+
Processing by ApplicationController#index as HTML
|
|
1342
|
+
Rendered application/index.html within layouts/application (0.5ms)
|
|
1343
|
+
Completed 200 OK in 2ms (Views: 2.3ms)
|
|
1344
|
+
Started GET "/lena/report" for 127.0.0.1 at 2013-11-28 16:14:06 -0300
|
|
1345
|
+
Processing by Lena::LenaController#report as HTML
|
|
1346
|
+
Completed 500 Internal Server Error in 0ms
|
|
1347
|
+
Started GET "/" for 127.0.0.1 at 2013-11-28 16:14:07 -0300
|
|
1348
|
+
Processing by ApplicationController#index as HTML
|
|
1349
|
+
Rendered application/index.html within layouts/application (0.9ms)
|
|
1350
|
+
Completed 200 OK in 11ms (Views: 10.8ms)
|
|
1351
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-11-28 16:14:07 -0300
|
|
1352
|
+
Started GET "/log" for 127.0.0.1 at 2013-11-28 16:14:07 -0300
|
|
1353
|
+
Processing by ApplicationController#log as HTML
|
|
1354
|
+
Rendered application/log.html within layouts/application (0.3ms)
|
|
1355
|
+
Completed 200 OK in 2ms (Views: 1.5ms)
|
|
1356
|
+
Started GET "/lena/report?message=Simple%20error%20log&stacktrace=unsupported" for 127.0.0.1 at 2013-11-28 16:14:07 -0300
|
|
1357
|
+
Processing by Lena::LenaController#report as */*
|
|
1358
|
+
Parameters: {"message"=>"Simple error log", "stacktrace"=>"unsupported"}
|
|
1359
|
+
Rendered text template (0.0ms)
|
|
1360
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
|
1361
|
+
Started GET "/throw" for 127.0.0.1 at 2013-11-28 16:14:07 -0300
|
|
1362
|
+
Processing by ApplicationController#throw as HTML
|
|
1363
|
+
Rendered application/throw.html within layouts/application (0.5ms)
|
|
1364
|
+
Completed 200 OK in 2ms (Views: 2.3ms)
|
|
1365
|
+
Started GET "/lena/report?message=Error%3A%20Simple%20error%20throw%0AResource%3A%20undefined%3A0" for 127.0.0.1 at 2013-11-28 16:14:07 -0300
|
|
1366
|
+
Processing by Lena::LenaController#report as */*
|
|
1367
|
+
Parameters: {"message"=>"Error: Simple error throw\nResource: undefined:0"}
|
|
1368
|
+
Rendered text template (0.0ms)
|
|
1369
|
+
Completed 200 OK in 1ms (Views: 0.4ms)
|
|
1370
|
+
Started GET "/throw_callstack" for 127.0.0.1 at 2013-11-28 16:14:07 -0300
|
|
1371
|
+
Processing by ApplicationController#throw_callstack as HTML
|
|
1372
|
+
Rendered application/throw_callstack.html within layouts/application (0.5ms)
|
|
1373
|
+
Completed 200 OK in 2ms (Views: 2.2ms)
|
|
1374
|
+
Started GET "/lena/report?message=ReferenceError%3A%20Can't%20find%20variable%3A%20undefinedFunctionCall%0AResource%3A%20undefined%3A0" for 127.0.0.1 at 2013-11-28 16:14:07 -0300
|
|
1375
|
+
Processing by Lena::LenaController#report as */*
|
|
1376
|
+
Parameters: {"message"=>"ReferenceError: Can't find variable: undefinedFunctionCall\nResource: undefined:0"}
|
|
1377
|
+
Rendered text template (0.0ms)
|
|
1378
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|