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 +13 -0
- data/lib/hoptoad_notifier/version.rb +1 -1
- data/lib/templates/javascript_notifier.erb +5 -0
- metadata +2 -2
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
|
+
|
@@ -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>
|