pike13 0.1.0 → 0.1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9952a78d601be88d6a496a250fd0a303ca3fcd1121eaefb4e3ade80fedf6182a
4
- data.tar.gz: 9da1000c8ad902aea5b507b4b8a3c2f06fd7b27549e55eeb58140e8ca45810d1
3
+ metadata.gz: b5f3e87a08c579d9ce3a38bf31c5b22005bddf994ccce24e7f00141acb05d7c6
4
+ data.tar.gz: 6d4dda290d920e1c0a23fa00eb7eb7eeca1c9a6da0bb2e35430d6dc2860f4fac
5
5
  SHA512:
6
- metadata.gz: 5d24f8ea42f18ff20c724cff011d2fea91c9261dd25690b93d97eae869b7561bebfd7acdada6584f7679a166d353d6b0c3064769bce892756937d2ec97e78da3
7
- data.tar.gz: 46ea0e8d878b3843ea0e016caea97ed0ae3fa34463a683abafa9e7d460496e77849b66be9910fbf3c1f5aa0c14af8be2b3d4707f43015430222ccee3776a06fc
6
+ metadata.gz: 85846555ad55cb506f48b72448e0299b80e3b74fb65c401087b953f8b5dce051f7a5ae24aac8a5779334871820763a9c0a8e773e8938059404c615bc0365085f
7
+ data.tar.gz: 101ece99ffe6d5fd57f557e77e706b2ed8125e3cfa77eae1aba0dd3233ca8c05edf49c37503514f01ce6dc02aecf2701b6fcf6237e03e97d3bdf8ce7903c391d
data/CHANGELOG.md CHANGED
@@ -5,7 +5,10 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
- ## [Unreleased]
8
+ ## [0.1.1] - 2025-11-02
9
+
10
+ ### Fixed
11
+ - **Account::Business**: Removed undocumented `find(id)` method that was not supported by the Pike13 API v2. The API only supports listing all businesses via `GET /account/businesses` endpoint.
9
12
 
10
13
  ## [0.1.0] - 2025-10-31
11
14
 
@@ -11,10 +11,6 @@ module Pike13
11
11
  client.get("account/businesses")
12
12
  end
13
13
 
14
- # GET /account/businesses/:id
15
- def find(id)
16
- client.get("account/businesses/#{id}")
17
- end
18
14
  end
19
15
  end
20
16
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Pike13
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.1"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pike13
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Juan Huttemann
@@ -23,7 +23,7 @@ dependencies:
23
23
  - - "~>"
24
24
  - !ruby/object:Gem::Version
25
25
  version: '0.21'
26
- description: A Ruby gem for interacting with the Pike13 Core API
26
+ description: A Ruby gem for interacting with the Pike13 API
27
27
  email:
28
28
  - juanfhuttemann@gmail.com
29
29
  executables: []
@@ -142,5 +142,5 @@ required_rubygems_version: !ruby/object:Gem::Requirement
142
142
  requirements: []
143
143
  rubygems_version: 3.6.9
144
144
  specification_version: 4
145
- summary: Ruby client for the Pike13 Core API
145
+ summary: Ruby client for the Pike13 API
146
146
  test_files: []