foreign_office 0.5.1 → 0.5.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/assets/javascripts/foreign_office.js +1 -1
- data/lib/foreign_office/version.rb +1 -1
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/test.log +11 -0
- metadata +6 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: de4c1e4f297cfa966a4fcd1ce4a8b14cc2997a47
|
4
|
+
data.tar.gz: 932191be4265eabb527d188f1a284b3189a2a76f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4b67c980c50f518ec0c4e162911e652804b074457951a5f0241ee43699099732439dbcfe038f4af985358eec13f29efb79f6b5788aed4efd75ca394423172b76
|
7
|
+
data.tar.gz: d0b3a7c2677f7094403fa42226ac25a3e318017b1a0d4cf1a05f433dc491079783187780990ebe123766ea98510915941e7b3c6d13056fb217f8be51aaa70588
|
@@ -94,7 +94,7 @@ var ForeignOfficeListener = Class.extend({
|
|
94
94
|
var current_value = m.object[this.object_key];
|
95
95
|
if(!current_value || current_value == 'false' || current_value == 'hide'){
|
96
96
|
this.$listener.hide();
|
97
|
-
} else
|
97
|
+
} else {
|
98
98
|
this.$listener.removeClass('hidden');
|
99
99
|
this.$listener.show();
|
100
100
|
}
|
File without changes
|
@@ -0,0 +1,11 @@
|
|
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"}}
|
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.5.
|
4
|
+
version: 0.5.2
|
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: 2015-02
|
12
|
+
date: 2015-03-02 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rails
|
@@ -123,6 +123,8 @@ files:
|
|
123
123
|
- test/dummy/config/locales/en.yml
|
124
124
|
- test/dummy/config/routes.rb
|
125
125
|
- test/dummy/config/secrets.yml
|
126
|
+
- test/dummy/db/test.sqlite3
|
127
|
+
- test/dummy/log/test.log
|
126
128
|
- test/dummy/public/404.html
|
127
129
|
- test/dummy/public/422.html
|
128
130
|
- test/dummy/public/500.html
|
@@ -183,6 +185,8 @@ test_files:
|
|
183
185
|
- test/dummy/config/routes.rb
|
184
186
|
- test/dummy/config/secrets.yml
|
185
187
|
- test/dummy/config.ru
|
188
|
+
- test/dummy/db/test.sqlite3
|
189
|
+
- test/dummy/log/test.log
|
186
190
|
- test/dummy/public/404.html
|
187
191
|
- test/dummy/public/422.html
|
188
192
|
- test/dummy/public/500.html
|