Skip to content

Commit

Permalink
Merge pull request #131 from true-runes/development
Browse files Browse the repository at this point in the history
v1.9.0
  • Loading branch information
nikukyugamer authored Jun 22, 2022
2 parents 25b03d0 + a93be78 commit 3b5abe4
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions lib/tasks/save_analyze_syntaxes.rake
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
namespace :save_analyze_syntaxes do
desc '全ツイートを NaturalLanguage::Analyzer で解析して保存する'
task tweets: :environment do
client = CloudLanguage.client

ActiveRecord::Base.transaction do
Tweet.all.each do |tweet|
NaturalLanguage::Analyzer.save_analyze_syntax_record(client, tweet)
end
end
end

desc '全DMを NaturalLanguage::Analyzer で解析して保存する'
task direct_messages: :environment do
client = CloudLanguage.client

ActiveRecord::Base.transaction do
DirectMessage.all.each do |direct_message|
NaturalLanguage::Analyzer.save_analyze_syntax_record(client, direct_message)
end
end
end
end

0 comments on commit 3b5abe4

Please sign in to comment.