ldclient-rb 2.1.0 → 2.1.4
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 +4 -4
- data/CHANGELOG.md +4 -0
- data/circle.yml +1 -1
- data/ldclient-rb.gemspec +6 -1
- data/lib/ldclient-rb/version.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cb564090d1078d3f5c3f11fab20e32221e90bb40
|
|
4
|
+
data.tar.gz: 22272fd869d0f0a7452aec3e1208df98cf733690
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5953bf8bdd7b770c46560279ce0ee869a52eecb7cf63c1fb82de94bf1ae0f7d88208bb374562e58747bb8433b0e67175b64060c177684e06a1e2d01805711381
|
|
7
|
+
data.tar.gz: 82d0f77f2ab6409960e59599a91c4b0541e48f1d56c219c4f8623170b05b872c32f7dd81d30a21bc00904759af9ab97521b06623a0e57c69df42d4665aa877f1
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to the LaunchDarkly Ruby SDK will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org).
|
|
4
4
|
|
|
5
|
+
## [2.1.1] - 2017-03-22
|
|
6
|
+
## Changed
|
|
7
|
+
- Bumped nio4r to 2.0
|
|
8
|
+
|
|
5
9
|
## [2.0.6] - 2017-02-10
|
|
6
10
|
## Changed
|
|
7
11
|
- Improved handling of http status codes that may not be integers.
|
data/circle.yml
CHANGED
data/ldclient-rb.gemspec
CHANGED
|
@@ -33,7 +33,12 @@ Gem::Specification.new do |spec|
|
|
|
33
33
|
spec.add_runtime_dependency "hashdiff", "~> 0.2"
|
|
34
34
|
spec.add_runtime_dependency "ld-celluloid-eventsource", "~> 0.9.0"
|
|
35
35
|
spec.add_runtime_dependency "celluloid", "~> 0.18.0.pre" # transitive dep; specified here for more control
|
|
36
|
-
|
|
36
|
+
|
|
37
|
+
if RUBY_VERSION >= '2.2.2'
|
|
38
|
+
spec.add_runtime_dependency "nio4r", "< 3" # for maximum ruby version compatibility.
|
|
39
|
+
else
|
|
40
|
+
spec.add_runtime_dependency "nio4r", "~> 1.1" # for maximum ruby version compatibility.
|
|
41
|
+
end
|
|
37
42
|
|
|
38
43
|
spec.add_runtime_dependency "waitutil", "0.2"
|
|
39
44
|
end
|
data/lib/ldclient-rb/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ldclient-rb
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.1.
|
|
4
|
+
version: 2.1.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- LaunchDarkly
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-03-
|
|
11
|
+
date: 2017-03-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -196,16 +196,16 @@ dependencies:
|
|
|
196
196
|
name: nio4r
|
|
197
197
|
requirement: !ruby/object:Gem::Requirement
|
|
198
198
|
requirements:
|
|
199
|
-
- - "
|
|
199
|
+
- - "<"
|
|
200
200
|
- !ruby/object:Gem::Version
|
|
201
|
-
version: '
|
|
201
|
+
version: '3'
|
|
202
202
|
type: :runtime
|
|
203
203
|
prerelease: false
|
|
204
204
|
version_requirements: !ruby/object:Gem::Requirement
|
|
205
205
|
requirements:
|
|
206
|
-
- - "
|
|
206
|
+
- - "<"
|
|
207
207
|
- !ruby/object:Gem::Version
|
|
208
|
-
version: '
|
|
208
|
+
version: '3'
|
|
209
209
|
- !ruby/object:Gem::Dependency
|
|
210
210
|
name: waitutil
|
|
211
211
|
requirement: !ruby/object:Gem::Requirement
|