デモ・ソースコード [Git](https://github.com/sagaekeiga/deploy) 文字条件で取得 ---精度70%--- bots_controller.rb def if_crawl @bot = Bot.find(params[:id]) doc = Nokogiri::HTML(open("#{@bot.url}"))#URLの指定 doc.css('table').each do |crawl| #テーブルを引っ張る @crawl = crawl.inner_html.encode("UTF-8") #↓指定の単語が全て含まれてればtrue if @crawl.encode("UTF-8").include?(@bot.word1) && @crawl.encode("UTF-8").include?(@bot.word2) && @crawl.encod