-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add Vehicle Management Support (#60)
* feat: Add Vehicle Management Support adding get/delete methods for connections * chore: fix lint offenses * chore: add tests for get-connections * chore: fix lint issues * chore: split out paging from filters * chore: bumping up the version * fix: fixing an existing bug with compatibility req - the error object was in Smartcar::Base. Fixing that - Additionally validatiing scope for nil or empty - Fixing the tests and adding cases to test those two scenarios which is vin and scope * feat: fix the connections functions - fix the args, error cases and refactor connections related methods - fix the tests - fix the lint * doc: add get_connections example to readme --------- Co-authored-by: s-ashwinkumar <[email protected]>
- Loading branch information
1 parent
234555d
commit eea31ca
Showing
7 changed files
with
262 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
PATH | ||
remote: . | ||
specs: | ||
smartcar (3.5.0) | ||
smartcar (3.6.0) | ||
oauth2 (~> 1.4) | ||
recursive-open-struct (~> 1.1.3) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,5 +2,5 @@ | |
|
||
module Smartcar | ||
# Gem current version number | ||
VERSION = '3.5.0' | ||
VERSION = '3.6.0' | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters