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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c85b34f29d10419bece593d2fba243af50018066df596fd6ce8148bf5efad3e7
4
- data.tar.gz: 517f903385d103f0f2fb8e891818cf265d38b68f6fa6cceb2a8f2ec6e7f1614f
3
+ metadata.gz: dee5c1546cb828e8f0bd5d8da3be7b3eaa85324e38fcc26ae730d6fc1e5954b7
4
+ data.tar.gz: 1951546596f01d3aef2688ad40f8b9c060b0032f5df42f55e2f90ba26c42b4f2
5
5
  SHA512:
6
- metadata.gz: 56b74ff1ca58929b8756b313222388dab12908028810a64776802febc4541c8f9ff0c40512615b9135726e9c704f067ed572ba12e5d67bf59f1eb743940a9df1
7
- data.tar.gz: 3b842bf4f5c6fe6e82255ffb0427b358773f094fef76e2500a7dd013162f0ca44e36678af4f2494b5ac25a0df55ae80740bbda2b0c83a7d191ac481c1624f7bc
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 support for feature flag prerequisites. This allows customers to define dependency conditions between flags, which are evaluated before any allowlists or targeting rules.
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.
@@ -1,3 +1,3 @@
1
1
  module SplitIoClient
2
- VERSION = '8.7.0-rc1'
2
+ VERSION = '8.7.0'
3
3
  end
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.pre.rc1
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: 1980-01-02 00:00:00.000000000 Z
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
- rubygems_version: 3.7.1
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: []