We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e24a52 commit b32a435Copy full SHA for b32a435
ruby_llm.gemspec
@@ -25,13 +25,8 @@ Gem::Specification.new do |spec|
25
26
spec.metadata['rubygems_mfa_required'] = 'true'
27
28
- # Specify which files should be added to the gem when it is released.
29
- # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
30
- spec.files = Dir.chdir(File.expand_path(__dir__)) do
31
- `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features|docs)/}) }
32
- end
33
- spec.bindir = 'exe'
34
- spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
+ # Use Dir.glob to list all files within the lib directory
+ spec.files = Dir.glob('lib/**/*') + ['README.md', 'LICENSE']
35
spec.require_paths = ['lib']
36
37
# Runtime dependencies
0 commit comments