monitor_me 0.1.4 → 0.1.5

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: 2f516eed48c379dae8f896e4df8967609c92394edebc2da3e2aa37b67634ee65
4
+ data.tar.gz: f9c21b34a19c0be8634135881dcd2c89ba28f72096972efbf9a0c1a6d64d1365
5
5
  SHA512:
6
- metadata.gz: 8aef5a5a38f89704a9b77a1b6b6935e323affc74c04645bfa6eea5f34ce4f720ff2f9a2ba4957619c56cb84cb875402cb03f020fb52b07b87f3ebbed882d9de5
7
- data.tar.gz: 41b53d13739505b2c1ddfbb36040b8f85cc746fb368f9a7388d3330b9b3f8f9cbf577deb3af279ec03c889ed19e23195887ca927303c9f305225ce3bb1cb9dd1
6
+ metadata.gz: 5f1be73ce5e450a051e0e727c9c968e3c710b90b980a7993e9ff6c7864e1214cb0875b14d6c481f09f423c739a40de8ebeb6699f303f7715dda75a08e226faea
7
+ data.tar.gz: ed4b72b646ceea3adcda2252f8289706c80f8d323a5b3b47cb1ca7c3038a368fc533d7a85071ed7a37e76d08262f68d158cb65d71b9e0773bc23fd0b1b30a108
@@ -1,3 +1,3 @@
1
1
  class MonitorMe
2
- VERSION = '0.1.4'
2
+ VERSION = '0.1.5'
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 user.to_yaml
14
+ puts debug(user)
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
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stephen Charette