Sha256: e70bfca98ed0b756a73da61cb4b5b80c6d727dfa438a55b02f76f7c3a3780868
Contents?: true
Size: 518 Bytes
Versions: 22
Compression:
Stored size: 518 Bytes
Contents
module Capybara::Poltergeist class Cookie def initialize(attributes) @attributes = attributes end def name @attributes['name'] end def value @attributes['value'] end def domain @attributes['domain'] end def path @attributes['path'] end def secure? @attributes['secure'] end def httponly? @attributes['httponly'] end def expires Time.at @attributes['expiry'] if @attributes['expiry'] end end end
Version data entries
22 entries across 22 versions & 4 rubygems