calendlyr 0.7.3 → 0.7.4

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c57c6eee34f296883a41d1c78d7f9ab9f142768353c78068a91ed7a4f6ec33f8
4
- data.tar.gz: b1adb963d1d9ec9b2529d2765b7ddc6c0ea2a92fb5a89b016154abbacdb0d7dd
3
+ metadata.gz: 7fcea4c5206606b7ef08edb1e46d1aa2c51380cb769d8c911bb316aa7bc4bef1
4
+ data.tar.gz: 44177a86aa12c87a5ec66b4af52ffad054d9110743bbfaffd116b8fe70399586
5
5
  SHA512:
6
- metadata.gz: db6766c86112dc3e944e3b6387bcd8e67b4c335804590d8cb7ef55081a874e0c572a647e9d9ce799ef1207434eeda482c6ca2ea12ba842ed20abe054d0e7ed67
7
- data.tar.gz: 4b59f6ad76dd238775a010501c647c383a0dca86861b1dc417b460d5f899b6b5be2852a6d1102a20637739857d7277eca3cf88655c7a1350fe08d1cb91cee894
6
+ metadata.gz: c0e22a796f4c0bea34e6881a999cb88f27b847d6acf8acd2b4bc65ec5b61e30023ca2349c2152cf8e5f4e8a92358b9e6bb020ac1bc8986ac2dd20724e0a9fdea
7
+ data.tar.gz: 75880af1a6ce07bd4a2b0afb5c0ed66c99adbc6d0fd0099ee13e81e911420039651667b5f528bcaf8487fbf84a7d3bcf501e57a29c56f75cd4839a3a9b80c989
@@ -11,7 +11,7 @@ jobs:
11
11
  runs-on: ubuntu-latest
12
12
  strategy:
13
13
  matrix:
14
- ruby: ["2.5", "2.6", "2.7", "3.0", "3.2"]
14
+ ruby: ["2.7", "3.0", "3.2", "3.3"]
15
15
 
16
16
  steps:
17
17
  - uses: actions/checkout@v4
data/CHANGELOG.md CHANGED
@@ -2,6 +2,14 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ ## [0.7.4]
6
+ * Fix: Error class name typo `ExternalCalendarEror` -> `ExternalCalendarError`
7
+ * Fix: Error class name typo `TooManyRequestsEror` -> `TooManyRequests`
8
+ * Updating rubies versions in CI to add 3.3
9
+ * Adding total rubygems downloads badge to README
10
+
11
+ [0.7.4]: https://github.com/araluce/calendlyr/compare/v0.7.3...v0.7.4
12
+
5
13
  ## [0.7.3]
6
14
  * Fix: Prevent possible empty body response to fail
7
15
 
data/README.md CHANGED
@@ -1,8 +1,7 @@
1
1
  [![](https://img.shields.io/github/license/araluce/calendlyr?kill_cache=1)](https://github.com/araluce/calendlyr/blob/master/LICENSE.txt)
2
2
  [![](https://github.com/araluce/calendlyr/actions/workflows/ci.yml/badge.svg?kill_cache=1)](https://github.com/araluce/calendlyr/actions)
3
3
  [![codecov](https://codecov.io/gh/araluce/calendlyr/branch/master/graph/badge.svg?token=YSUU4PHM6Y&kill_cache=1)](https://codecov.io/gh/araluce/calendlyr)
4
- [![Gem Version](https://badge.fury.io/rb/calendlyr.svg?kill_cache=1)](https://badge.fury.io/rb/calendlyr)
5
- ![Gem Downloads (for specified version)](https://img.shields.io/gem/dv/calendlyr/0.7.3?kill_cache=1)
4
+ ![Gem Downloads (for specified version)](https://img.shields.io/gem/dt/calendlyr)
6
5
 
7
6
  # Calendly API Rubygem
8
7
 
@@ -23,7 +22,7 @@ We understand the importance of not adding unwanted dependencies.
23
22
  Add this line to your application's Gemfile:
24
23
 
25
24
  ```ruby
26
- gem 'calendlyr', '0.7.3'
25
+ gem 'calendlyr', '0.7.4'
27
26
  ```
28
27
 
29
28
  And then execute:
@@ -11,11 +11,11 @@ module Calendlyr
11
11
 
12
12
  class NotFound < StandardError; end
13
13
 
14
- class ExternalCalendarEror < StandardError; end
14
+ class ExternalCalendarError < StandardError; end
15
15
 
16
16
  class InternalServerError < StandardError; end
17
17
 
18
- class TooManyRequestsEror < StandardError; end
18
+ class TooManyRequests < StandardError; end
19
19
 
20
20
  class ResponseErrorHandler
21
21
  ERROR_TYPES = {
@@ -23,8 +23,8 @@ module Calendlyr
23
23
  "401" => Unauthenticated,
24
24
  "403" => PermissionDenied,
25
25
  "404" => NotFound,
26
- "424" => ExternalCalendarEror,
27
- "429" => TooManyRequestsEror,
26
+ "424" => ExternalCalendarError,
27
+ "429" => TooManyRequests,
28
28
  "500" => InternalServerError
29
29
  }
30
30
 
@@ -1,3 +1,3 @@
1
1
  module Calendlyr
2
- VERSION = "0.7.3"
2
+ VERSION = "0.7.4"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: calendlyr
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.3
4
+ version: 0.7.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - araluce
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-09-16 00:00:00.000000000 Z
11
+ date: 2024-09-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake