gz_activemessaging 0.13.1 → 0.13.1.1
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 +8 -8
- data/VERSION +1 -1
- data/activemessaging.gemspec +1 -1
- data/lib/activemessaging.rb +4 -4
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
ZDAxNGE3MjMzOGJiYmMzMDE2NDgyMWQ5NTZjNGY5YzQwMTYwNDI1Mw==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
MTgzZmYzYjk4YTliMjZhZTA0MGI5YjA0ZjE0ZTI5ZTgyODk1NGMyMg==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
ZjRkOGQ4N2JmZDQwZjBlMWI2NzMzNjZiZWZlNTA3YWVkY2YxZDMyYzUyZmU0
|
10
|
+
ZGJiODBhZWRiNzNiNGQwY2U1ODFjYTZmMDUyMTNlMzQ3MWU4NjE3NmQ0MTNi
|
11
|
+
MzcxY2E0OTUyYzlhM2VhMmM0YzEyMzRjNjI4ODk3ZDAyODIyNzk=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
YThlOWNkYjA2ZDM5NjA0OGMxZjRmYmIwNzMwMzEwY2U3ZjJiNmJhOWI1ZWU5
|
14
|
+
OGU4YjZiYmI2MTZjMTgxMGM5OWVhZmI4ZjQwNzQwNDdmNjNhMzNkZDQzYjY1
|
15
|
+
MDgwOGI5MWQ2NjBkY2MyNjBjYjVlOGRiNmZhNjhmODE0MWQ4NzQ=
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.13.1
|
1
|
+
0.13.1.1
|
data/activemessaging.gemspec
CHANGED
data/lib/activemessaging.rb
CHANGED
@@ -57,22 +57,22 @@ module ActiveMessaging
|
|
57
57
|
begin
|
58
58
|
adapter_name = File.basename(a, ".rb")
|
59
59
|
require 'activemessaging/adapters/' + adapter_name
|
60
|
+
logger.info "ActiveMessaging: adapter #{adapter_name} loaded"
|
60
61
|
rescue RuntimeError, LoadError => e
|
61
|
-
logger.warn "ActiveMessaging: adapter #{adapter_name} not loaded: #{ e.message }"
|
62
62
|
end
|
63
63
|
end
|
64
64
|
end
|
65
65
|
|
66
66
|
def self.load_config
|
67
|
-
# Skip loading config if there are no custom processors as the generator
|
67
|
+
# Skip loading config if there are no custom processors as the generator
|
68
68
|
# is likely running since application_processor.rb and another processor
|
69
|
-
# should exist when running rails.
|
69
|
+
# should exist when running rails.
|
70
70
|
if Dir["#{app_root}/app/processors/*.rb"].size() <= 1
|
71
71
|
return
|
72
72
|
end
|
73
73
|
path = File.expand_path("#{app_root}/config/messaging.rb")
|
74
74
|
begin
|
75
|
-
load path
|
75
|
+
load path
|
76
76
|
rescue
|
77
77
|
raise $!, " ActiveMessaging: problems trying to load '#{path}': \n\t#{$!.message}"
|
78
78
|
end
|