altertable 0.1.0 → 0.2.2
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/.release-please-manifest.json +1 -1
- data/CHANGELOG.md +22 -0
- data/Gemfile.lock +1 -1
- data/Rakefile +1 -0
- data/altertable.gemspec +3 -1
- data/lib/altertable/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 42523b8dd9072dbe3eb2756a5a496de2c9e3db0db518b6ae2620c4c383bb7547
|
|
4
|
+
data.tar.gz: 4fc356b335e47bab34332d4ca42e5d4994381bd388da5079106e96b6c28d6c28
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 597516dc39dfca5c441174e83dfc519ddc73a81c9a9b88eaeb666262ed255dac382b87870c183ac1c154c382d141c255eef15e0059c3bd5f25c42445f0ae71b9
|
|
7
|
+
data.tar.gz: 5146fdc9c3b3693ba18196ec27fa5870e6ea690647632ead38f7c1424f343a42aa76396d5cae5ce42f1471a2088da5d926e5928761c60485dc0c8037bbcbca42
|
data/CHANGELOG.md
CHANGED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## [0.2.2](https://github.com/altertable-ai/altertable-ruby/compare/altertable/v0.2.1...altertable/v0.2.2) (2026-03-08)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* add missing bundler/gem_tasks to Rakefile ([#16](https://github.com/altertable-ai/altertable-ruby/issues/16)) ([6d021c9](https://github.com/altertable-ai/altertable-ruby/commit/6d021c9f94d66fe491243d87ae591f0ab9303d4a)), closes [#15](https://github.com/altertable-ai/altertable-ruby/issues/15)
|
|
9
|
+
|
|
10
|
+
## [0.2.1](https://github.com/altertable-ai/altertable-ruby/compare/altertable/v0.2.0...altertable/v0.2.1) (2026-03-08)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* read gem version dynamically from lib/altertable/version.rb ([#12](https://github.com/altertable-ai/altertable-ruby/issues/12)) ([c2720a0](https://github.com/altertable-ai/altertable-ruby/commit/c2720a08eca08534541e2262a82239f7c3f678ec))
|
|
16
|
+
|
|
17
|
+
## [0.2.0](https://github.com/altertable-ai/altertable-ruby/compare/altertable-v0.1.0...altertable/v0.2.0) (2026-03-08)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
* optional http client (faraday/httpx/net-http) with adapter pattern ([#5](https://github.com/altertable-ai/altertable-ruby/issues/5)) ([1fb2b79](https://github.com/altertable-ai/altertable-ruby/commit/1fb2b79963977aea1d3c4d19e3fdad23b02a296f))
|
data/Gemfile.lock
CHANGED
data/Rakefile
CHANGED
data/altertable.gemspec
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
+
require_relative "lib/altertable/version"
|
|
4
|
+
|
|
3
5
|
Gem::Specification.new do |spec|
|
|
4
6
|
spec.name = "altertable"
|
|
5
|
-
spec.version =
|
|
7
|
+
spec.version = Altertable::VERSION
|
|
6
8
|
spec.authors = ["Altertable"]
|
|
7
9
|
spec.email = ["support@api.altertable.ai"]
|
|
8
10
|
|
data/lib/altertable/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: altertable
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.2.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Altertable
|
|
@@ -200,7 +200,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
200
200
|
- !ruby/object:Gem::Version
|
|
201
201
|
version: '0'
|
|
202
202
|
requirements: []
|
|
203
|
-
rubygems_version: 3.6.
|
|
203
|
+
rubygems_version: 3.6.9
|
|
204
204
|
specification_version: 4
|
|
205
205
|
summary: Altertable Product Analytics Ruby SDK
|
|
206
206
|
test_files: []
|