0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

RMagick 使うと Unresolved Ruby reference の warning が RubyMine で出まくるのをなんとかしたい、けどできない

Posted at

このドキュメントについて

Ruby開発環境にRubyMine使おうととりあえず入れてみていろいろ確認中、 「Code > Inspect Code」 から静的解析を実行したら "Unresolved Ruby reference" がたくさん出て困った時のメモ :pencil:

原因と解決方法

  • 対象のメソッドがRubyの拡張ライブラリで実装されているので警告出ちゃう
  • 解決できない。。。 :cry:

現象

rmagick 使っててその関係のオブジェクトのメソッド等は全部出てる感じ。以下のコードの font pointsize get_multiline_type_metrics の全部に警告出る。なんで?

test.rb
    draw = Magick::Draw.new
    draw.font = font
    draw.pointsize = size
    metrics = draw.get_multiline_type_metrics(message)

調査中

RMagickの実装をみる

実装を確認↓したけど get_multiline_type_metrics が定義されてない。拡張ライブラリとして実装されているっぽい。

magick_internal.rb
  class Draw
    # Thse hashes are used to map Magick constant
    # values to the strings used in the primitives.
    ALIGN_TYPE_NAMES = {
      LeftAlign.to_i => 'left',
      RightAlign.to_i => 'right',
      CenterAlign.to_i => 'center'
    }.freeze

.... 省略

確かに実装されてた。

rmmain.c
rb_define_method(Class_Draw, "get_type_metrics", Draw_get_type_metrics, -1);
rb_define_method(Class_Draw, "get_multiline_type_metrics", Draw_get_multiline_type_metrics, -1);
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?