hoptoad_notifier 2.3.9 → 2.3.10

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG CHANGED
@@ -1,3 +1,15 @@
1
+ Version 2.3.10 - Mon Oct 18 17:07:56 -0400 2010
2
+ ===============================================================================
3
+
4
+ Emma Lindsay (2):
5
+ Sends more javascript information back to hoptaod
6
+ Merge branch 'js_notifier_default_fields'
7
+
8
+ Jason Morrison (2):
9
+ wip: Supply default url, component, action for JS notifier
10
+ gracefully fall back to require 'activesupport' if require 'active_support' fails
11
+
12
+
1
13
  Version 2.3.9 - 2010-10-18
2
14
  ===============================================================================
3
15
 
@@ -262,3 +274,4 @@ Nick Quaranto (3):
262
274
 
263
275
 
264
276
 
277
+
@@ -1,3 +1,3 @@
1
1
  module HoptoadNotifier
2
- VERSION = "2.3.9".freeze
2
+ VERSION = "2.3.10".freeze
3
3
  end
@@ -9,4 +9,9 @@ document.write(unescape("%3Cscript src='" + notifierJsScheme + "<%= host %>/java
9
9
  Hoptoad.setKey('<%= api_key %>');
10
10
  Hoptoad.setHost('<%= host %>');
11
11
  Hoptoad.setEnvironment('<%= environment %>');
12
+ Hoptoad.setErrorDefaults({
13
+ url: "<%= request.url %>",
14
+ component: "<%= controller_name %>",
15
+ action: "<%= action_name %>"
16
+ });
12
17
  </script>
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 2
7
7
  - 3
8
- - 9
9
- version: 2.3.9
8
+ - 10
9
+ version: 2.3.10
10
10
  platform: ruby
11
11
  authors:
12
12
  - thoughtbot, inc