Remove third_party directory from gemspec (#778)
This commit is contained in:
parent
a61f73b015
commit
06df528c4b
|
@ -16,7 +16,7 @@ Gem::Specification.new do |spec|
|
||||||
.reject { |f| f.match(%r{^(spec|script)/|^api_names_out}) }
|
.reject { |f| f.match(%r{^(spec|script)/|^api_names_out}) }
|
||||||
|
|
||||||
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
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'
|
spec.required_ruby_version = '~> 2.0'
|
||||||
|
|
||||||
|
|
|
@ -26,8 +26,4 @@ RSpec.describe $LOAD_PATH do
|
||||||
it('should contain GENERATED_DIR') do
|
it('should contain GENERATED_DIR') do
|
||||||
expect($LOAD_PATH).to include(GENERATED_DIR)
|
expect($LOAD_PATH).to include(GENERATED_DIR)
|
||||||
end
|
end
|
||||||
|
|
||||||
it('should contain THIRD_PARTY_DIR') do
|
|
||||||
expect($LOAD_PATH).to include(THIRD_PARTY_DIR)
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue