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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: eb1d75a9d311064077a0c7613ec9c9eb80a48d11
4
- data.tar.gz: 4f9744d3e003820ff7c3623d96ea55aa091849e5
3
+ metadata.gz: eaa0b5cbe38c609040c11d5536d407f5812b7711
4
+ data.tar.gz: faddb4191005eecb6cebf04bcee94c6669aa04cb
5
5
  SHA512:
6
- metadata.gz: d5f91f0d8f412492650c35aecbb4c0e984e17f6a5a1eeb076dae4ab2adac5c109903eabd9ae7da296995e60a4a8e43334ef2129be8aece4d01841d6aa3007323
7
- data.tar.gz: 6618ac8238ea2719a117a155494dd9a624c3db4bcbff2b40ee3c8f1e18959450015515ff60437c9ce960976aa28728a445f14766b0c21a14b0a937f856857904
6
+ metadata.gz: 5acb2ab4b9f796bc1cd41a0216dcd2a41b4edd4b424b13e26f358afeae183ba6cac8df77fee3927d039e98800cda98d2cc45edd7febad6af242685e45e6c05cb
7
+ data.tar.gz: 9525d18c1e9df004efca8f4816142b4a9db59e6ccf39111e1af4840856738c1fb726a88c5307bacdc98d5c1d93b1ec38d7166dae6d1efb222c6227a37922667b
@@ -5,8 +5,8 @@ module Lena
5
5
  module Routing
6
6
  def configuration
7
7
  return {
8
- 'data-lena-destination' => Rails.env.development? ? "local" : "",
9
- 'data-lena-remote-url' => self.report_path,
8
+ 'lena-destination' => Rails.env.development? ? "local" : "all",
9
+ 'lena-remote-url' => self.report_path,
10
10
  }
11
11
  end
12
12
  end
@@ -1,3 +1,3 @@
1
1
  module Lena
2
- VERSION = "0.0.2"
2
+ VERSION = "0.1.0"
3
3
  end
@@ -2,7 +2,7 @@
2
2
  <html>
3
3
  <head>
4
4
  <title>Dummy</title>
5
- <%= javascript_include_tag "application", lena.configuration.merge("data-turbolinks-track" => true) %>
5
+ <%= javascript_include_tag "application", "data-turbolinks-track" => true, data: lena.configuration %>
6
6
  <%= csrf_meta_tags %>
7
7
  </head>
8
8
  <body>
@@ -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)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lena
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Whitney Young