give-live-back-to-object 0.1.1 → 0.1.2
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 +4 -4
- data/README.rdoc +2 -2
- data/lib/give-live-back-to-object.rb +4 -3
- metadata +4 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bc09dfafc499a57de7b09e0a36eb4ca11f6736d7
|
|
4
|
+
data.tar.gz: e7a2e4ccb5b80579cf2164c27d7d5aa5ead25966
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3a2f1aa527225fbc16955f9b122be3136ee645b0d061a610b22ca596a71dc7127b336ba40b9f142eb4af5ce8cacf393ce3fb27866e4bf8a49556230fadac6dad
|
|
7
|
+
data.tar.gz: c4a6c20225466ceefa8eb841027908b7a5a29d6f5e387c1bcd2fe156c1c9ece406ce2c077bd1f39f73d3200392e1ee240e50eb2e1ffdbe3127ea807bc8cb7d3a
|
data/README.rdoc
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
=
|
|
1
|
+
= Give Live Back To Object
|
|
2
2
|
|
|
3
3
|
Description goes here.
|
|
4
4
|
|
|
5
|
-
== Contributing to
|
|
5
|
+
== Contributing to Give Live Back To Object
|
|
6
6
|
|
|
7
7
|
* Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet.
|
|
8
8
|
* Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it.
|
|
@@ -30,9 +30,10 @@ module GiveLive
|
|
|
30
30
|
return lambda do |*args|
|
|
31
31
|
begin
|
|
32
32
|
yield(*args)
|
|
33
|
-
rescue
|
|
34
|
-
|
|
35
|
-
|
|
33
|
+
rescue => e
|
|
34
|
+
message = "[ERROR IN FAYE THREAD] #{e.message}"
|
|
35
|
+
message << e.backtrace.join("\n")
|
|
36
|
+
defined?(logger) ? logger.error(message) : puts(message)
|
|
36
37
|
end
|
|
37
38
|
end
|
|
38
39
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: give-live-back-to-object
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Mikhail Pospelov
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-
|
|
11
|
+
date: 2014-02-05 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: faye
|
|
@@ -122,9 +122,8 @@ dependencies:
|
|
|
122
122
|
- - '>='
|
|
123
123
|
- !ruby/object:Gem::Version
|
|
124
124
|
version: '0'
|
|
125
|
-
description: "\n This Gem is build on top faye. \n It has some easy to use
|
|
126
|
-
like faye_render, faye_subscribe, faye_publish.\n
|
|
127
|
-
behavior.\n "
|
|
125
|
+
description: "\n This Gem is build on top of faye. \n It has some easy to use
|
|
126
|
+
helpers like faye_render, faye_subscribe, faye_publish.\n "
|
|
128
127
|
email: mixan946@yandex.ru
|
|
129
128
|
executables: []
|
|
130
129
|
extensions: []
|