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 +4 -4
- data/CHANGELOG.md +5 -0
- data/lib/attio/version.rb +1 -1
- data/lib/attio-ruby.rb +5 -0
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 24bed31b6dd0aa8d5a0c9be52298f636255c368c47dcbf41091609712c3a56f7
|
4
|
+
data.tar.gz: 64e25c9ec1329ecbebd5352374df18650ccf18d7d135d28b3eca8a8c6bc6554b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
data/lib/attio-ruby.rb
ADDED
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.
|
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
|