Sha256: 82405ebe69d6f343405a5db99632d661604a76082bf11598a26797ea0fa5c99d
Contents?: true
Size: 648 Bytes
Versions: 2
Compression:
Stored size: 648 Bytes
Contents
# Copyright (C) 2013 Dmitry Yakimenko (detunized@gmail.com). # Licensed under the terms of the MIT license. See LICENCE for details. module LastPass class Account attr_reader :id, :name, :username, :password, :url, :notes, :group def initialize id, name, username, password, url, notes, group @id = id @name = name @username = username @password = password @url = url @notes = notes @group = group end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
lastpass-1.7.1 | lib/lastpass/account.rb |
lastpass-1.7.0 | lib/lastpass/account.rb |