Skip to content

Commit

Permalink
Merge pull request #41 from looker-open-source/fix-gem-build
Browse files Browse the repository at this point in the history
chore(build): Only include things that are necessary in gem
  • Loading branch information
drstrangelooker authored Apr 12, 2024
2 parents e6e607b + 2b59638 commit c05ff15
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions looker-sdk.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ Gem::Specification.new do |s|
s.required_ruby_version = '>= 2.7'
s.requirements = 'Looker version 4.0 or later' # informational

s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test}/*`.split("\n")
s.files = Dir["lib/**/*", "*.md"]
s.test_files = Dir["test/**/*"]
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = %w(lib)
s.add_dependency 'jruby-openssl' if s.platform == :jruby
Expand Down

0 comments on commit c05ff15

Please sign in to comment.