monitor_me 0.1.3 → 0.1.5.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: ff4a8de2e94dc1fcc303eb0c6cfa5498965eb706bfca92e5522de6c4b1b31a86
4
- data.tar.gz: 53e3427957cdf8f449aa9d6ad31d92e5c6f3499cd1f8a23b407fe843dc5484ad
3
+ metadata.gz: 0423b1fd4b19587f941e238e02bed27c498e95d9c28552ce730643005dbe6913
4
+ data.tar.gz: ca735b2aa84f4942119d5bd1b009c83bba4fb4c9197e6d103f3978d32a2a3614
5
5
  SHA512:
6
- metadata.gz: 333fad8871bb6cf601d3dc836b1480773775ccb6f93adfdcc83593d6456dc54fd12029eb2b0f3df22ac041af305b22a6784d10f82366890e40de967b6dc3bc6b
7
- data.tar.gz: 401ee0fbb5d1dcaa5d6914dbdf7c19d331a1d79031f23a7081dd80465dc43ead898661286d099b6cad9c724c7d1912f7b3ed6eddcc7cfe61657491a9e2cf5319
6
+ metadata.gz: d1820ba8d0f4c589c627ca56cfa5f1bdbd4d4edc412fd624afc5b6c314c2a70dfd90bf5944ed45963346857db9903ce86cea7209f70d54e15c3282bbcd10def4
7
+ data.tar.gz: ada9c7ffc9396436ec9b79debaa23671ca95e09d668a2e71d5f821cee54bfb814c55704900c74fc7ec79a02ee7fda8320471f370fb1f4a3b71fce215768da191
@@ -1,3 +1,3 @@
1
1
  class MonitorMe
2
- VERSION = '0.1.3'
2
+ VERSION = '0.1.5.5'
3
3
  end
data/lib/monitor_me.rb CHANGED
@@ -2,17 +2,20 @@ require "monitor_me/version"
2
2
 
3
3
  class MonitorMe
4
4
 
5
- def log_error(record)
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 recird.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.3
4
+ version: 0.1.5.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stephen Charette