Skip to content

Commit

Permalink
fix: Allow gem to be installed from source (#305)
Browse files Browse the repository at this point in the history
  • Loading branch information
javierjulio authored Nov 6, 2024
1 parent 58275c3 commit 76d06bc
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions launchdarkly-server-sdk.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
lib = File.expand_path("lib", __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "ldclient-rb/version"
require "rake"

# rubocop:disable Metrics/BlockLength
Gem::Specification.new do |spec|
Expand All @@ -16,7 +15,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 = Dir["lib/**/*.rb", "README.md", "LICENSE.txt"]
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.required_ruby_version = ">= 3.0.0"
Expand Down

0 comments on commit 76d06bc

Please sign in to comment.