-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdevcycle-ruby-server-sdk.gemspec
44 lines (38 loc) · 1.62 KB
/
devcycle-ruby-server-sdk.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# -*- encoding: utf-8 -*-
=begin
#DevCycle Bucketing API
#Documents the DevCycle Bucketing API which provides and API interface to User Bucketing and for generated SDKs.
The version of the OpenAPI document: 1.0.0
Generated by: https://openapi-generator.tech
OpenAPI Generator version: 5.3.0
=end
$:.push File.expand_path("../lib", __FILE__)
require "devcycle-ruby-server-sdk/version"
Gem::Specification.new do |s|
s.name = "devcycle-ruby-server-sdk"
s.version = DevCycle::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["DevCycleHQ"]
s.email = ["support@devcycle.com"]
s.homepage = "https://devcycle.com"
s.summary = "DevCycle Bucketing API Ruby Gem"
s.description = "DevCycle Ruby Server SDK, for interacting with feature flags created with the DevCycle platform."
s.license = "MIT"
s.required_ruby_version = ">= 3.2"
s.add_runtime_dependency 'typhoeus', '~> 1.0', '>= 1.0.1'
s.add_runtime_dependency 'wasmtime', '20.0.2'
s.add_runtime_dependency 'concurrent-ruby', '~> 1.2.0'
s.add_runtime_dependency 'sorbet-runtime', '>= 0.5.11481'
s.add_runtime_dependency 'oj', '~> 3.0'
s.add_runtime_dependency 'google-protobuf', '~> 3.22'
s.add_runtime_dependency 'ld-eventsource', '~> 2.2.3'
s.add_runtime_dependency 'openfeature-sdk', '~> 0.4.0'
s.add_development_dependency 'rspec', '~> 3.6', '>= 3.6.0'
s.files = Dir['README.md', 'LICENSE',
'lib/**/*',
'devcycle-ruby-server-sdk.gemspec',
'Gemfile']
s.test_files = `find spec/*`.split("\n")
s.executables = []
s.require_paths = ["lib"]
end