active_spy 1.3.5 → 1.3.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/active_spy.gemspec +3 -3
- data/app/controllers/active_spy/notifications_controller.rb +1 -1
- data/lib/active_spy/rails/base.rb +6 -1
- data/lib/active_spy/rails/hook_list.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b5bdc4f494f15604512b34cf95f3d8f29f93a35d
|
4
|
+
data.tar.gz: 7725bf3e5a23b29f123fdaff4aa0c69cb10571de
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8bd72597fd3fdb2c0abd938dee0ab60f4782f03c5617ddad7f0522aa40f3e471f7028eccf81837d7dc41ada6c2a48a2025c05d5d684796d7ed1a415c66fc61f7
|
7
|
+
data.tar.gz: 1ef8d6d17c5a8e6476b4c188cac1f190462a3e44e7c95d9df73a3048217c7c56d7b37a5e17bddc3cb8b765528a89af3324f451dce3c2e0f345ed4398a8e71ce0
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.3.
|
1
|
+
1.3.6
|
data/active_spy.gemspec
CHANGED
@@ -2,16 +2,16 @@
|
|
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.
|
5
|
+
# stub: active_spy 1.3.6 ruby lib
|
6
6
|
|
7
7
|
Gem::Specification.new do |s|
|
8
8
|
s.name = "active_spy"
|
9
|
-
s.version = "1.3.
|
9
|
+
s.version = "1.3.6"
|
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"]
|
13
13
|
s.authors = ["Douglas Camata"]
|
14
|
-
s.date = "2014-
|
14
|
+
s.date = "2014-09-30"
|
15
15
|
s.description = " Watch for a method call in any class and run before/after callbacks.\n You can even watch your Rails models for events (like create, update,\n destroy), send these events to a event-runner instance and it redirect these\n events to other apps that are subscrived for them. This gem also provides\n classes that you can use to process the received events too.\n"
|
16
16
|
s.email = "d.camata@gmail.com"
|
17
17
|
s.extra_rdoc_files = [
|
@@ -27,7 +27,6 @@ module ActiveSpy
|
|
27
27
|
end
|
28
28
|
end
|
29
29
|
|
30
|
-
|
31
30
|
def get_result(hook, params)
|
32
31
|
listener = "#{hook['post_class']}Listener".constantize
|
33
32
|
result = listener.new.handle(params['event'])
|
@@ -50,6 +49,7 @@ module ActiveSpy
|
|
50
49
|
model_with_errors.each do |model|
|
51
50
|
::Rails.logger.warn("[EVENT][#{hook['post_class']}] #{model} errors: #{model.errors}")
|
52
51
|
end
|
52
|
+
render nothing: true, status: :internal_server_error
|
53
53
|
else
|
54
54
|
render nothing: true
|
55
55
|
end
|
@@ -66,8 +66,13 @@ module ActiveSpy
|
|
66
66
|
def send_event_request
|
67
67
|
host = ActiveSpy::Configuration.event_host
|
68
68
|
port = ActiveSpy::Configuration.event_port
|
69
|
-
RestClient.post "#{host}:#{port}/events", @event_json,
|
69
|
+
response = RestClient.post "#{host}:#{port}/events", @event_json,
|
70
70
|
content_type: :json
|
71
|
+
if defined?(Rails)
|
72
|
+
::Rails.logger.info('[SPY] Event sent to event-runner.')
|
73
|
+
::Rails.logger.info("[SPY] Event-runner response code: #{response.code}")
|
74
|
+
::Rails.logger.info("[SPY] Event-runner response: #{response.body}")
|
75
|
+
end
|
71
76
|
end
|
72
77
|
|
73
78
|
# Get the event request params for a given +method+.
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: active_spy
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.3.
|
4
|
+
version: 1.3.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Douglas Camata
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-
|
11
|
+
date: 2014-09-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|