asana_exception_notifier 0.0.1 → 0.0.2

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: 280cdf0b6dca9817e839af8680186847618fb62d
4
- data.tar.gz: e762aa0e5e07af7636be397bb0e2595e0a880d48
3
+ metadata.gz: 160ac28f2936c9a035695f2cc4c00b1a2743518e
4
+ data.tar.gz: 3c66bd87b095f4dca339c29541062153b2e276f4
5
5
  SHA512:
6
- metadata.gz: 40d1ae01172fea7925e49ddeb897584fdf295816739666a0fe1b4ccb2733287c685a193e20c7f1e943fabd7bf852d1994ae68ab78b5ce8ae3b731251a85d7ffe
7
- data.tar.gz: 5cca1aa0d350e023d82ad406b4a05b0393071655f3126aef6809020cdff25567636734124803b36cab9a0bea94235d3733d3296a681bf6e684579380e7b11aca
6
+ metadata.gz: bd020c83db37fa3b6bc42a6b5664cdfb1a42b99c101c75926410ff2b11ffd56c2a4869b652198d5f005c58d77e77dd18e0560242bd38e52c4af471bf6aa93f5e
7
+ data.tar.gz: 15c2e129c2c86f1948c6fb37639ab644d968795c2b9f30a5055d0ec7baa545814039f00a56e8b5dae0033d27c752b09337813b643414cf9e808a5648cb60ca7f
data/README.md CHANGED
@@ -153,7 +153,7 @@ Rails.application.config.middleware.use ExceptionNotification::Rack
153
153
 
154
154
  ### Rack/Sinatra
155
155
 
156
- In order to use ExceptionNotification with Sinatra, please take a look in the [example application](https://github.com/smartinez87/exception_notification/tree/master/examples/sinatra).
156
+ In order to use ExceptionNotification with Sinatra, please take a look in the [example application](https://github.com/bogdanRada/asana_exception_notifier/tree/master/examples/sinatra).
157
157
 
158
158
  Background Notifications
159
159
  ------------------------
@@ -6,9 +6,9 @@ Quick start
6
6
 
7
7
  ```
8
8
  git clone git@github.com:bogdanRada/asana_exception_notifier.git
9
- cd exception_notification/examples/sinatra
9
+ cd asana_exception_notifier/examples/sinatra
10
10
  bundle install
11
11
  bundle exec foreman start
12
12
  ```
13
13
 
14
- The last command starts the sinatra app itself. Thus, visit [http://localhost:1080/](http://localhost:1080/) to check the asana notification is sent and, in a separated tab, visit [Asana.com](http://asana.com) and cause some errors. For more info, use the [source](https://github.com/bogdanRada/asana_exception_notifier/blob/master/examples/sinatra/sinatra_app.rb).
14
+ The last command starts the sinatra app itself. Thus, visit [http://localhost:3000/](http://localhost:3000/) to run the application, and check the asana notification is sent in a separated tab by visiting [Asana.com](http://asana.com) For more info, use the [source](https://github.com/bogdanRada/asana_exception_notifier/blob/master/examples/sinatra/sinatra_app.rb).
@@ -5,9 +5,6 @@ File: <%= exception.backtrace.slice(0, 1).join("\n ") %>
5
5
  <% if request_data[:ip_address].present? %>
6
6
  IP: <%= request_data[:ip_address] %>
7
7
  <% end %>
8
- <% if request_data[:session].present? %>
9
- Session: <%= request_data[:session]%>
10
- <% end %>
11
8
  <% if request_data[:url].present? %>
12
9
  Request URI: <%= request_data[:url] %>
13
10
  <% end %>
@@ -17,7 +17,7 @@ module AsanaExceptionNotifier
17
17
  # minor release version
18
18
  MINOR = 0
19
19
  # tiny release version
20
- TINY = 1
20
+ TINY = 2
21
21
  # prelease version ( set this only if it is a prelease)
22
22
  PRE = nil
23
23
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: asana_exception_notifier
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - bogdanRada