We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1052bdf + 0ef8670 commit e6fca1eCopy full SHA for e6fca1e
embulk-output-bigquery.gemspec
@@ -8,7 +8,12 @@ Gem::Specification.new do |spec|
8
spec.licenses = ["MIT"]
9
spec.homepage = "https://github.com/embulk/embulk-output-bigquery"
10
11
- spec.files = `git ls-files`.split("\n") + Dir["classpath/*.jar"]
+ # Exclude example directory for generating gem.
12
+ # example dir use symlink.
13
+ # It doesn't work properly on the Windows platform without administrator
14
+ # privilege.
15
+ spec.files = `git ls-files`.split("\n") + Dir["classpath/*.jar"] -
16
+ Dir["example/*" ]
17
spec.test_files = spec.files.grep(%r{^(test|spec)/})
18
spec.require_paths = ["lib"]
19
0 commit comments