wisper 1.6.0 → 1.6.1

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: 9c7ce841a6cb6f5ea98bb85ff8c61b74ed007107
4
- data.tar.gz: 57fd4d7de64134f55724e6bbf152b092312383e3
3
+ metadata.gz: 07d3725f067d12c6952f8f3dad49ee68ec0aa0a9
4
+ data.tar.gz: 643d00e3723146e6783cf1b819f16ee941663b20
5
5
  SHA512:
6
- metadata.gz: 37ab485a83aa173857edca6d8fd76911f4cda61bccf6fb3af5adb47e2503dd2a9fe182be75227d3f970d15e64933af16920319d2d47911e5e8d444d18df8ff55
7
- data.tar.gz: 8cf79f4c35a792c87c97fc83fa6dcac78bfb60a70c3e80b6f052148b31a87618b4538b165ca71ef0a9b820f38bf3ec5f413055fbd0eaef36e0bd44d482ba694f
6
+ metadata.gz: 33edefa84e8681b40ac3e3375120bf69446b4285a76b6cb4d40793289a7deaef42f839c686c7ca9246ff329a2c7c9ff71527c789581876773ea64d05539cda5e
7
+ data.tar.gz: c203cdab275836176dc0f47b6bc690967950793144b580feacdd3d2171a8905ea53fd1e0231ab8218a9d15068d4e8a6967d77172e2f56d810971efbfbdf79cd1
@@ -1 +1 @@
1
- 2.1.2
1
+ 2.2.2
@@ -6,8 +6,9 @@ rvm:
6
6
  - '1.9.3'
7
7
  - '2.0.0'
8
8
  - '2.1.2'
9
+ - '2.2.2'
9
10
  - jruby
10
- #- rbx-2
11
+ - rbx-2
11
12
  ### ALLOWED FAILURES ###
12
13
  # see how compatible we are with dev versions, but do not fail the build
13
14
  - ruby-head
@@ -1,3 +1,9 @@
1
+ ## 1.6.1 (17 Aug 2015)
2
+
3
+ Authors: Kris Leech
4
+
5
+ * Fixed Ruby warnings
6
+
1
7
  ## 1.6.0 (25 Oct 2014)
2
8
 
3
9
  Authors: Kris Leech
data/Gemfile CHANGED
@@ -2,8 +2,6 @@ source 'https://rubygems.org'
2
2
 
3
3
  gemspec
4
4
 
5
- gem 'rubysl', '~> 2.0', :platforms => :rbx
6
-
7
5
  gem 'rake', '~> 10.3.0'
8
6
  gem 'rspec', '~> 3.0.0'
9
7
  gem 'coveralls', require: false
@@ -16,7 +16,7 @@ module Wisper
16
16
  private
17
17
 
18
18
  def name(object)
19
- id_method = %w(id uuid key object_id).find { |id_method| object.respond_to?(id_method) }
19
+ id_method = %w(id uuid key object_id).find { |possibility| object.respond_to?(possibility) }
20
20
  id = object.send(id_method)
21
21
  class_name = object.class == Class ? object.name : object.class.name
22
22
  "#{class_name}##{id}"
@@ -15,7 +15,7 @@ module Wisper
15
15
  class Broadcasters
16
16
  extend Forwardable
17
17
 
18
- def_delegators :@data, :fetch, :[], :[]=, :empty?, :include?, :clear
18
+ def_delegators :@data, :[], :[]=, :empty?, :include?, :clear
19
19
 
20
20
  def initialize
21
21
  @data = {}
@@ -1,3 +1,3 @@
1
1
  module Wisper
2
- VERSION = "1.6.0"
2
+ VERSION = "1.6.1"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wisper
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.0
4
+ version: 1.6.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kris Leech
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-10-25 00:00:00.000000000 Z
11
+ date: 2015-08-17 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: pub/sub for Ruby objects
14
14
  email:
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
73
73
  version: '0'
74
74
  requirements: []
75
75
  rubyforge_project:
76
- rubygems_version: 2.2.2
76
+ rubygems_version: 2.4.5
77
77
  signing_key:
78
78
  specification_version: 4
79
79
  summary: pub/sub for Ruby objects