foreign_office 0.16.5 → 0.16.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/app/assets/javascripts/foreign_office.js +1 -1
- data/app/assets/javascripts/pusher_bus.js +9 -6
- data/lib/foreign_office/version.rb +1 -1
- metadata +24 -28
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/test.log +0 -305
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 605ceee6b8967fa3a87fede021e512e87e8b65a5eb5fe32622e1c481c5ce5174
|
4
|
+
data.tar.gz: 649a6521d4aa91f6e314eba632d8d4ac2254c5d4d547a27c387cfac468b9996e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f385241ee4b86e6414cbca7414463b772a3e9c4d5005670903980a00068a0909c517f0b153d1bfdcf44ba95167182bcbb55e44526393c9c61b8ce030723e312f
|
7
|
+
data.tar.gz: 3e716c0c8eab1fe8dc4fc9badafa6e417bf5313f2aa32f09c97a1b7cf66a655c3b1148c602e6141717e6413d3b1b38b1fcfbf5310296721babd1b6873a2f09a8
|
@@ -15,14 +15,17 @@ var PusherBus = Class.extend({
|
|
15
15
|
return channel_name.replace(/::/g, '.')
|
16
16
|
},
|
17
17
|
bind_state_change: function(){
|
18
|
-
this.pusher.connection.bind('
|
19
|
-
|
20
|
-
|
18
|
+
this.pusher.connection.bind( 'error', function( err ) {
|
19
|
+
debug_logger.log(err.error)
|
20
|
+
})
|
21
|
+
|
22
|
+
this.pusher.connection.bind('state_change', function(states) {
|
23
|
+
// states = {previous: 'oldState', current: 'newState'}
|
24
|
+
debug_logger.log("Pusher connection current state is " + states.current, 1, 'foreign-office');
|
25
|
+
if('unavailable' == states.current){
|
26
|
+
reload_page()
|
21
27
|
}
|
22
28
|
});
|
23
|
-
this.pusher.connection.bind('disconnected', function(){
|
24
|
-
reload_page();
|
25
|
-
});
|
26
29
|
}
|
27
30
|
|
28
31
|
});
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: foreign_office
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.16.
|
4
|
+
version: 0.16.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Eric Draut
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2018-08
|
12
|
+
date: 2018-10-08 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rails
|
@@ -20,7 +20,7 @@ dependencies:
|
|
20
20
|
version: '5.1'
|
21
21
|
- - "<"
|
22
22
|
- !ruby/object:Gem::Version
|
23
|
-
version: '
|
23
|
+
version: '6'
|
24
24
|
type: :runtime
|
25
25
|
prerelease: false
|
26
26
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -30,7 +30,7 @@ dependencies:
|
|
30
30
|
version: '5.1'
|
31
31
|
- - "<"
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: '
|
33
|
+
version: '6'
|
34
34
|
- !ruby/object:Gem::Dependency
|
35
35
|
name: request_store
|
36
36
|
requirement: !ruby/object:Gem::Requirement
|
@@ -129,8 +129,6 @@ files:
|
|
129
129
|
- test/dummy/config/locales/en.yml
|
130
130
|
- test/dummy/config/routes.rb
|
131
131
|
- test/dummy/config/secrets.yml
|
132
|
-
- test/dummy/db/test.sqlite3
|
133
|
-
- test/dummy/log/test.log
|
134
132
|
- test/dummy/public/404.html
|
135
133
|
- test/dummy/public/422.html
|
136
134
|
- test/dummy/public/500.html
|
@@ -159,49 +157,47 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
159
157
|
version: '0'
|
160
158
|
requirements: []
|
161
159
|
rubyforge_project:
|
162
|
-
rubygems_version: 2.
|
160
|
+
rubygems_version: 2.7.7
|
163
161
|
signing_key:
|
164
162
|
specification_version: 4
|
165
163
|
summary: A light framework that provides functionality for listeners on web clients
|
166
164
|
and publishers on ruby servers. Keep your business logic on the server whenever
|
167
165
|
you can!
|
168
166
|
test_files:
|
167
|
+
- test/dummy/app/controllers/application_controller.rb
|
168
|
+
- test/dummy/app/views/layouts/application.html.erb
|
169
169
|
- test/dummy/app/assets/javascripts/application.js
|
170
170
|
- test/dummy/app/assets/stylesheets/application.css
|
171
|
-
- test/dummy/app/controllers/application_controller.rb
|
172
171
|
- test/dummy/app/helpers/application_helper.rb
|
173
|
-
- test/dummy/
|
172
|
+
- test/dummy/bin/rake
|
174
173
|
- test/dummy/bin/bundle
|
175
174
|
- test/dummy/bin/rails
|
176
|
-
- test/dummy/
|
177
|
-
- test/dummy/config/
|
178
|
-
- test/dummy/config/
|
179
|
-
- test/dummy/config/database.yml
|
180
|
-
- test/dummy/config/environment.rb
|
181
|
-
- test/dummy/config/environments/development.rb
|
175
|
+
- test/dummy/config/secrets.yml
|
176
|
+
- test/dummy/config/routes.rb
|
177
|
+
- test/dummy/config/locales/en.yml
|
182
178
|
- test/dummy/config/environments/production.rb
|
179
|
+
- test/dummy/config/environments/development.rb
|
183
180
|
- test/dummy/config/environments/test.rb
|
184
|
-
- test/dummy/config/
|
181
|
+
- test/dummy/config/environment.rb
|
182
|
+
- test/dummy/config/application.rb
|
183
|
+
- test/dummy/config/database.yml
|
184
|
+
- test/dummy/config/boot.rb
|
185
185
|
- test/dummy/config/initializers/backtrace_silencers.rb
|
186
|
-
- test/dummy/config/initializers/cookies_serializer.rb
|
187
|
-
- test/dummy/config/initializers/filter_parameter_logging.rb
|
188
|
-
- test/dummy/config/initializers/inflections.rb
|
189
186
|
- test/dummy/config/initializers/mime_types.rb
|
187
|
+
- test/dummy/config/initializers/filter_parameter_logging.rb
|
190
188
|
- test/dummy/config/initializers/session_store.rb
|
191
189
|
- test/dummy/config/initializers/wrap_parameters.rb
|
192
|
-
- test/dummy/config/
|
193
|
-
- test/dummy/config/
|
194
|
-
- test/dummy/config/
|
190
|
+
- test/dummy/config/initializers/assets.rb
|
191
|
+
- test/dummy/config/initializers/cookies_serializer.rb
|
192
|
+
- test/dummy/config/initializers/inflections.rb
|
195
193
|
- test/dummy/config.ru
|
196
|
-
- test/dummy/
|
197
|
-
- test/dummy/
|
198
|
-
- test/dummy/public/404.html
|
194
|
+
- test/dummy/Rakefile
|
195
|
+
- test/dummy/public/favicon.ico
|
199
196
|
- test/dummy/public/422.html
|
200
197
|
- test/dummy/public/500.html
|
201
|
-
- test/dummy/public/
|
202
|
-
- test/dummy/Rakefile
|
198
|
+
- test/dummy/public/404.html
|
203
199
|
- test/dummy/README.rdoc
|
204
|
-
- test/foreign_office_test.rb
|
205
200
|
- test/support/pubnub.rb
|
206
201
|
- test/support/pusher.rb
|
207
202
|
- test/test_helper.rb
|
203
|
+
- test/foreign_office_test.rb
|
data/test/dummy/db/test.sqlite3
DELETED
File without changes
|
data/test/dummy/log/test.log
DELETED
@@ -1,305 +0,0 @@
|
|
1
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
2
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
3
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
4
|
-
ForeignOffice.publish: {:channel=>"TestMeAgain", :object=>{:this=>"is another test"}}
|
5
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
6
|
-
ForeignOffice.publish: {:channel=>"TestMeAgain", :object=>{:this=>"is another test"}}
|
7
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
8
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is another test"}}
|
9
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
10
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
11
|
-
ForeignOffice.publish: {:channel=>"TestMeAgain", :object=>{:this=>"is another test"}}
|
12
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
13
|
-
ForeignOffice.publish: {:channel=>"TestMeAgain", :object=>{:this=>"is another test"}}
|
14
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
15
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is another test"}}
|
16
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}, :browser_tab_id=>"tab-id-123"}
|
17
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}, :browser_tab_id=>"tab-id-123"}
|
18
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}, :browser_tab_id=>"tab-id-123"}
|
19
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}, :browser_tab_id=>"tab-id-123"}
|
20
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}, :browser_tab_id=>"tab-id-123"}
|
21
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}, :browser_tab_id=>"tab-id-123"}
|
22
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}, :browser_tab_id=>"tab-id-123"}
|
23
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}, :browser_tab_id=>"tab-id-123"}
|
24
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}, :browser_tab_id=>"tab-id-123"}
|
25
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}, :browser_tab_id=>"tab-id-123"}
|
26
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
27
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
28
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
29
|
-
ForeignOffice.publish: {:channel=>"TestMeAgain", :object=>{:this=>"is another test"}}
|
30
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
31
|
-
ForeignOffice.publish: {:channel=>"TestMeAgain", :object=>{:this=>"is another test"}}
|
32
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
33
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMeAgain", :object=>{:this=>"is another test"}}
|
34
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
35
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is another test"}}
|
36
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
37
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
38
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
39
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
40
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
41
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}, :browser_tab_id=>"tab-id-123"}
|
42
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}, :browser_tab_id=>"tab-id-123"}
|
43
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
44
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
45
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
46
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
47
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
48
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}, :browser_tab_id=>"tab-id-123"}
|
49
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}, :browser_tab_id=>"tab-id-123"}
|
50
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
51
|
-
ForeignOffice.publish: {:channel=>"TestMeAgain", :object=>{:this=>"is another test"}}
|
52
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
53
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMeAgain", :object=>{:this=>"is another test"}}
|
54
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
55
|
-
ForeignOffice.publish: {:channel=>"TestMeAgain", :object=>{:this=>"is another test"}}
|
56
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
57
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is another test"}}
|
58
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
59
|
-
ForeignOffice.publish: {:channel=>"TestMeAgain", :object=>{:this=>"is another test"}}
|
60
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
61
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is another test"}}
|
62
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
63
|
-
ForeignOffice.publish: {:channel=>"TestMeAgain", :object=>{:this=>"is another test"}}
|
64
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
65
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMeAgain", :object=>{:this=>"is another test"}}
|
66
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}, :browser_tab_id=>"tab-id-123"}
|
67
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
68
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
69
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
70
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
71
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
72
|
-
ForeignOffice.publish: {:channel=>"TestMeAgain", :object=>{:this=>"is another test"}}
|
73
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
74
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMeAgain", :object=>{:this=>"is another test"}}
|
75
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
76
|
-
ForeignOffice.publish: {:channel=>"TestMeAgain", :object=>{:this=>"is another test"}}
|
77
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
78
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is another test"}}
|
79
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
80
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
81
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
82
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}, :browser_tab_id=>"tab-id-123"}
|
83
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}, :browser_tab_id=>"tab-id-123"}
|
84
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
85
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
86
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}, :browser_tab_id=>"tab-id-123"}
|
87
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}, :browser_tab_id=>"tab-id-123"}
|
88
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
89
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
90
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
91
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is another test"}}
|
92
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
93
|
-
ForeignOffice.publish: {:channel=>"TestMeAgain", :object=>{:this=>"is another test"}}
|
94
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
95
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMeAgain", :object=>{:this=>"is another test"}}
|
96
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
97
|
-
ForeignOffice.publish: {:channel=>"TestMeAgain", :object=>{:this=>"is another test"}}
|
98
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
99
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
100
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
101
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
102
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
103
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
104
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is another test"}}
|
105
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
106
|
-
ForeignOffice.publish: {:channel=>"TestMeAgain", :object=>{:this=>"is another test"}}
|
107
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
108
|
-
ForeignOffice.publish: {:channel=>"TestMeAgain", :object=>{:this=>"is another test"}}
|
109
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
110
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMeAgain", :object=>{:this=>"is another test"}}
|
111
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
112
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}, :browser_tab_id=>"tab-id-123"}
|
113
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}, :browser_tab_id=>"tab-id-123"}
|
114
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}, :browser_tab_id=>"tab-id-123"}
|
115
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}, :browser_tab_id=>"tab-id-123"}
|
116
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}, :browser_tab_id=>"tab-id-123"}
|
117
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}, :browser_tab_id=>"tab-id-123"}
|
118
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}, :browser_tab_id=>"tab-id-123"}
|
119
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}, :browser_tab_id=>"tab-id-123"}
|
120
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
121
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
122
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
123
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}, :browser_tab_id=>"tab-id-123"}
|
124
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}, :browser_tab_id=>"tab-id-123"}
|
125
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}, :browser_tab_id=>"tab-id-123"}
|
126
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}, :browser_tab_id=>"tab-id-123"}
|
127
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}, :browser_tab_id=>"tab-id-123"}
|
128
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}, :browser_tab_id=>"tab-id-123"}
|
129
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
130
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
131
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
132
|
-
ForeignOffice.publish: {:channel=>"TestMeAgain", :object=>{:this=>"is another test"}}
|
133
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
134
|
-
ForeignOffice.publish: {:channel=>"TestMeAgain", :object=>{:this=>"is another test"}}
|
135
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
136
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMeAgain", :object=>{:this=>"is another test"}}
|
137
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
138
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is another test"}}
|
139
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
140
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
141
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}, :browser_tab_id=>"tab-id-123"}
|
142
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}, :browser_tab_id=>"tab-id-123"}
|
143
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
144
|
-
ForeignOffice.publish: {:channel=>"TestMeAgain", :object=>{:this=>"is another test"}}
|
145
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
146
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is another test"}}
|
147
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
148
|
-
ForeignOffice.publish: {:channel=>"TestMeAgain", :object=>{:this=>"is another test"}}
|
149
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
150
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMeAgain", :object=>{:this=>"is another test"}}
|
151
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
152
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
153
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
154
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
155
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}, :browser_tab_id=>"tab-id-123"}
|
156
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}, :browser_tab_id=>"tab-id-123"}
|
157
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
158
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}, :browser_tab_id=>"tab-id-123"}
|
159
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}, :browser_tab_id=>"tab-id-123"}
|
160
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
161
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}, :browser_tab_id=>"tab-id-123"}
|
162
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}, :browser_tab_id=>"tab-id-123"}
|
163
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
164
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
165
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
166
|
-
ForeignOffice.publish: {:channel=>"TestMeAgain", :object=>{:this=>"is another test"}}
|
167
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
168
|
-
ForeignOffice.publish: {:channel=>"TestMeAgain", :object=>{:this=>"is another test"}}
|
169
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
170
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMeAgain", :object=>{:this=>"is another test"}}
|
171
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
172
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is another test"}}
|
173
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
174
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
175
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
176
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
177
|
-
ForeignOffice.publish: {:channel=>"TestMeAgain", :object=>{:this=>"is another test"}}
|
178
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
179
|
-
ForeignOffice.publish: {:channel=>"TestMeAgain", :object=>{:this=>"is another test"}}
|
180
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
181
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMeAgain", :object=>{:this=>"is another test"}}
|
182
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
183
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is another test"}}
|
184
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
185
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
186
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
187
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
188
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}, :browser_tab_id=>"tab-id-123"}
|
189
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}, :browser_tab_id=>"tab-id-123"}
|
190
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}, :browser_tab_id=>"tab-id-123"}
|
191
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}, :browser_tab_id=>"tab-id-123"}
|
192
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
193
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
194
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
195
|
-
ForeignOffice.publish: {:channel=>"TestMeAgain", :object=>{:this=>"is another test"}}
|
196
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
197
|
-
ForeignOffice.publish: {:channel=>"TestMeAgain", :object=>{:this=>"is another test"}}
|
198
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
199
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMeAgain", :object=>{:this=>"is another test"}}
|
200
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
201
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is another test"}}
|
202
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
203
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}, :browser_tab_id=>"tab-id-123"}
|
204
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
205
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
206
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
207
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}, :browser_tab_id=>"tab-id-123"}
|
208
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}, :browser_tab_id=>"tab-id-123"}
|
209
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
210
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
211
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
212
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}, :browser_tab_id=>"tab-id-123"}
|
213
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}, :browser_tab_id=>"tab-id-123"}
|
214
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
215
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
216
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
217
|
-
ForeignOffice.publish: {:channel=>"TestMeAgain", :object=>{:this=>"is another test"}}
|
218
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
219
|
-
ForeignOffice.publish: {:channel=>"TestMeAgain", :object=>{:this=>"is another test"}}
|
220
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
221
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMeAgain", :object=>{:this=>"is another test"}}
|
222
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
223
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is another test"}}
|
224
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
225
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
226
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}, :browser_tab_id=>"tab-id-123"}
|
227
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}, :browser_tab_id=>"tab-id-123"}
|
228
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
229
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
230
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}, :browser_tab_id=>"tab-id-123"}
|
231
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}, :browser_tab_id=>"tab-id-123"}
|
232
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
233
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
234
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
235
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
236
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
237
|
-
ForeignOffice.publish: {:channel=>"TestMeAgain", :object=>{:this=>"is another test"}}
|
238
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
239
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is another test"}}
|
240
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
241
|
-
ForeignOffice.publish: {:channel=>"TestMeAgain", :object=>{:this=>"is another test"}}
|
242
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
243
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMeAgain", :object=>{:this=>"is another test"}}
|
244
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
245
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}, :browser_tab_id=>"tab-id-123"}
|
246
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}, :browser_tab_id=>"tab-id-123"}
|
247
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
248
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
249
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
250
|
-
ForeignOffice.publish: {:channel=>"TestMeAgain", :object=>{:this=>"is another test"}}
|
251
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
252
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is another test"}}
|
253
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
254
|
-
ForeignOffice.publish: {:channel=>"TestMeAgain", :object=>{:this=>"is another test"}}
|
255
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
256
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMeAgain", :object=>{:this=>"is another test"}}
|
257
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
258
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
259
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}, :browser_tab_id=>"tab-id-123"}
|
260
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}, :browser_tab_id=>"tab-id-123"}
|
261
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}, :browser_tab_id=>"tab-id-123"}
|
262
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}, :browser_tab_id=>"tab-id-123"}
|
263
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
264
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
265
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
266
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
267
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
268
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}, :browser_tab_id=>"tab-id-123"}
|
269
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}, :browser_tab_id=>"tab-id-123"}
|
270
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
271
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
272
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
273
|
-
ForeignOffice.publish: {:channel=>"TestMeAgain", :object=>{:this=>"is another test"}}
|
274
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
275
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMeAgain", :object=>{:this=>"is another test"}}
|
276
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
277
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is another test"}}
|
278
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
279
|
-
ForeignOffice.publish: {:channel=>"TestMeAgain", :object=>{:this=>"is another test"}}
|
280
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
281
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}, :browser_tab_id=>"tab-id-123"}
|
282
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}, :browser_tab_id=>"tab-id-123"}
|
283
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
284
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
285
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
286
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
287
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}, :browser_tab_id=>"tab-id-123"}
|
288
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}, :browser_tab_id=>"tab-id-123"}
|
289
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
290
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
291
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
292
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
293
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}, :browser_tab_id=>"tab-id-123"}
|
294
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}, :browser_tab_id=>"tab-id-123"}
|
295
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
296
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
297
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
298
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
299
|
-
ForeignOffice.publish: {:channel=>"TestMeAgain", :object=>{:this=>"is another test"}}
|
300
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
301
|
-
ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMeAgain", :object=>{:this=>"is another test"}}
|
302
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
303
|
-
ForeignOffice.publish: {:channel=>"TestMeAgain", :object=>{:this=>"is another test"}}
|
304
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
|
305
|
-
ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is another test"}}
|