Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions launchdarkly-server-sdk.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
lib = File.expand_path("lib", __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "ldclient-rb/version"
require "rake"
#require "rake"

# rubocop:disable Metrics/BlockLength
Gem::Specification.new do |spec|
Expand All @@ -16,7 +16,7 @@ Gem::Specification.new do |spec|
spec.homepage = "https://github.com/launchdarkly/ruby-server-sdk"
spec.license = "Apache-2.0"

spec.files = FileList["lib/**/*", "README.md", "LICENSE.txt"]
spec.files = `git ls-files -z`.split("\x0")
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.required_ruby_version = ">= 2.7.0"
Expand All @@ -41,6 +41,6 @@ Gem::Specification.new do |spec|
# Please keep ld-eventsource dependency as an exact version so that bugfixes to
# that LD library are always associated with a new SDK version.

spec.add_runtime_dependency "json", "~> 2.3"
spec.add_runtime_dependency "json", ">= 2.3"
spec.add_runtime_dependency "http", ">= 4.4.0", "< 6.0.0"
end