fluxx 0.1.4 → 0.1.5

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
  SHA256:
3
- metadata.gz: b7306e15fcba5fde09aed63599751442c8162998186585411834b286d4e19103
4
- data.tar.gz: 6d6f064e02a287039a07e290a71af9d6e1de255d9067fcb6eaae2bbf66c92fe8
3
+ metadata.gz: 420e7f82e4699290d64192fc0fb4cecaecbd23800d08daf2bd5c9341dc56c818
4
+ data.tar.gz: 71b9cf950c0cd566b0a5afc1efa42aac4a43ce4416c17254d8579f168b38773c
5
5
  SHA512:
6
- metadata.gz: b3ea664c5026d3d8f075b58ec0b187f4a5913c5f991ecba45ffad7cb8f4de6dec20d77e9053545b2b22c98cf568124e3f280691b4cac3a9ef910997cd4467d17
7
- data.tar.gz: 5b16ae1fe12be892860e6e50d09db1b17715e0fc49b929433c4a7d004a5b2aa1d1bb7f3b21100a61838c03fce2428516b8a0cf8ffbd29bd7928f36d1ef419e74
6
+ metadata.gz: f48ba1fe98079918612287a1ce513965e992a73b350dc2e6d7160f7c3aef06859f9e3f1ce6992ded39e4044bd7bd6bd05602b2a3f04c89407f334bf3707e3c3f
7
+ data.tar.gz: 37aff928557fabd47c684edca1d0f5bca337e98a7c1cc649666cd881d95772488876b3944268ca766651a5f020ac385b778614155b87e39e39d3e320a7ff7309
@@ -52,3 +52,6 @@ Style/MutableConstant:
52
52
 
53
53
  Style/WordArray:
54
54
  Enabled: false
55
+
56
+ RSpec/FilePath:
57
+ Enabled: false
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- fluxx (0.1.0)
4
+ fluxx (0.1.5)
5
5
  http-rest_client
6
6
 
7
7
  GEM
@@ -17,18 +17,23 @@ GEM
17
17
  domain_name (0.5.20190701)
18
18
  unf (>= 0.0.5, < 1.0.0)
19
19
  ffaker (2.13.0)
20
+ ffi (1.11.2)
21
+ ffi-compiler (1.0.1)
22
+ ffi (>= 1.0.0)
23
+ rake
20
24
  hashdiff (1.0.0)
21
- http (4.1.1)
25
+ http (4.2.0)
22
26
  addressable (~> 2.3)
23
27
  http-cookie (~> 1.0)
24
28
  http-form_data (~> 2.0)
25
- http_parser.rb (~> 0.6.0)
29
+ http-parser (~> 1.2.0)
26
30
  http-cookie (1.0.3)
27
31
  domain_name (~> 0.5)
28
32
  http-form_data (2.1.1)
33
+ http-parser (1.2.1)
34
+ ffi-compiler (>= 1.0, < 2.0)
29
35
  http-rest_client (0.1.1)
30
36
  http
31
- http_parser.rb (0.6.0)
32
37
  jaro_winkler (1.5.3)
33
38
  json (2.2.0)
34
39
  parallel (1.18.0)
@@ -17,11 +17,11 @@ module Fluxx
17
17
  endpoint ENV['FLUXX_INSTANCE_URL']
18
18
  content_type 'application/json'
19
19
 
20
- # Defines the client endpoint. Thread-safe.
20
+ # Defines the client endpoint, thread-safe
21
21
  #
22
22
  # @param value [String] the endpoint URI.
23
23
  # @return [String]
24
- def endpoint(value = nil)
24
+ def self.endpoint(value = nil)
25
25
  return super(value) unless value.nil?
26
26
 
27
27
  Thread.current.thread_variable_get(:FLUXX_INSTANCE_URL) || super
@@ -1,3 +1,3 @@
1
1
  module Fluxx
2
- VERSION = '0.1.4'
2
+ VERSION = '0.1.5'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fluxx
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stas SUȘCOV
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2019-11-05 00:00:00.000000000 Z
12
+ date: 2019-11-13 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: http-rest_client