Sha256: 93357f47b088d0a7382211423c74327e1bb32a1c9bd2a82b63f3c7a25d9f2880

Contents?: true

Size: 471 Bytes

Versions: 5

Compression:

Stored size: 471 Bytes

Contents

module Wlog
# This is the session that contains data about a particular run (for example
# what kind of database to use, etc). NOTE: this is a placeholder for now. 
# Eventually this should be the object passed on sessions (for example, the
# active records should get the session object, and extract what they need from
# it - the db reference).
# @author Simon Symeonidis
class Session

  def initialize(dbhandle)
    @db = dbhandle
  end

  attr_accessor :db

end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
wlog-1.1.7 lib/wlog/domain/session.rb
wlog-1.1.6 lib/wlog/domain/session.rb
wlog-1.1.5 lib/wlog/domain/session.rb
wlog-1.1.1 lib/wlog/domain/session.rb
wlog-1.0.5 lib/wlog/domain/session.rb