websocket-rack 0.1.3 → 0.1.3.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.
@@ -5,7 +5,7 @@ module Rack
5
5
  class << self
6
6
  def new(*args)
7
7
  if args.last == {:real_run => true}
8
- args.shift
8
+ args.pop
9
9
  super(*args)
10
10
  else
11
11
  proc do |env|
@@ -2,7 +2,7 @@ require 'rack'
2
2
 
3
3
  module Rack
4
4
  module WebSocket
5
- VERSION = "0.1.3"
5
+ VERSION = "0.1.3.1"
6
6
  ROOT_PATH = ::File.expand_path(::File.dirname(__FILE__))
7
7
 
8
8
  class WebSocketError < RuntimeError; end
metadata CHANGED
@@ -1,13 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: websocket-rack
3
3
  version: !ruby/object:Gem::Version
4
- hash: 29
4
+ hash: 73
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
9
  - 3
10
- version: 0.1.3
10
+ - 1
11
+ version: 0.1.3.1
11
12
  platform: ruby
12
13
  authors:
13
14
  - Bernard Potocki