scout_apm 0.9.5 → 0.9.6

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ebb037864cecac7a2047391c86368a3b1c479d1b
4
- data.tar.gz: 17618a8d5c36787f303a78ab45e2610d54e6d56e
3
+ metadata.gz: b45b445e6890d21e6a92c1e35684b89a8104f06c
4
+ data.tar.gz: 86e98c9d8f952de077c7b35d372b21f2f217be4c
5
5
  SHA512:
6
- metadata.gz: fd1e8389a14f1fc91c62d07a0b737d862de5dcbb9ea94b633b7206d8a0a33e9513e6d2b7faa418c7b70e3c4488a20e5375299d32152510faf773dab90d7129ef
7
- data.tar.gz: a1adb902ac743bceae3d613d65c7f7d3b623341ba8fa9067eb8878df8e231870253885b715dc9b2b4154b11d289a044437b8e9d34c3df39af58220441f15e45c
6
+ metadata.gz: 69453628027b2cf8d95828342ee27eefc82fc5f17ad2c5f2fba9d1c0fd67f0f2bde3067cc95117086bd338e842b35ae28b09d1e924227b9ded5aa5e88309ca37
7
+ data.tar.gz: 31ad198f6b219fcef29085a15a8f7feeb9ba814f350d214f29ce468a9854c6a423f3896b8318f4608e34fe90f3d7b41d7ac91291d5cd3b020779d2172bacdd81
data/CHANGELOG.markdown CHANGED
@@ -1,3 +1,7 @@
1
+ # 0.9.6
2
+
3
+ * Fix more 1.8.7 syntax errors
4
+
1
5
  # 0.9.5
2
6
 
3
7
  * Fix 1.8.7 syntax error
@@ -32,8 +32,8 @@ module ScoutApm
32
32
  end
33
33
 
34
34
  metadata = {
35
- app_root: ScoutApm::Environment.instance.root.to_s,
36
- unique_id: ScoutApm::Utils::UniqueId.simple
35
+ :app_root => ScoutApm::Environment.instance.root.to_s,
36
+ :unique_id => ScoutApm::Utils::UniqueId.simple
37
37
  }
38
38
 
39
39
  logger.debug("Metrics: #{metrics}")
@@ -60,10 +60,10 @@ module ScoutApm
60
60
 
61
61
  def total_samples_of_app_nodes
62
62
  in_app_nodes.reject{|n| n.calls_only_app_nodes? && !n.has_samples? }.
63
- map{|n| { samples: n.total_samples,
64
- name: n.name,
65
- file: n.file,
66
- line: n.line
63
+ map{|n| { :samples => n.total_samples,
64
+ :name => n.name,
65
+ :file => n.file,
66
+ :line => n.line
67
67
  }
68
68
  }
69
69
  end
@@ -1,4 +1,4 @@
1
1
  module ScoutApm
2
- VERSION = "0.9.5"
2
+ VERSION = "0.9.6"
3
3
  end
4
4
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: scout_apm
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.5
4
+ version: 0.9.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Derek Haynes