monitor_me 0.1.4 → 0.1.5.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
  SHA256:
3
- metadata.gz: 3eb6fa6bcda802aec02ee57e951a7e9762e091742f0805dcb9844c0821f1455e
4
- data.tar.gz: 3cb7e64dc863368c7de7ee0f3b0fb237008b8da8f51f9f73333eda6bb4e7b6af
3
+ metadata.gz: d510cdca15ecd93fb17f179d7d155f948a9e0d9e1d35597c664c9c158cd3482d
4
+ data.tar.gz: 15eba823213e7901c431a57c7545fa8f86f791f8d99384bc0ade4d3a3a1ff129
5
5
  SHA512:
6
- metadata.gz: 8aef5a5a38f89704a9b77a1b6b6935e323affc74c04645bfa6eea5f34ce4f720ff2f9a2ba4957619c56cb84cb875402cb03f020fb52b07b87f3ebbed882d9de5
7
- data.tar.gz: 41b53d13739505b2c1ddfbb36040b8f85cc746fb368f9a7388d3330b9b3f8f9cbf577deb3af279ec03c889ed19e23195887ca927303c9f305225ce3bb1cb9dd1
6
+ metadata.gz: 70a5f8f80b9eab1d4bbce273dd83ec9fb6cafb7b1d66d49b86e7c5da73747dd6f9f97a7c453057fc1af1cb6c174a12219a7021a51796ca62591dea85508f638c
7
+ data.tar.gz: 3e45ee8c47387226a5ffc36e80ae011d79456db22deaa5eb0c83953ea1e98e3cb52cadea4ab81cc5b597e56942b111c5592e5afcb8c70039a7627aec95cc949a
@@ -1,3 +1,3 @@
1
1
  class MonitorMe
2
- VERSION = '0.1.4'
2
+ VERSION = '0.1.5.6'
3
3
  end
data/lib/monitor_me.rb CHANGED
@@ -4,15 +4,18 @@ class MonitorMe
4
4
 
5
5
  def self.log_error(record)
6
6
  if MONITOR_APIKEY.blank?
7
- print "Oops. Cannot send response without apikey. Please provide an apikey in this format in config/environments/*.rb:"
8
- print "MONITOR_APIKEY = 'apikey' # note it is strongly recommended to use ENV variables in non-development environments!"
7
+ puts "Oops. Cannot send response without apikey."
8
+ puts "Please provide an apikey in this format in config/environments/*.rb:"
9
+ puts "\nMONITOR_APIKEY = 'apikey' # note it is strongly recommended to use ENV variables in non-development environments!"
9
10
  else
10
- print "LOGGIN ERROR FOR #{record.class.name} RECORD"
11
- print record.errors.full_messages
11
+ puts "LOGGIN ERROR FOR #{record.class.name} RECORD\n"
12
+ puts record.errors.full_messages
13
+ puts record.to_yaml
14
+ puts debug(record)
12
15
  end
13
16
  end
14
17
 
15
- def self.print_api_key_global
16
- print "#{MONITOR_APIKEY}" unless MONITOR_APIKEY.blank?
18
+ def self.puts_api_key_global
19
+ puts "#{MONITOR_APIKEY}" unless MONITOR_APIKEY.blank?
17
20
  end
18
21
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: monitor_me
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stephen Charette