Skip to content

Commit 76d06bc

Browse files
authored
fix: Allow gem to be installed from source (#305)
1 parent 58275c3 commit 76d06bc

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

launchdarkly-server-sdk.gemspec

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
lib = File.expand_path("lib", __dir__)
44
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
55
require "ldclient-rb/version"
6-
require "rake"
76

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

19-
spec.files = FileList["lib/**/*", "README.md", "LICENSE.txt"]
18+
spec.files = Dir["lib/**/*.rb", "README.md", "LICENSE.txt"]
2019
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
2120
spec.require_paths = ["lib"]
2221
spec.required_ruby_version = ">= 3.0.0"

0 commit comments

Comments
 (0)