-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #131 from true-runes/development
v1.9.0
- Loading branch information
Showing
1 changed file
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |