File tree Expand file tree Collapse file tree 2 files changed +8
-7
lines changed
Expand file tree Collapse file tree 2 files changed +8
-7
lines changed Original file line number Diff line number Diff line change 1+ ## 0.6.1 - 2019-08-28
2+
3+ * [ maintenance] Release a new gem not to include symlinks to make it work on Windows.
4+
15## 0.6.0 - 2019-08-11
26
37Cleanup ` auth_method ` :
Original file line number Diff line number Diff line change 11Gem ::Specification . new do |spec |
22 spec . name = "embulk-output-bigquery"
3- spec . version = "0.6.0 "
3+ spec . version = "0.6.1 "
44 spec . authors = [ "Satoshi Akama" , "Naotoshi Seo" ]
55 spec . summary = "Google BigQuery output plugin for Embulk"
66 spec . description = "Embulk plugin that insert records to Google BigQuery."
77 spec . email = [ "satoshiakama@gmail.com" , "sonots@gmail.com" ]
88 spec . licenses = [ "MIT" ]
99 spec . homepage = "https://github.com/embulk/embulk-output-bigquery"
1010
11- # 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/*" ]
11+ # Exclude example directory which uses symlinks from generating gem.
12+ # Symlinks do not work properly on the Windows platform without administrator privilege.
13+ spec . files = `git ls-files` . split ( "\n " ) + Dir [ "classpath/*.jar" ] - Dir [ "example/*" ]
1714 spec . test_files = spec . files . grep ( %r{^(test|spec)/} )
1815 spec . require_paths = [ "lib" ]
1916
You can’t perform that action at this time.
0 commit comments