mobiscroll-connect 1.5.0 → 1.5.1
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/CHANGELOG.md +49 -0
- data/README.md +5 -1
- data/lib/mobiscroll/connect/version.rb +1 -1
- data/mobiscroll-connect.gemspec +9 -4
- metadata +9 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a5b667cc604c98500160cd034837d4ef9b097ef5a08e50ff9ab75ec451f41d5f
|
|
4
|
+
data.tar.gz: b3d758a7b2cc387d570526a6ddae75ce216d12082ee156b341343942362e4f3c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: debeb4453999f74a080e45b5e1c1ea6ade00a6a3f370c665be12c2ce1e994244c7256738734ac00fa893cb754dd132a620aa63dc292fcb722f66b348e16cb455
|
|
7
|
+
data.tar.gz: 20c2e49dec99acc7fe35b4cf42b2a7a084a00d23ea86f802cd7714d5fbcf5a82c35c09cf57997d99ca688b3e6e16b5e8dace0ade00e64b16feaaa25eb32828f7
|
data/CHANGELOG.md
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to the Mobiscroll Connect Ruby SDK (RubyGems: `mobiscroll-connect`) are documented in this file.
|
|
4
|
+
|
|
5
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this SDK follows [Semantic Versioning](https://semver.org/spec/v2.0.0.html). SDKs in this monorepo version independently, so this file covers the Ruby SDK only.
|
|
6
|
+
|
|
7
|
+
## [1.5.1] — 2026-09-22
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
|
|
11
|
+
- Updated package metadata. No code or public API changes.
|
|
12
|
+
|
|
13
|
+
## [1.5.0] — 2026-09-21
|
|
14
|
+
|
|
15
|
+
### Added
|
|
16
|
+
|
|
17
|
+
- `webhooks` resource with `subscribe_webhook()` and `unsubscribe_webhook()` for calendar change notifications.
|
|
18
|
+
- `sync_state` and `sync_state_updated_at` on `ConnectedAccount`.
|
|
19
|
+
|
|
20
|
+
## [1.2.0] — 2026-08-27
|
|
21
|
+
|
|
22
|
+
### Added
|
|
23
|
+
|
|
24
|
+
- Granted OAuth scopes are reported on the connection status, and a missing scope now raises `CalendarPermissionError`.
|
|
25
|
+
|
|
26
|
+
## [1.1.0] — 2026-06-03
|
|
27
|
+
|
|
28
|
+
### Added
|
|
29
|
+
|
|
30
|
+
- Optional `lng` parameter on the authorization URL, for Connect's localized consent screens.
|
|
31
|
+
|
|
32
|
+
## [1.0.2] — 2026-05-26
|
|
33
|
+
|
|
34
|
+
### Added
|
|
35
|
+
|
|
36
|
+
- First published release: `auth`, `calendars` and `events` resources over Google Calendar, Microsoft Outlook, Apple Calendar and CalDAV.
|
|
37
|
+
- Automatic token refresh on 401 with an `on_tokens_refreshed` callback.
|
|
38
|
+
- Typed error hierarchy rooted at `Mobiscroll::Connect::Error`.
|
|
39
|
+
- Sinatra reference application under `minimal-app/`.
|
|
40
|
+
|
|
41
|
+
### Changed
|
|
42
|
+
|
|
43
|
+
- Minimum supported Ruby raised to 3.2.
|
|
44
|
+
|
|
45
|
+
[1.5.1]: https://github.com/acidb/mobiscroll-connect-sdks/releases/tag/ruby-v1.5.1
|
|
46
|
+
[1.5.0]: https://github.com/acidb/mobiscroll-connect-sdks/releases/tag/ruby-v1.5.0
|
|
47
|
+
[1.2.0]: https://github.com/acidb/mobiscroll-connect-sdks/releases/tag/ruby-v1.2.0
|
|
48
|
+
[1.1.0]: https://github.com/acidb/mobiscroll-connect-sdks/releases/tag/ruby-v1.1.0
|
|
49
|
+
[1.0.2]: https://github.com/acidb/mobiscroll-connect-sdks/releases/tag/ruby-v1.0.2
|
data/README.md
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
# Mobiscroll Connect Ruby SDK
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Ruby client for [Mobiscroll Connect](https://mobiscroll.com/connect), the calendar connectivity layer for scheduling products — Google Calendar, Microsoft Outlook, Apple Calendar and CalDAV through one API. Backend only — works with your own UI.
|
|
4
|
+
|
|
5
|
+
[](https://rubygems.org/gems/mobiscroll-connect)
|
|
6
|
+
|
|
7
|
+
**[RubyGems](https://rubygems.org/gems/mobiscroll-connect)** · **[Documentation](https://mobiscroll.com/docs/connect/ruby-sdk)** · **[Changelog](CHANGELOG.md)** · **[Source](https://github.com/acidb/mobiscroll-connect-sdks/tree/main/sdks/ruby)**
|
|
4
8
|
|
|
5
9
|
## Installation
|
|
6
10
|
|
data/mobiscroll-connect.gemspec
CHANGED
|
@@ -8,10 +8,13 @@ Gem::Specification.new do |spec|
|
|
|
8
8
|
spec.authors = ['Mobiscroll']
|
|
9
9
|
spec.email = ['support@mobiscroll.com']
|
|
10
10
|
|
|
11
|
-
spec.summary = '
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
'
|
|
11
|
+
spec.summary = 'Ruby client for Mobiscroll Connect — Google Calendar, ' \
|
|
12
|
+
'Microsoft Outlook, Apple Calendar and CalDAV through one API.'
|
|
13
|
+
spec.description = 'Ruby client for Mobiscroll Connect, the calendar ' \
|
|
14
|
+
'connectivity layer for scheduling products. Google ' \
|
|
15
|
+
'Calendar, Microsoft Outlook, Apple Calendar and CalDAV ' \
|
|
16
|
+
'through one API, with OAuth 2.0 and webhooks. Backend ' \
|
|
17
|
+
'only — works with your own UI.'
|
|
15
18
|
spec.homepage = 'https://mobiscroll.com/connect'
|
|
16
19
|
spec.license = 'MIT'
|
|
17
20
|
|
|
@@ -20,6 +23,7 @@ Gem::Specification.new do |spec|
|
|
|
20
23
|
spec.metadata = {
|
|
21
24
|
'homepage_uri' => spec.homepage,
|
|
22
25
|
'source_code_uri' => 'https://github.com/acidb/mobiscroll-connect-sdks',
|
|
26
|
+
'documentation_uri' => 'https://mobiscroll.com/docs/connect/ruby-sdk',
|
|
23
27
|
'bug_tracker_uri' => 'https://github.com/acidb/mobiscroll-connect-sdks/issues',
|
|
24
28
|
'changelog_uri' => 'https://github.com/acidb/mobiscroll-connect-sdks/blob/main/sdks/ruby/CHANGELOG.md',
|
|
25
29
|
'rubygems_mfa_required' => 'true'
|
|
@@ -28,6 +32,7 @@ Gem::Specification.new do |spec|
|
|
|
28
32
|
spec.files = Dir[
|
|
29
33
|
'lib/**/*.rb',
|
|
30
34
|
'README.md',
|
|
35
|
+
'CHANGELOG.md',
|
|
31
36
|
'LICENSE',
|
|
32
37
|
'mobiscroll-connect.gemspec'
|
|
33
38
|
]
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: mobiscroll-connect
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.5.
|
|
4
|
+
version: 1.5.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Mobiscroll
|
|
@@ -80,14 +80,17 @@ dependencies:
|
|
|
80
80
|
- - "~>"
|
|
81
81
|
- !ruby/object:Gem::Version
|
|
82
82
|
version: '3.23'
|
|
83
|
-
description: Ruby client for
|
|
84
|
-
|
|
83
|
+
description: Ruby client for Mobiscroll Connect, the calendar connectivity layer for
|
|
84
|
+
scheduling products. Google Calendar, Microsoft Outlook, Apple Calendar and CalDAV
|
|
85
|
+
through one API, with OAuth 2.0 and webhooks. Backend only — works with your own
|
|
86
|
+
UI.
|
|
85
87
|
email:
|
|
86
88
|
- support@mobiscroll.com
|
|
87
89
|
executables: []
|
|
88
90
|
extensions: []
|
|
89
91
|
extra_rdoc_files: []
|
|
90
92
|
files:
|
|
93
|
+
- CHANGELOG.md
|
|
91
94
|
- LICENSE
|
|
92
95
|
- README.md
|
|
93
96
|
- lib/mobiscroll-connect.rb
|
|
@@ -110,6 +113,7 @@ licenses:
|
|
|
110
113
|
metadata:
|
|
111
114
|
homepage_uri: https://mobiscroll.com/connect
|
|
112
115
|
source_code_uri: https://github.com/acidb/mobiscroll-connect-sdks
|
|
116
|
+
documentation_uri: https://mobiscroll.com/docs/connect/ruby-sdk
|
|
113
117
|
bug_tracker_uri: https://github.com/acidb/mobiscroll-connect-sdks/issues
|
|
114
118
|
changelog_uri: https://github.com/acidb/mobiscroll-connect-sdks/blob/main/sdks/ruby/CHANGELOG.md
|
|
115
119
|
rubygems_mfa_required: 'true'
|
|
@@ -131,5 +135,6 @@ requirements: []
|
|
|
131
135
|
rubygems_version: 3.5.22
|
|
132
136
|
signing_key:
|
|
133
137
|
specification_version: 4
|
|
134
|
-
summary:
|
|
138
|
+
summary: Ruby client for Mobiscroll Connect — Google Calendar, Microsoft Outlook,
|
|
139
|
+
Apple Calendar and CalDAV through one API.
|
|
135
140
|
test_files: []
|