justcall_ruby 0.1.0 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +9 -0
- data/Gemfile.lock +1 -1
- data/lib/justcall_ruby/api.rb +1 -2
- data/lib/justcall_ruby/response.rb +1 -1
- data/lib/justcall_ruby/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: b5505b284204177aa96df65c35ffef3f3bbeb5dd7c28469caa9efe130a91d050
|
4
|
+
data.tar.gz: eb361340380864668a4cf9a012efcd7699765d6ba152850d6985af0d55675e5b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b7a2978ecf9fb0abd5f3d6b491920e297949a3297a2ba804698635697c72dc7c76f406ad56961a7a46065cc764a81a0b0e4931e111e88c3460bef271376fe19d
|
7
|
+
data.tar.gz: 65cdcf52ad47a7b7eb911b86518e7965be2150d5d121cb715d3e8ab107df513a47f8112dd7392de070254149fa143b12ef90acea412dfd77b7d2ea8dfc00e808
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,12 @@
|
|
1
|
+
## [0.1.2] - 2024-07-15
|
2
|
+
|
3
|
+
- Fixed spelling error for `success` attribute on `Response`
|
4
|
+
|
5
|
+
## [0.1.1] - 2024-07-11
|
6
|
+
|
7
|
+
- Fixed bug where snake-cased keys were being converetd to camel-cased keys for API request params
|
8
|
+
- JustCall's API actually expects snake-cased keys
|
9
|
+
|
1
10
|
## [0.1.0] - 2024-07-10
|
2
11
|
|
3
12
|
The initial release. Provides all basic Ruby wrapper functionality for JustCall's V2 API.
|
data/Gemfile.lock
CHANGED
data/lib/justcall_ruby/api.rb
CHANGED
@@ -59,9 +59,8 @@ module JustCall
|
|
59
59
|
|
60
60
|
def standardize_body_data(submitted_attrs:, permitted_attrs:)
|
61
61
|
submitted_attrs = submitted_attrs.deep_transform_keys(&:to_sym)
|
62
|
-
permitted_attrs = submitted_attrs.select! { |k, _| permitted_attrs.include?(k) } || submitted_attrs
|
63
62
|
|
64
|
-
|
63
|
+
submitted_attrs.select! { |k, _| permitted_attrs.include?(k) } || submitted_attrs
|
65
64
|
end
|
66
65
|
|
67
66
|
def convert_params_to_request_query(params)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: justcall_ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jeffrey Dill
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-07-
|
11
|
+
date: 2024-07-15 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description:
|
14
14
|
email:
|