Sha256: 61df1a7c20bc56bde76daae25588f9f14decd3b37abd0f85bfe643ccbeded432

Contents?: true

Size: 324 Bytes

Versions: 10

Compression:

Stored size: 324 Bytes

Contents

# A password store contains an id of the site the password belongs to, 
# the username to login and the password. 
    
class PasswordStore
    attr_accessor :id,:url,:username,:password
    
    def initialize(id,url,username,pwd)
      @id = id
      @url = url
      @username = username
      @password = pwd
    end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
lockr-0.5.2 lib/lockr/pwdstore.rb
lockr-0.5.1 lib/lockr/pwdstore.rb
lockr-0.5.0 lib/lockr/pwdstore.rb
lockr-0.4.5 lib/lockr/pwdstore.rb
lockr-0.4.4 lib/lockr/pwdstore.rb
lockr-0.4.3 lib/lockr/pwdstore.rb
lockr-0.4.2 lib/lockr/pwdstore.rb
lockr-0.3.0 lib/lockr/pwdstore.rb
lockr-0.2.1 lib/lockr/pwdstore.rb
lockr-0.2.0 lib/lockr/pwdstore.rb