splitclient-rb 8.7.0.pre.rc1 → 8.7.0
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/.github/workflows/gem-push.yml +40 -0
- data/CHANGES.txt +1 -1
- data/lib/splitclient-rb/version.rb +1 -1
- metadata +8 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: dee5c1546cb828e8f0bd5d8da3be7b3eaa85324e38fcc26ae730d6fc1e5954b7
|
4
|
+
data.tar.gz: 1951546596f01d3aef2688ad40f8b9c060b0032f5df42f55e2f90ba26c42b4f2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '094314dcffc65c199290db8a2bbcd69902deaaf61adc01dba13da0ce348155ef2731ebe8b0d0cdb006502bb5e4ab699549e21e79008831bd1ddd5a0b44cc5da7'
|
7
|
+
data.tar.gz: e1f1935ec5f7eee464dd07e1e7cff953434721db0181e1d243671e05df273ed9fea8ce5c3de643674e957d0b3a97949e2b524f53237d2dbce7425d7c7af27b16
|
@@ -0,0 +1,40 @@
|
|
1
|
+
name: Ruby Gem
|
2
|
+
|
3
|
+
on:
|
4
|
+
push:
|
5
|
+
branches: [ "release" ]
|
6
|
+
pull_request:
|
7
|
+
branches: [ "release" ]
|
8
|
+
|
9
|
+
jobs:
|
10
|
+
build:
|
11
|
+
name: Build + Publish
|
12
|
+
runs-on: ubuntu-latest
|
13
|
+
permissions:
|
14
|
+
contents: read
|
15
|
+
packages: write
|
16
|
+
|
17
|
+
steps:
|
18
|
+
- uses: actions/checkout@v4
|
19
|
+
- name: Set up Ruby 2.5.8
|
20
|
+
# To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
|
21
|
+
# change this to (see https://github.com/ruby/setup-ruby#versioning):
|
22
|
+
# uses: ruby/setup-ruby@v1
|
23
|
+
uses: ruby/setup-ruby@v1
|
24
|
+
with:
|
25
|
+
ruby-version: 2.5.8
|
26
|
+
|
27
|
+
- name: Publish to RubyGems
|
28
|
+
run: |
|
29
|
+
mkdir -p $HOME/.gem
|
30
|
+
touch $HOME/.gem/credentials
|
31
|
+
chmod 0600 $HOME/.gem/credentials
|
32
|
+
printf -- "---\n:rubygems_api_key: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials
|
33
|
+
gem build *.gemspec
|
34
|
+
# gem push *.gem
|
35
|
+
- name: upload gem file
|
36
|
+
uses: actions/upload-artifact@v4
|
37
|
+
with:
|
38
|
+
name: gemspec
|
39
|
+
path: ./*.gem
|
40
|
+
|
data/CHANGES.txt
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
CHANGES
|
2
2
|
|
3
3
|
8.7.0 (Aug 1, 2025)
|
4
|
-
- Added
|
4
|
+
- Added a new optional argument to the client `getTreatment` methods to allow passing additional evaluation options, such as a map of properties to append to the generated impressions sent to Split backend. Read more in our docs.
|
5
5
|
|
6
6
|
8.6.0 (Jun 17, 2025)
|
7
7
|
- Added support for rule-based segments. These segments determine membership at runtime by evaluating their configured rules against the user attributes provided to the SDK.
|
metadata
CHANGED
@@ -1,13 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: splitclient-rb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 8.7.0
|
4
|
+
version: 8.7.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Split Software
|
8
|
+
autorequire:
|
8
9
|
bindir: bin
|
9
10
|
cert_chain: []
|
10
|
-
date:
|
11
|
+
date: 2025-08-01 00:00:00.000000000 Z
|
11
12
|
dependencies:
|
12
13
|
- !ruby/object:Gem::Dependency
|
13
14
|
name: allocation_stats
|
@@ -406,6 +407,7 @@ files:
|
|
406
407
|
- ".github/CODEOWNERS"
|
407
408
|
- ".github/pull_request_template.md"
|
408
409
|
- ".github/workflows/ci.yml"
|
410
|
+
- ".github/workflows/gem-push.yml"
|
409
411
|
- ".github/workflows/update-license-year.yml"
|
410
412
|
- ".gitignore"
|
411
413
|
- ".rubocop.yml"
|
@@ -579,6 +581,7 @@ homepage: https://github.com/splitio/ruby-client
|
|
579
581
|
licenses:
|
580
582
|
- Apache-2.0
|
581
583
|
metadata: {}
|
584
|
+
post_install_message:
|
582
585
|
rdoc_options: []
|
583
586
|
require_paths:
|
584
587
|
- lib
|
@@ -593,7 +596,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
593
596
|
- !ruby/object:Gem::Version
|
594
597
|
version: '0'
|
595
598
|
requirements: []
|
596
|
-
|
599
|
+
rubyforge_project:
|
600
|
+
rubygems_version: 2.7.6.2
|
601
|
+
signing_key:
|
597
602
|
specification_version: 4
|
598
603
|
summary: Ruby client for split SDK.
|
599
604
|
test_files: []
|