-
Notifications
You must be signed in to change notification settings - Fork 4
[Ruby版][ADD]NUMERIC対応 #23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Gemfile
Outdated
# INFO: v0.9系のembulkを使用している場合は『gem 'embulk', '< 0.10'』と指定してください | ||
# 参考: https://zenn.dev/hiroysato/articles/957b1b4f77d549 | ||
# gem 'embulk' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
imo: エラーが出るからバージョン指定てきなコメントのほうがわかりやすいかもです。
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
承知しました!
.gitignore
Outdated
.tags | ||
your-project-000.json | ||
embulk.jar | ||
config.yml |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
troccoで config.yml
としているだけで config.yaml
でも hoge.yml
でもいいはずなので、git管理から外すのは本質的ではない気がするんですよね
個人の global gitignore でよしなにやるのでいい気がします
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
承知です!
それでは、こちら削除します!
Gemfile
Outdated
|
||
gemspec | ||
gem 'embulk' | ||
gem 'embulk', '< 0.10' # INFO: v0.9系のembulkコマンドの場合エラーになるのでバージョン指定してください。参考: https://zenn.dev/hiroysato/articles/957b1b4f77d549 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
コメントとバージョン指定の仕方が真逆?な気がします
0.9系が使えないようバージョン指定したいですね
gem 'embulk', '< 0.10' # INFO: v0.9系のembulkコマンドの場合エラーになるのでバージョン指定してください。参考: https://zenn.dev/hiroysato/articles/957b1b4f77d549 | |
gem 'embulk', '>= 0.10' # INFO: v0.9系のembulkコマンドの場合エラーになるのでバージョン指定してください。参考: https://zenn.dev/hiroysato/articles/957b1b4f77d549 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
0.9系のembulkコマンドを使いたい感じです!
troccoのworkerで動いているembulkが0.9.26なので
コメントを
INFO: v0.9系のembulkコマンドを使う場合はエラーになるのでバージョン指定してください。参考: https://zenn.dev/hiroysato/articles/957b1b4f77d549
のように修正しました。
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
0.9系を使うとエラーになる、という文章に見えるのですが、まだ良くわかってないですw
どのバージョン使うとエラーになる、みたいな書き方をした方がわかりやすいかもです
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
v0.9系のembulkコマンドでembulk bundle
を実行するとエラーになります。
それを回避するために
gem 'embulk', '< 0.10'
と指定する必要がある感じです。
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
↑ が伝えたいことになります。
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
修正しました。
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ようやく理解しました。
0.9以下を使わないとエラーになるってことですね。
v0.9系のembulkを使用するためのバージョン指定
いまのコメントなら書かなくて良い説ありますが(0.9系を使うのは見たらわかる)
書くとしたら 0.10系には非対応
とかですか?
あるいは、0.10以上だとエラーが起きるため
とか
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
確かに、コメント書かなくても良いかもですねw
コメント消しときますね!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
削除しました!
ae9c662
(レビュアー多かったので、抜けます |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fjtさんのおっしゃってる通りコメント修正お願いします
embulk-output-bigquery.gemspec
Outdated
Gem::Specification.new do |spec| | ||
spec.name = "embulk-output-bigquery" | ||
spec.version = "0.6.13" | ||
spec.version = "0.6.14" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
bugfixじゃないので、 0.7.0かな
spec.version = "0.6.14" | |
spec.version = "0.7.0" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
承知しました!
@d-hrs |
[add]github-actions
やったこと
inputプラグインからstring型で渡された値をColumnOptionを使ってNUMERIC型に変換する対応
残タスク
イシュー