skylight 0.5.0 → 0.5.1

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: e78118dc565426a957d8f55afe082e19b6b342c6
4
- data.tar.gz: 6486c1af0cc556a30bcc9763df080dcdcc465f94
3
+ metadata.gz: c59f70c1556245efc3af0fd078ed0f64dc7a40e3
4
+ data.tar.gz: bdd4aa72b59a1d4daaea897333af8dbaf53f37d0
5
5
  SHA512:
6
- metadata.gz: 70fd431199b0b0b55afa2fad0d0009ac94b0b77458022ac4fd8904b0281ece7353f87c4f2bbbb315a5c7c5330cf240950c6f20491953419b78cfccc3307c9a9c
7
- data.tar.gz: b518630c1a7adc80873a0b4d415a4312006a51f947ee767e5bd81d1e9232a2cda4e3b7081e0133e830ffd9bbda3ac33cda83515850f4a3250518d8e3b3501832
6
+ metadata.gz: 69d0e17922d7f90dacfd18acea941f44a8f39b1120d3ef6ad941821ebdc7f7a3f43098322b737abebc12cdc68c181599e8d49eb3dd64478045fbb27c3df90fb2
7
+ data.tar.gz: 790ef037ec76e412c124c1c1deb21c04adbf783eb38af45a706e64192fdc8208d1bb78bbadf9f248ad88fc90b37c0ed0857b3dc0e3de0450cf4c05912289bfa5
@@ -1,10 +1,12 @@
1
1
  ## 0.5.0 (December 4, 2014)
2
2
  * [IMPROVEMENT] Automatically load configuration from ENV
3
- * [BUGFIX] Fix Moped integration
4
3
  * [FEATURE] Track object allocations per span
5
- * [BUGFIX] Fix exit status in 1.9.2
6
4
  * [IMPROVEMENT] Fix C warnings
7
5
 
6
+ ## 0.4.3 (November 17, 2014)
7
+
8
+ * [BUGFIX] Fix Moped integration when queries include times
9
+
8
10
  ## 0.4.2 (November 12, 2014)
9
11
 
10
12
  * [BUGFIX] Fix exit status on MRI 1.9.2
@@ -1,6 +1,6 @@
1
1
  ---
2
- version: "0.5.0-72edddd"
2
+ version: "0.5.0-fbaa3ed"
3
3
  checksums:
4
- x86-linux: "d5935c1b135e1ff63050e4997d5b09324a1fc9249dd2331480c60cca188a64da"
5
- x86_64-linux: "10229cc6a3fe6e793089ab78c8c01f70b0c4f8d7c6298184cf86ae252b91ffe5"
6
- x86_64-darwin: "131de21acd4ebe5ae1502a2ae73880af1bc98b78506ee604c522bb0005ef7ff2"
4
+ x86-linux: "926a77991c02dfb399de5bc08a39d989803f63eb4992183285e9e663df6e3c7b"
5
+ x86_64-linux: "d44821e2955758d84db1f50b2c2bd0025252f67ab3d42b57e241a8a3f492dbbc"
6
+ x86_64-darwin: "35ac0581f439ffb66a0563f74bce957cd6ec718143a21af9f82fb5e2c43bb80e"
@@ -277,16 +277,16 @@ module Skylight
277
277
 
278
278
  if File.exist?(pidfile)
279
279
  if !FileTest.writable?(pidfile)
280
- raise "`#{pidfile}` not writable. Please set daemon.pidfile_path or daemon.sockdir_path in your config to a writable path."
280
+ raise ConfigError, "File `#{pidfile}` not writable. Please set daemon.pidfile_path or daemon.sockdir_path in your config to a writable path"
281
281
  end
282
282
  else
283
283
  if !FileTest.writable?(pidfile_root)
284
- raise "`#{pidfile_root}` not writable. Please set daemon.pidfile_path or daemon.sockdir_path in your config to a writable path."
284
+ raise ConfigError, "Directory `#{pidfile_root}` not writable. Please set daemon.pidfile_path or daemon.sockdir_path in your config to a writable path"
285
285
  end
286
286
  end
287
287
 
288
288
  unless FileTest.writable?(sockdir_path)
289
- raise "`#{sockdir_path}` not writable. Please set daemon.sockdir_path in your config to a writable path."
289
+ raise ConfigError, "Directory `#{sockdir_path}` not writable. Please set daemon.sockdir_path in your config to a writable path"
290
290
  end
291
291
  end
292
292
 
@@ -31,8 +31,6 @@ module Skylight
31
31
  else
32
32
  Rails.logger.info "[SKYLIGHT] [#{Skylight::VERSION}] Unable to start"
33
33
  end
34
- else
35
- Rails.logger.warn "[SKYLIGHT] [#{Skylight::VERSION}] No configuration found; disabling Skylight agent"
36
34
  end
37
35
  elsif Rails.env.development?
38
36
  log_warning config, "[SKYLIGHT] [#{Skylight::VERSION}] Running Skylight in development mode. No data will be reported until you deploy your app.\n" \
@@ -1,4 +1,4 @@
1
1
  module Skylight
2
- VERSION = '0.5.0'
2
+ VERSION = '0.5.1'
3
3
  end
4
4
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: skylight
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tilde, Inc.