bizm 1.0.0 → 2.0.0
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/lib/bizm.rb +2 -2
- metadata +3 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a62657b6204e012d6ac7084e051fdce467de6e5adfcb005e31241a24ef1f8a30
|
4
|
+
data.tar.gz: ce52dace8fa8981be1dce4e2c6b466a96063bd3ab6005eed04786f8f0b4b17e6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 056176d7cc847f9c09704e51941bf616135e68251d92306ae316aa787ed49554939e79ea5b65cd12a5581ce0f3a2a09841265f4f47a533611dd5b32e4f526274
|
7
|
+
data.tar.gz: 99771de02a043d66d8a6127bc21969b273c6bd76502e4b126877caafeb0c5c675425fb237c093d897ca37c80b84ab9c01100c992245fd94c4975824b91b44762
|
data/lib/bizm.rb
CHANGED
@@ -59,7 +59,7 @@ class BizM
|
|
59
59
|
|
60
60
|
response = http.request(request)
|
61
61
|
|
62
|
-
return response
|
62
|
+
return JSON.parse(response.body[0])
|
63
63
|
end
|
64
64
|
|
65
65
|
def cancel(
|
@@ -83,6 +83,6 @@ class BizM
|
|
83
83
|
|
84
84
|
response = http.request(request)
|
85
85
|
|
86
|
-
return response
|
86
|
+
return JSON.parse(response.body)
|
87
87
|
end
|
88
88
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bizm
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 2.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Soohyeon Lee
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2022-01-28 00:00:00.000000000 Z
|
13
13
|
dependencies: []
|
14
14
|
description: BizM client for ruby sending Kakao AlimTalk
|
15
15
|
email: lsh59727@gmail.com
|
@@ -37,8 +37,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
37
37
|
- !ruby/object:Gem::Version
|
38
38
|
version: '0'
|
39
39
|
requirements: []
|
40
|
-
|
41
|
-
rubygems_version: 2.7.6
|
40
|
+
rubygems_version: 3.0.6
|
42
41
|
signing_key:
|
43
42
|
specification_version: 4
|
44
43
|
summary: BizM client for ruby
|