monitor_me 0.1.0 → 0.1.3
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 +4 -4
- data/lib/monitor_me/version.rb +1 -1
- data/lib/monitor_me.rb +10 -9
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ff4a8de2e94dc1fcc303eb0c6cfa5498965eb706bfca92e5522de6c4b1b31a86
|
4
|
+
data.tar.gz: 53e3427957cdf8f449aa9d6ad31d92e5c6f3499cd1f8a23b407fe843dc5484ad
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 333fad8871bb6cf601d3dc836b1480773775ccb6f93adfdcc83593d6456dc54fd12029eb2b0f3df22ac041af305b22a6784d10f82366890e40de967b6dc3bc6b
|
7
|
+
data.tar.gz: 401ee0fbb5d1dcaa5d6914dbdf7c19d331a1d79031f23a7081dd80465dc43ead898661286d099b6cad9c724c7d1912f7b3ed6eddcc7cfe61657491a9e2cf5319
|
data/lib/monitor_me/version.rb
CHANGED
data/lib/monitor_me.rb
CHANGED
@@ -1,17 +1,18 @@
|
|
1
1
|
require "monitor_me/version"
|
2
2
|
|
3
3
|
class MonitorMe
|
4
|
-
attr_accessor :apikey
|
5
|
-
def initialize(apikey)
|
6
|
-
@apikey = apikey
|
7
|
-
end
|
8
4
|
|
9
|
-
def
|
10
|
-
|
5
|
+
def log_error(record)
|
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!"
|
9
|
+
else
|
10
|
+
print "LOGGIN ERROR FOR #{record.class.name} RECORD"
|
11
|
+
print record.errors.full_messages
|
12
|
+
end
|
11
13
|
end
|
12
14
|
|
13
|
-
def
|
14
|
-
print "
|
15
|
-
print record.errors.full_messages
|
15
|
+
def self.print_api_key_global
|
16
|
+
print "#{MONITOR_APIKEY}" unless MONITOR_APIKEY.blank?
|
16
17
|
end
|
17
18
|
end
|