lws 0.3.0.beta6 → 0.3.0

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: 936e79377909cb5ed3eee25845dfa377e6fb2dd1
4
- data.tar.gz: 810bfb46d0eb26b920153bee5b281f1cd218f527
3
+ metadata.gz: d4d24fc79d5555e72ba3af5da5439c6c4e9aebf9
4
+ data.tar.gz: 0603789f051ab178c2840b14fbead15000ce9d01
5
5
  SHA512:
6
- metadata.gz: edf994ec0f1d828c91c9e0144b6689333afa988fc8774748401e104f0d2bb9ecd6e07b5057a43dc336764f5ff497df3990a21275840283da3e560ace1cca6f92
7
- data.tar.gz: 0e998a269e92cc77d1d8bdb7d7626a503ca50523d41d63b18805105cc1324c2084c64c59ca77464e84d2713460f29c7cac86d172b8c6b3ffeffde33dd089b16d
6
+ metadata.gz: 99bb155c1ef6ae0f9ce207683e44ac2b039cef9320c99aa627ee9ab6dab26f4cca181bf21f39b55530b84647644589ca6dc3ba976745ce531ee94d08df3e931b
7
+ data.tar.gz: 78dafef824eacbfedfc98785b7c673d4773f2c9f49c82fc505805059dd07ff7621f858743c4f3dcb8f6cb6ffe56d6088a476632b979b4bc30814a2a0d9502b81
data/lib/lws/version.rb CHANGED
@@ -12,6 +12,6 @@ module LWS
12
12
 
13
13
  # The LWS library version.
14
14
  # @note This is not the API version!
15
- VERSION = '0.3.0.beta6'
15
+ VERSION = '0.3.0'
16
16
 
17
17
  end
@@ -28,7 +28,7 @@ class BrokenTokenAuthenticator < Faraday::Middleware
28
28
 
29
29
  end
30
30
 
31
- class TestAPITokenMiddleware < MiniTest::Unit::TestCase
31
+ class TestAPITokenMiddleware < MiniTest::Test
32
32
 
33
33
  def test_working_token_authenticator
34
34
  # Configure the working token authenticator instead of the test API token
data/test/test_auth.rb CHANGED
@@ -10,7 +10,7 @@
10
10
 
11
11
  require "test_helper"
12
12
 
13
- class TestAuthAccount < MiniTest::Unit::TestCase
13
+ class TestAuthAccount < MiniTest::Test
14
14
 
15
15
  include LWS::Auth
16
16
 
@@ -37,7 +37,7 @@ class TestAuthAccount < MiniTest::Unit::TestCase
37
37
 
38
38
  end
39
39
 
40
- class TestAuthApp < MiniTest::Unit::TestCase
40
+ class TestAuthApp < MiniTest::Test
41
41
 
42
42
  include LWS::Auth
43
43
 
@@ -53,7 +53,7 @@ class TestAuthApp < MiniTest::Unit::TestCase
53
53
 
54
54
  end
55
55
 
56
- class TestAuthCompany < MiniTest::Unit::TestCase
56
+ class TestAuthCompany < MiniTest::Test
57
57
 
58
58
  include LWS::Auth
59
59
 
@@ -75,7 +75,7 @@ class TestAuthCompany < MiniTest::Unit::TestCase
75
75
 
76
76
  end
77
77
 
78
- class TestAuthToken < MiniTest::Unit::TestCase
78
+ class TestAuthToken < MiniTest::Test
79
79
 
80
80
  include LWS::Auth
81
81
 
data/test/test_caching.rb CHANGED
@@ -10,7 +10,7 @@
10
10
 
11
11
  require "test_helper"
12
12
 
13
- class TestCaching < MiniTest::Unit::TestCase
13
+ class TestCaching < MiniTest::Test
14
14
 
15
15
  # Class used to check if data is read/written to the cache
16
16
  class CacheTest
data/test/test_generic.rb CHANGED
@@ -10,7 +10,7 @@
10
10
 
11
11
  require "test_helper"
12
12
 
13
- class TestGenericConfiguration < MiniTest::Unit::TestCase
13
+ class TestGenericConfiguration < MiniTest::Test
14
14
 
15
15
  # Generic class needs to be accessed under some kind of app
16
16
  include LWS::Auth
@@ -28,7 +28,7 @@ class TestGenericConfiguration < MiniTest::Unit::TestCase
28
28
 
29
29
  end
30
30
 
31
- class TestGenericTask < MiniTest::Unit::TestCase
31
+ class TestGenericTask < MiniTest::Test
32
32
 
33
33
  # Generic class needs to be accessed under some kind of app
34
34
  include LWS::Auth
data/test/test_logger.rb CHANGED
@@ -10,7 +10,7 @@
10
10
 
11
11
  require "test_helper"
12
12
 
13
- class TestLogger < MiniTest::Unit::TestCase
13
+ class TestLogger < MiniTest::Test
14
14
 
15
15
  def test_working_logger
16
16
  log = StringIO.new
data/test/test_maps.rb CHANGED
@@ -10,7 +10,7 @@
10
10
 
11
11
  require "test_helper"
12
12
 
13
- class TestMapsMap < MiniTest::Unit::TestCase
13
+ class TestMapsMap < MiniTest::Test
14
14
 
15
15
  include LWS::Maps
16
16
 
@@ -31,7 +31,7 @@ class TestMapsMap < MiniTest::Unit::TestCase
31
31
 
32
32
  end
33
33
 
34
- class TestMapsMap < MiniTest::Unit::TestCase
34
+ class TestMapsMap < MiniTest::Test
35
35
 
36
36
  include LWS::Maps
37
37
 
@@ -10,7 +10,7 @@
10
10
 
11
11
  require "test_helper"
12
12
 
13
- class TestPresencePerson < MiniTest::Unit::TestCase
13
+ class TestPresencePerson < MiniTest::Test
14
14
 
15
15
  include LWS::Presence
16
16
 
@@ -31,7 +31,7 @@ class TestPresencePerson < MiniTest::Unit::TestCase
31
31
 
32
32
  end
33
33
 
34
- class TestPresenceLocation < MiniTest::Unit::TestCase
34
+ class TestPresenceLocation < MiniTest::Test
35
35
 
36
36
  include LWS::Presence
37
37
 
@@ -10,7 +10,7 @@
10
10
 
11
11
  require "test_helper"
12
12
 
13
- class TestStubbing < MiniTest::Unit::TestCase
13
+ class TestStubbing < MiniTest::Test
14
14
 
15
15
  def setup
16
16
  # Redo the LWS setup with cache
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lws
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0.beta6
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - LeftClick B.V.
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-11-04 00:00:00.000000000 Z
11
+ date: 2016-12-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday_middleware
@@ -178,9 +178,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
178
178
  version: '0'
179
179
  required_rubygems_version: !ruby/object:Gem::Requirement
180
180
  requirements:
181
- - - ">"
181
+ - - ">="
182
182
  - !ruby/object:Gem::Version
183
- version: 1.3.1
183
+ version: '0'
184
184
  requirements: []
185
185
  rubyforge_project:
186
186
  rubygems_version: 2.5.1