More memory profiling

This commit is contained in:
Jaiden Mispy 2014-10-18 22:21:50 -07:00
parent b7f67ec0a6
commit 228e0caa65
7 changed files with 49 additions and 12 deletions

View file

@ -43,7 +43,7 @@ module Ebooks
config.oauth_token_secret = @oauth_token_secret
end
Twitter.configure do |config|
@twitter = Twitter::REST::Client.new do |config|
config.consumer_key = @consumer_key
config.consumer_secret = @consumer_secret
config.oauth_token = @oauth_token
@ -52,7 +52,6 @@ module Ebooks
needs_stream = [@on_follow, @on_message, @on_mention, @on_timeline].any? {|e| !e.nil?}
@twitter = Twitter::Client.new
@stream = TweetStream::Client.new if needs_stream
end
@ -163,7 +162,7 @@ module Ebooks
log "Tweeting #{args.inspect}"
@twitter.update(*args)
end
# could easily just be *args however the separation keeps it clean.
def pictweet(txt, pic, *args)
log "Tweeting #{txt.inspect} - #{pic} #{args}"

View file

@ -79,8 +79,8 @@ module Ebooks
@sentences = mass_tokenize(text)
@mentions = mass_tokenize(mention_text)
#log "Ranking keywords"
#@keywords = NLP.keywords(@sentences)
log "Ranking keywords"
@keywords = NLP.keywords(@sentences)
self
end