kw_apn 0.4.beta.2 → 0.4.beta.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/VERSION +1 -1
  2. data/lib/feedback_reader.rb +1 -1
  3. data/lib/sender.rb +1 -1
  4. metadata +3 -3
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.4.beta.2
1
+ 0.4.beta.3
@@ -10,7 +10,7 @@ module KwAPN
10
10
  def read
11
11
  records ||= []
12
12
  begin
13
- @ssl = connect(@host, @port, KwAPN::Config.options)
13
+ @ssl = connect(@host, @port)
14
14
  while record = @ssl.read(38)
15
15
  feedback = record.strip.unpack('NnH*')
16
16
  records << feedback[2].scan(/.{0,8}/).join(' ').strip
data/lib/sender.rb CHANGED
@@ -44,7 +44,7 @@ private
44
44
 
45
45
  def start_threads(notifications, index=0)
46
46
  @last_error_index = nil
47
- @ssl = connect(@host, @port, KwAPN::Config.options)
47
+ @ssl = connect(@host, @port)
48
48
  if @ssl
49
49
  @watch_thread = Thread.new do
50
50
  perform_watch()
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kw_apn
3
3
  version: !ruby/object:Gem::Version
4
- hash: 62196343
4
+ hash: 62196341
5
5
  prerelease: true
6
6
  segments:
7
7
  - 0
8
8
  - 4
9
9
  - beta
10
- - 2
11
- version: 0.4.beta.2
10
+ - 3
11
+ version: 0.4.beta.3
12
12
  platform: ruby
13
13
  authors:
14
14
  - Jonathan Cichon