appsignal 1.1.9.beta.1 → 1.1.9.beta.2

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: 6838cc2edfb8f30b33f9d12338e2f11be3e00a4e
4
- data.tar.gz: 97b4a75f66099c6dfbed17fd514f3979f84eecd1
3
+ metadata.gz: 27a3fda2bfd2de695e27f0f063c7a808bef386af
4
+ data.tar.gz: 18e54f1e3989c814bbce302774df372fba64b9e3
5
5
  SHA512:
6
- metadata.gz: 413b3f61f0e7061654ce3ff5c7eead36a2539cc0bcab34f25b0de48535d35a81936e1e5752e2c229ef73cffe7bade1a2037312e9409fa40f78bc7ce3c91c2dd0
7
- data.tar.gz: a3064fd9c845e861244f23a2b6e166cd78abff481acdc9ee08ec08c031d8a8baf0090012d3f673485bc3119ec08973fd861321288d7b871772d8da7cc4bc2774
6
+ metadata.gz: be9ff83c4d3b58e077a60c407fe27025f4cd5879a59420b6ae854449c8542739ad723f2edd002b9250c49d52e62cc03099500d6751a27728e94a9a8673c178ff
7
+ data.tar.gz: d07a6c08e36b1c17178689cdd7d0ccedf4bb6c3c1d13612e6c58c0349eca8187fab3794e3d1ec8efb0df5a76515953960a418afcb473f8256423e7c2cb724933
@@ -1,5 +1,6 @@
1
1
  # 1.1.9
2
2
  * Fix for race condition when creating working dir exactly at the same time
3
+ * Make diag Rake task resilient to missing config
3
4
 
4
5
  # 1.1.8
5
6
  * Require json to fix problem with using from Capistrano
@@ -1,5 +1,5 @@
1
1
  require 'yaml'
2
2
 
3
3
  module Appsignal
4
- VERSION = '1.1.9.beta.1'
4
+ VERSION = '1.1.9.beta.2'
5
5
  end
@@ -20,8 +20,12 @@ namespace :appsignal do
20
20
 
21
21
  desc "Checks if config is present and shows the values"
22
22
  task :config => :start_appsignal do
23
- Appsignal.config.config_hash.each do |key, val|
24
- puts "Config #{key}: #{val}"
23
+ if Appsignal.config && Appsignal.config.config_hash
24
+ Appsignal.config.config_hash.each do |key, val|
25
+ puts "Config #{key}: #{val}"
26
+ end
27
+ else
28
+ puts "No config present"
25
29
  end
26
30
  end
27
31
 
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.1.9.beta.1
4
+ version: 1.1.9.beta.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Robert Beekman