Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/gist.rb
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ class ClipboardError < RuntimeError; include Error end
#
# @return [String] string value of access token or `nil`, if not found
def auth_token
@token ||= File.read(auth_token_file) rescue nil
@token ||= File.read(auth_token_file).chomp rescue nil
end

# Upload a gist to https://gist.github.com
Expand Down