attio-ruby 0.1.2 → 0.1.3

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: a7db71c5e1400d37a29bd1aa5f4c0a6dd9cfebc915582f0da146f194cbcbc115
4
- data.tar.gz: 003ac5ec55828dd32d31ba572d1f6d0f319f8a993e70cc27d04c39b11c5a65d0
3
+ metadata.gz: 24bed31b6dd0aa8d5a0c9be52298f636255c368c47dcbf41091609712c3a56f7
4
+ data.tar.gz: 64e25c9ec1329ecbebd5352374df18650ccf18d7d135d28b3eca8a8c6bc6554b
5
5
  SHA512:
6
- metadata.gz: 308220d81893653de1e4f4df002b0f8b1df18b3f76a46731b701a12a3c8d1a229727196e731de81305db9d1cadce0f84496dd344dc4849587068fde4353a93ec
7
- data.tar.gz: aa3362f8f41b37fc1a3d38f95f6d6dcadf47ca176d566bc95a158efcb4f56b361bc09988e95b9ded4005210a4359f5a3ef2ecd92720de8e4081f1fba7b9d042c
6
+ metadata.gz: fba01e91fb72e0ee903bab6e4d2f94a622ed2f6ec67f7f44ea4bc2bdc38f02e548500f4cd964cca4cfb6facc2679f6d059fc65872e907fc05a17fdd1a81134e6
7
+ data.tar.gz: 348490a48d8347932536ff5b419f112444b88d9fefcb87b47a9f4074f6dab0bb5cdc23ecac1a323b6fb48d759e7310f36475c2a469de3841a3eeae73731ba835
data/CHANGELOG.md CHANGED
@@ -5,6 +5,11 @@ 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
+ ## [0.1.3] - 2025-08-07
9
+
10
+ ### Fixed
11
+ - Added `lib/attio-ruby.rb` to fix Rails auto-require issue. The gem can now be auto-required by Rails/Bundler without needing `require: 'attio'` in the Gemfile.
12
+
8
13
  ## [0.1.2] - 2025-08-07
9
14
 
10
15
  ### Added
data/lib/attio/version.rb CHANGED
@@ -2,5 +2,5 @@
2
2
 
3
3
  module Attio
4
4
  # Current version of the Attio Ruby gem
5
- VERSION = "0.1.2"
5
+ VERSION = "0.1.3"
6
6
  end
data/lib/attio-ruby.rb ADDED
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ # This file exists to match the gem name for auto-requiring
4
+ # It simply requires the main attio module
5
+ require_relative "attio"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: attio-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Robert Beene
@@ -344,6 +344,7 @@ files:
344
344
  - examples/oauth_flow_README.md
345
345
  - examples/typed_records_example.rb
346
346
  - examples/webhook_server.rb
347
+ - lib/attio-ruby.rb
347
348
  - lib/attio.rb
348
349
  - lib/attio/api_resource.rb
349
350
  - lib/attio/builders/name_builder.rb