carnivore-actor 0.1.8 → 0.1.10

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a5f596043cc1c8aa428a25ad4cf72814b6f3ba42
4
- data.tar.gz: 8080852a0dca2ea00f13cb47f5bff271b0b1b78a
3
+ metadata.gz: f32669bf97459a4904df0b6a71a406abbd2fd569
4
+ data.tar.gz: 32d5c3177e19a3f2d9dc6c9cf31b35ca3e0cbd39
5
5
  SHA512:
6
- metadata.gz: a0e895bb4c5e0a52f0c2c2bd9f18b4bfd4cde757f04b33938c35b545935a83f3336642b6219523a9c94bde825570811513ce26982f646d254a34e4e05b25d52f
7
- data.tar.gz: cf9e5fcce1cb7ecc3445db64405870f7f580c7dbbc802059b9eaf34c18c331a210c22afa65c83fb994b1071d4dc7d84bb0fa2ca8304422ba5eb21ec3c928e281
6
+ metadata.gz: c89af154feaf67402dd459bdff586a39e0c6fa161a9e4b8a1321f8c06000b4f58b4f6c23e2eca7580e36e7335b8da7107c8f7994ad4c453eee5de6c4f0efff34
7
+ data.tar.gz: 1e502c6f581ca6c4db162927d343eb7d124074c587f137912c4b6894de7c8f1a3121b0c9a5cbf5f3c3a8cd88242b0b0b5b5e2a757100956bde79699bec0b31fb
@@ -1,3 +1,6 @@
1
+ # v0.1.10
2
+ * Ensure data is loaded prior to conversion
3
+
1
4
  # v0.1.8
2
5
  * Dump to JSON on transmit and load from JSON on receive
3
6
 
@@ -46,7 +46,9 @@ module Carnivore
46
46
  def current_messages
47
47
  msgs = @messages.dup
48
48
  @messages.clear
49
- msgs.map(&:to_smash)
49
+ msgs.map do |s|
50
+ MultiJson.load(s).to_smash
51
+ end
50
52
  end
51
53
  end
52
54
  end
@@ -1,6 +1,6 @@
1
1
  module Carnivore
2
2
  module Actor
3
3
  # Current version of library
4
- VERSION = Gem::Version.new('0.1.8')
4
+ VERSION = Gem::Version.new('0.1.10')
5
5
  end
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: carnivore-actor
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.8
4
+ version: 0.1.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Roberts
@@ -36,8 +36,6 @@ files:
36
36
  - Gemfile.lock
37
37
  - LICENSE
38
38
  - README.md
39
- - carnivore-actor-0.1.4.gem
40
- - carnivore-actor-0.1.6.gem
41
39
  - carnivore-actor.gemspec
42
40
  - lib/carnivore-actor.rb
43
41
  - lib/carnivore-actor/actor.rb
Binary file
Binary file