Skip to content

Commit 8be0ccc

Browse files
authored
fix: Remove rake dependency from gemspec (#53)
1 parent 95185a6 commit 8be0ccc

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

ld-eventsource.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", __FILE__)
44
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
55
require "ld-eventsource/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-eventsource"
1716
spec.license = "Apache-2.0"
1817

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

0 commit comments

Comments
 (0)