Skip to content

Commit 4334409

Browse files
committed
fixed issue with gmail, kumars_email variable scope
1 parent 8853685 commit 4334409

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

kumar_asshole.rb

+6-6
Original file line numberDiff line numberDiff line change
@@ -8,21 +8,21 @@
88
GMAIL_USERNAME = ENV['GMAIL_USERNAME']
99
GMAIL_PASSWORD = ENV['GMAIL_PASSWORD']
1010

11-
gmail = Gmail.connect(GMAIL_USERNAME, GMAIL_PASSWORD)
12-
kumars_email = '[email protected]'
11+
GMAIL = Gmail.connect(GMAIL_USERNAME, GMAIL_PASSWORD)
12+
KUMARS_EMAIL = '[email protected]'
1313

1414
DB_NAME_REGEX = /\S+_staging/
1515
KEYWORDS_REGEX = /sorry|help|wrong/i
1616

1717
def create_reply(subject)
18-
gmail.compose do
19-
to kumars_email
18+
GMAIL.compose do
19+
to KUMARS_EMAIL
2020
subject "RE: #{subject}"
2121
body "No problem. I've fixed it. \n\n Please be careful next time."
2222
end
2323
end
2424

25-
gmail.inbox.find(:unread, from: kumars_email).each do |email|
25+
GMAIL.inbox.find(:unread, from: KUMARS_EMAIL).each do |email|
2626
if email.body.raw_source[KEYWORDS_REGEX] && (db_name = email.body.raw_source[DB_NAME_REGEX])
2727
backup_file = "/home/backups/databases/#{db_name}-" + (Date.today - 1).strftime('%Y%m%d') + '.gz'
2828
abort 'ERROR: Backup file not found' unless File.exist?(backup_file)
@@ -34,6 +34,6 @@ def create_reply(subject)
3434
email.read!
3535
email.label('Database fixes')
3636
reply = create_reply(email.subject)
37-
gmail.deliver(reply)
37+
GMAIL.deliver(reply)
3838
end
3939
end

0 commit comments

Comments
 (0)