Remove third_party directory from gemspec (#778)

This commit is contained in:
Mike Moore 2019-04-12 18:08:37 -06:00 committed by Graham Paye
parent a61f73b015
commit 06df528c4b
2 changed files with 1 additions and 5 deletions

View File

@ -16,7 +16,7 @@ Gem::Specification.new do |spec|
.reject { |f| f.match(%r{^(spec|script)/|^api_names_out}) }
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.require_paths = %w[lib generated third_party]
spec.require_paths = %w[lib generated]
spec.required_ruby_version = '~> 2.0'

View File

@ -26,8 +26,4 @@ RSpec.describe $LOAD_PATH do
it('should contain GENERATED_DIR') do
expect($LOAD_PATH).to include(GENERATED_DIR)
end
it('should contain THIRD_PARTY_DIR') do
expect($LOAD_PATH).to include(THIRD_PARTY_DIR)
end
end