rubypitaya 2.13.1 → 2.14.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/bin/rubypitaya +1 -1
- data/lib/rubypitaya/app-template/Gemfile +1 -1
- data/lib/rubypitaya/app-template/Gemfile.lock +2 -2
- data/lib/rubypitaya/app-template/features/player.feature +5 -5
- data/lib/rubypitaya/app-template/features/step_definitions/rubypitaya_steps.rb +2 -2
- data/lib/rubypitaya/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ef2357fb173bf33d95bf3d254c4eb6ff8943c420372dd4abccf1a0c40a5d43d8
|
4
|
+
data.tar.gz: c0c66d8b81f67c8081d0ac0fa3dff7f9036e8e54cc3ff4e3ea370427cf067adb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3568a02b718ec1b9f60063c01e1ef69256fdd45c3d4907a017ae668326e9486aff1f638e11abb068bd5e446efb93cdd4eaa737843a366609da3e7bf807950ef3
|
7
|
+
data.tar.gz: 9de2d78d09e2a4aaf15df8e6d5f269a16aedd798ee72083e83bd537bf941d2d954cc0f1910e7234b12367827e544ac97f2c62926bc4d5e6aac27ab4628d60321
|
data/bin/rubypitaya
CHANGED
@@ -84,7 +84,7 @@ GEM
|
|
84
84
|
rspec-support (~> 3.8.0)
|
85
85
|
rspec-support (3.8.3)
|
86
86
|
ruby2_keywords (0.0.2)
|
87
|
-
rubypitaya (2.
|
87
|
+
rubypitaya (2.14.0)
|
88
88
|
activerecord (= 6.0.2)
|
89
89
|
etcdv3 (= 0.10.2)
|
90
90
|
eventmachine (= 1.2.7)
|
@@ -123,7 +123,7 @@ DEPENDENCIES
|
|
123
123
|
listen (= 3.2.1)
|
124
124
|
pry (= 0.12.2)
|
125
125
|
rspec (= 3.8.0)
|
126
|
-
rubypitaya (= 2.
|
126
|
+
rubypitaya (= 2.14.0)
|
127
127
|
|
128
128
|
BUNDLED WITH
|
129
129
|
1.17.2
|
@@ -19,11 +19,11 @@ Feature: Player
|
|
19
19
|
Then server should response the following json:
|
20
20
|
"""
|
21
21
|
{
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
22
|
+
"code": "RP-200",
|
23
|
+
"data": {
|
24
|
+
"name": "Someone",
|
25
|
+
"gold": 15,
|
26
|
+
"userId": "00000000-0000-0000-0000-000000000001"
|
27
27
|
}
|
28
28
|
}
|
29
29
|
"""
|
@@ -9,8 +9,8 @@ Given(/^[Ss]erver should response ["'](.+)["'] as ["'](.+)["']$/) do |response_k
|
|
9
9
|
end
|
10
10
|
|
11
11
|
Given(/^[Ss]erver should response the following json[:]*$/) do |expected_json|
|
12
|
-
expected_json =
|
13
|
-
response_json = @handler_helper.response
|
12
|
+
expected_json = JSON.generate(JSON.parse(expected_json.strip))
|
13
|
+
response_json = JSON.generate(@handler_helper.response)
|
14
14
|
|
15
15
|
expect(response_json).to eq(expected_json)
|
16
16
|
end
|
data/lib/rubypitaya/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rubypitaya
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.14.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Luciano Prestes Cavalcanti
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-01-
|
11
|
+
date: 2021-01-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: pg
|