is_a?(klass) -> bool
[permalink][rdoc]kind_of?(klass) -> bool
自身に Array のフリをさせます。
# Rakefile での記載例とする
task default: :test_rake_app
task :test_rake_app do
file_list = FileList.new("test1.rb", "test2.rb", "test3.rb")
file_list.is_a?(Array) # => true
file_list.is_a?(String) # => false
end