appsignal 1.3.3 → 1.3.4

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: a80bbf4de405c95b2cbca06180e74dba72dd0e56
4
- data.tar.gz: 43b9f3679d47469adfc74355f5589849355e84d2
3
+ metadata.gz: bb8cdb9e1b2db95bc735c3d64eea9665be837d19
4
+ data.tar.gz: 7021aa04820c7db059b86f6296bc6502fb771001
5
5
  SHA512:
6
- metadata.gz: 69f92345497c592f802d91d97f407b87f4cf73ad3fe79f8bacbb6ee0dbb0e01e58656b01c52715592b29722be8e4fdb0d55f2b7c41918b9691769d7c602f882c
7
- data.tar.gz: e2b37a993766b1538de718e2a395f92c771552c4093148d2974fe2c249d1c4dfc733b4dfbe4620cee85a9e45c40deaafc5ced69355028f2a21ae18ebf56c5eea
6
+ metadata.gz: ad08fc277a7215b444c1298da267eebdf6a93435d001d4d6807701b1529107206907ed024c1715148a97ad51576827a4116f8f4530f337c29cbfd72312a0dd46
7
+ data.tar.gz: 55fc2789cc506ee33d748dda6a78f38a188ca75b373a4b3459a45d9ba73da483cb73a1901adfe11ad341a5cc2e3c040c3d91aa4abfa4f461cc5fb7b900405787
@@ -1,3 +1,7 @@
1
+ # 1.3.4
2
+
3
+ * Fix argument order for `record_event` in the AppSignal extension
4
+
1
5
  # 1.3.3
2
6
 
3
7
  * Output AppSignal environment on `appsignal diagnose`
@@ -110,8 +110,8 @@ static VALUE record_event(VALUE self, VALUE name, VALUE title, VALUE body, VALUE
110
110
  make_appsignal_string(name),
111
111
  make_appsignal_string(title),
112
112
  make_appsignal_string(body),
113
- FIX2INT(body_format),
114
- NUM2LONG(duration)
113
+ NUM2LONG(duration),
114
+ FIX2INT(body_format)
115
115
  );
116
116
  return Qnil;
117
117
  }
@@ -1,5 +1,5 @@
1
1
  require 'yaml'
2
2
 
3
3
  module Appsignal
4
- VERSION = '1.3.3'
4
+ VERSION = '1.3.4'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: appsignal
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.3
4
+ version: 1.3.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Robert Beekman
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2016-09-08 00:00:00.000000000 Z
12
+ date: 2016-09-09 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rack