active_spy 1.3.7 → 1.3.8

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
  SHA1:
3
- metadata.gz: 3de836e949efc4872a29990faab7d43ed91de313
4
- data.tar.gz: 624ee09fa7ed79efd562af71d89222f904bbec09
3
+ metadata.gz: 175b2633f946d4be05ff26032bb63ce4a9a6a251
4
+ data.tar.gz: 541b822cf2559a57dee0624d27b6110b3c951dbe
5
5
  SHA512:
6
- metadata.gz: 63a31f3a8432a1d7645c2087df9c843804728b64f40d817e4b7541b59c95f04aaa1a747a65402c8a4f074d3af2264014640d4caddca5ceec4244e3274acd4a5e
7
- data.tar.gz: 3755ebd549c4839212dafa25fcf98771edbf749fe15a194aac3291c0154d6cf13362501826e3acb323d2fbb9fbe1a99d4795d624f56a735671033335dd00c4f5
6
+ metadata.gz: 1c853ef9af0b3f95caf6da74223fab48d906dd17ad6869da34046961d1ec7ebaba3b987e2a4cd3edb0c8c78bb50a0f0c615137f19d8290c34309611cbf9062fc
7
+ data.tar.gz: 1125f1630060496f43fb6ca53afd1d9a9aaba281c88a1d9aee92b88ca1a4b68467a04310d407f033cb5f980199c334b84166bcecaf7a1bd2bbaf6e1cf568a518
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.3.7
1
+ 1.3.8
data/active_spy.gemspec CHANGED
@@ -2,11 +2,11 @@
2
2
  # DO NOT EDIT THIS FILE DIRECTLY
3
3
  # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
4
  # -*- encoding: utf-8 -*-
5
- # stub: active_spy 1.3.7 ruby lib
5
+ # stub: active_spy 1.3.8 ruby lib
6
6
 
7
7
  Gem::Specification.new do |s|
8
8
  s.name = "active_spy"
9
- s.version = "1.3.7"
9
+ s.version = "1.3.8"
10
10
 
11
11
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
12
12
  s.require_paths = ["lib"]
@@ -66,8 +66,12 @@ module ActiveSpy
66
66
  def send_event_request
67
67
  host = ActiveSpy::Configuration.event_host
68
68
  port = ActiveSpy::Configuration.event_port
69
- response = RestClient.post "#{host}:#{port}/events", @event_json,
70
- content_type: :json
69
+ begin
70
+ response = RestClient.post "#{host}:#{port}/events", @event_json,
71
+ content_type: :json
72
+ rescue => e
73
+ ::Rails.logger.info(e.response)
74
+ end
71
75
  if defined?(Rails) && !ActiveSpy::Configuration.development_mode
72
76
  ::Rails.logger.info('[SPY] Event sent to event-runner.')
73
77
  ::Rails.logger.info("[SPY] Event-runner response code: #{response.code}")
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: active_spy
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.7
4
+ version: 1.3.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Douglas Camata