xero-kiwi 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: 8461f3c23bcec591acd4a6bb875ff08f4bacf67573ae6e1957ad78a268d4c7bb
4
- data.tar.gz: 8167dae0e2922d57099b177a3ee182f3728c28dfc45f6fd0a50ae61a50ea0feb
3
+ metadata.gz: 8f6a32ee3719881fa7bd110e3bd1abb532e76dfdcddeb93e580199deacf1fe35
4
+ data.tar.gz: 3b7ea0828116a3f20ce4557d17f85540859d977db14e1db40cd7113321ecaaa8
5
5
  SHA512:
6
- metadata.gz: 1a55d9c5c9022a6fbf7fcc777d8084775d54e464d87008dfa876f234f792f5ec45a427ea55dfef0adb01ee8f1101ef49999206d64e6b8cec63f0a97fec3564dd
7
- data.tar.gz: 95b28e21648463606521aff37c8413e7f6a73fa9f731d30098ef757cb480beaa2f1c3da3f588b1b00ca8cf00784dcd5ec9ca2c7853d129b35ed82ddf6bececaa
6
+ metadata.gz: 7182cd4adc572b4fe80ac9a43a3ed5f7075404d5eb3c25ae26e843f3a9b600d6891e5feaafcac202b0cd57258b20b63e72d318766080cf3b42a65c74b055c9d8
7
+ data.tar.gz: fb570096febd7f79e7d5643c87a81b7d5839156d576a430a267b1ca44b35fa0ab5c37723e63b8470b679e30bb88a5264c5134ca91b4caea072b7cb05c4372cd5
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.1.1] - 2026-04-15
4
+
5
+ - Add `lib/xero-kiwi.rb` shim so `gem "xero-kiwi"` in a Gemfile auto-requires the gem without needing `require: "xero_kiwi"`.
6
+
3
7
  ## [0.1.0] - 2026-04-15
4
8
 
5
9
  - Initial release
data/lib/xero-kiwi.rb ADDED
@@ -0,0 +1,3 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "xero_kiwi"
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module XeroKiwi
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: xero-kiwi
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
  - Douglas Greyling
@@ -65,7 +65,7 @@ dependencies:
65
65
  - - "~>"
66
66
  - !ruby/object:Gem::Version
67
67
  version: '2.7'
68
- description: XeroKiwi handles the unglamorous parts of integrating with Xero — OAuth2
68
+ description: Xero Kiwi handles the unglamorous parts of integrating with Xero — OAuth2
69
69
  with PKCE, automatic token refresh, rate-limit-aware retries, and typed value objects
70
70
  for accounting resources — so your code can focus on the business problem rather
71
71
  than the plumbing.
@@ -101,6 +101,7 @@ files:
101
101
  - docs/oauth.md
102
102
  - docs/retries-and-rate-limits.md
103
103
  - docs/tokens.md
104
+ - lib/xero-kiwi.rb
104
105
  - lib/xero_kiwi.rb
105
106
  - lib/xero_kiwi/accounting/address.rb
106
107
  - lib/xero_kiwi/accounting/allocation.rb