foreign_office 0.16.0 → 0.16.1

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: c2de91fc96446054ec1140b1abe152bc1776e9cf
4
- data.tar.gz: 1b99de5a4721b53894230d6cd47046894c1203ad
3
+ metadata.gz: 90cb99a1611c7947ca0cbeb56c27834a3177dd2c
4
+ data.tar.gz: 05daeb13bd6e6d67726ca6a18d7640f17f86e301
5
5
  SHA512:
6
- metadata.gz: af62c31292bca5b0f6c2054cee6a5bddf9f12b022987efe8feb533cccd5836c3ea90c8caec051c8c3e7d80200dd5f0bfabbd1f9c86ae9b14d77e9ff2e52502c6
7
- data.tar.gz: f4c4a53a322aa615716d86c8ddbc8705d176b109a6ef187bcdedab3af05bb74bd0ae22026c34b1c95b7bda5397f81e7bea003552ee06c1bb85c7b83856ba1cb0
6
+ metadata.gz: 809ec8eff25728880c2d5a3efc680998fd201da84edb9cc77bc65b083f22b626dfed0822b214d8755e83f3b0d6e842a33478da409d2d2500cb3ce28a3f6afcd2
7
+ data.tar.gz: 3752170d7e55b9a6dcd8fc7163d99f70a346a57c0d541c8e43a818d24dd11e656224a2422b95701ddc6add7f42e21f9b1d0fb866d65349342fbd591fff3f4070
@@ -185,7 +185,7 @@ var ForeignOfficeListener = Class.extend({
185
185
  listener.unMaskMe()
186
186
  })
187
187
  }
188
- if (message_value == true) {
188
+ if (m.object[this.delete_key] == true) {
189
189
  $listener.remove();
190
190
  }
191
191
  }else if(this.reveal_hide){
@@ -1,3 +1,3 @@
1
1
  module ForeignOffice
2
- VERSION = "0.16.0"
2
+ VERSION = "0.16.1"
3
3
  end
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.0
4
+ version: 0.16.1
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-04-30 00:00:00.000000000 Z
12
+ date: 2018-05-02 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails
@@ -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
@@ -157,47 +155,45 @@ required_rubygems_version: !ruby/object:Gem::Requirement
157
155
  version: '0'
158
156
  requirements: []
159
157
  rubyforge_project:
160
- rubygems_version: 2.6.12
158
+ rubygems_version: 2.6.13
161
159
  signing_key:
162
160
  specification_version: 4
163
161
  summary: A light framework that provides functionality for listeners on web clients
164
162
  and publishers on ruby servers. Keep your business logic on the server whenever
165
163
  you can!
166
164
  test_files:
167
- - test/dummy/app/controllers/application_controller.rb
168
- - test/dummy/app/views/layouts/application.html.erb
169
165
  - test/dummy/app/assets/javascripts/application.js
170
166
  - test/dummy/app/assets/stylesheets/application.css
167
+ - test/dummy/app/controllers/application_controller.rb
171
168
  - test/dummy/app/helpers/application_helper.rb
172
- - test/dummy/bin/rake
169
+ - test/dummy/app/views/layouts/application.html.erb
173
170
  - test/dummy/bin/bundle
174
171
  - test/dummy/bin/rails
175
- - test/dummy/config/secrets.yml
176
- - test/dummy/config/routes.rb
177
- - test/dummy/config/locales/en.yml
178
- - test/dummy/config/environments/production.rb
179
- - test/dummy/config/environments/development.rb
180
- - test/dummy/config/environments/test.rb
181
- - test/dummy/config/environment.rb
172
+ - test/dummy/bin/rake
182
173
  - test/dummy/config/application.rb
183
- - test/dummy/config/database.yml
184
174
  - test/dummy/config/boot.rb
175
+ - test/dummy/config/database.yml
176
+ - test/dummy/config/environment.rb
177
+ - test/dummy/config/environments/development.rb
178
+ - test/dummy/config/environments/production.rb
179
+ - test/dummy/config/environments/test.rb
180
+ - test/dummy/config/initializers/assets.rb
185
181
  - test/dummy/config/initializers/backtrace_silencers.rb
186
- - test/dummy/config/initializers/mime_types.rb
182
+ - test/dummy/config/initializers/cookies_serializer.rb
187
183
  - test/dummy/config/initializers/filter_parameter_logging.rb
184
+ - test/dummy/config/initializers/inflections.rb
185
+ - test/dummy/config/initializers/mime_types.rb
188
186
  - test/dummy/config/initializers/session_store.rb
189
187
  - test/dummy/config/initializers/wrap_parameters.rb
190
- - test/dummy/config/initializers/assets.rb
191
- - test/dummy/config/initializers/cookies_serializer.rb
192
- - test/dummy/config/initializers/inflections.rb
188
+ - test/dummy/config/locales/en.yml
189
+ - test/dummy/config/routes.rb
190
+ - test/dummy/config/secrets.yml
193
191
  - test/dummy/config.ru
194
- - test/dummy/Rakefile
195
- - test/dummy/public/favicon.ico
192
+ - test/dummy/public/404.html
196
193
  - test/dummy/public/422.html
197
194
  - test/dummy/public/500.html
198
- - test/dummy/public/404.html
199
- - test/dummy/db/test.sqlite3
200
- - test/dummy/log/test.log
195
+ - test/dummy/public/favicon.ico
196
+ - test/dummy/Rakefile
201
197
  - test/dummy/README.rdoc
202
- - test/test_helper.rb
203
198
  - test/foreign_office_test.rb
199
+ - test/test_helper.rb
File without changes
@@ -1,33 +0,0 @@
1
- ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
2
- ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is another 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! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
8
- ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMeAgain", :object=>{:this=>"is another test"}}
9
- ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
10
- ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
11
- ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
12
- ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
13
- ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
14
- ForeignOffice.publish: {:channel=>"TestMeAgain", :object=>{:this=>"is another test"}}
15
- ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
16
- ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is another test"}}
17
- ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
18
- ForeignOffice.publish: {:channel=>"TestMeAgain", :object=>{:this=>"is another test"}}
19
- ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
20
- ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMeAgain", :object=>{:this=>"is another test"}}
21
- ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
22
- ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
23
- ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
24
- ForeignOffice#publish! attempt: 1 message: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
25
- ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
26
- ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
27
- ForeignOffice.publish: {:channel=>"TestMeAgain", :object=>{:this=>"is another test"}}
28
- ForeignOffice.publish: {:channel=>"TestMe", :object=>{:this=>"is a test"}}
29
- ForeignOffice.publish: {:channel=>"TestMe", :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"}}