lightstreamer 0.12 → 0.13

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 979c7fa279f1b55d71b9525b8a8f5b67aaf1c45e
4
- data.tar.gz: 15a5a203a5012063ab4b795d60486bc7c9882cad
3
+ metadata.gz: 884016c91ecbd94e590b735c85f022138116e56a
4
+ data.tar.gz: e0c47b6598e2b737825d2ef80f5a36f38f96b671
5
5
  SHA512:
6
- metadata.gz: 8af68aba835e410dd291393dc187a1ac2af83d9406dfb34278c0ec2d5ecbb24cbb41cea1cfbe198407a21e47e1229a9ded930ec3ed394539f7caa63caf2dbc64
7
- data.tar.gz: 8246eea6cf6d897232791b5a225e5d75f97bf954ca5c0742c63f86ac75225c657ee119ea5c1ea0b6308b68ef801e4f1bfb517c172d5a85b5372ab479ef3d4021
6
+ metadata.gz: 302c68e601c31e031625a494a2905e2d47af4363b46c3b03c7bf55d7c30aaba66c43bdaba2e27b9bc54e9b8a6e5c6b8057e3d4907fb7d8f21ddf5414d983d19e
7
+ data.tar.gz: 81fef502579689a0c7f2c5b97c8f6fbd4d1d55963aa9e01c9ae33aee82424ce8a5004eed9790371cfaecc919dcd29eea9ee10157164975a275bd37a9287136d0
@@ -1,5 +1,9 @@
1
1
  # Lightstreamer Changelog
2
2
 
3
+ ### 0.13 — October 19, 2016
4
+
5
+ - Fixed documentation warnings found by Inch CI
6
+
3
7
  ### 0.12 — August 20, 2016
4
8
 
5
9
  - Added `Lightstreamer::Session#remove_subscriptions`
@@ -1,9 +1,9 @@
1
1
  require 'thread'
2
+ require 'uri'
2
3
  require 'weakref'
3
4
 
4
5
  require 'excon'
5
6
  require 'thor'
6
- require 'uri'
7
7
 
8
8
  require 'lightstreamer/cli/main'
9
9
  require 'lightstreamer/cli/commands/stream_command'
@@ -33,10 +33,10 @@ module Lightstreamer
33
33
  # Whether polling mode is enabled. By default long-running HTTP connections will be used to stream incoming data,
34
34
  # but if polling is enabled then repeated short polling requests will be used instead. Polling may work better if
35
35
  # there is intermediate buffering on the network that affects timely delivery of data on long-running streaming
36
- # connections. The polling mode for a connected session can be changed by setting {#polling_enabled} and then
36
+ # connections. Polling mode can be turned off and on for a connected session by setting {#polling_enabled} and then
37
37
  # calling {#force_rebind}.
38
38
  #
39
- # @return [Boolean]
39
+ # @return [Boolean] whether polling mode is enabled.
40
40
  attr_accessor :polling_enabled
41
41
 
42
42
  # Initializes this new Lightstreamer session with the passed options.
@@ -1,4 +1,4 @@
1
1
  module Lightstreamer
2
2
  # The version of this gem.
3
- VERSION = '0.12'.freeze
3
+ VERSION = '0.13'.freeze
4
4
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lightstreamer
3
3
  version: !ruby/object:Gem::Version
4
- version: '0.12'
4
+ version: '0.13'
5
5
  platform: ruby
6
6
  authors:
7
7
  - Richard Viney
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-08-20 00:00:00.000000000 Z
11
+ date: 2016-10-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: excon
@@ -142,14 +142,14 @@ dependencies:
142
142
  requirements:
143
143
  - - "~>"
144
144
  - !ruby/object:Gem::Version
145
- version: '0.42'
145
+ version: '0.44'
146
146
  type: :development
147
147
  prerelease: false
148
148
  version_requirements: !ruby/object:Gem::Requirement
149
149
  requirements:
150
150
  - - "~>"
151
151
  - !ruby/object:Gem::Version
152
- version: '0.42'
152
+ version: '0.44'
153
153
  - !ruby/object:Gem::Dependency
154
154
  name: yard
155
155
  requirement: !ruby/object:Gem::Requirement