lib/lastpass/vault.rb in lastpass-1.0.0 vs lib/lastpass/vault.rb in lastpass-1.0.1
- old
+ new
@@ -23,10 +23,10 @@
# Just fetches the blob, could be used to store it locally
def self.fetch_blob username, password
Fetcher.fetch Fetcher.login username, password
end
- # This more of an internal method, use of the static constructors instead
+ # This more of an internal method, use one of the static constructors instead
def initialize blob, encryption_key
chunks = Parser.extract_chunks blob
@accounts = (chunks["ACCT"] || []).map { |i| Parser.parse_account i, encryption_key }
end
end