Path to this page:
Subject: CVS commit: pkgsrc/www/ruby-request_store
From: Takahiro Kambe
Date: 2020-05-25 16:40:23
Message id: 20200525144023.92FC6FB27@cvs.NetBSD.org
Log Message:
www/ruby-request_store: add package version 1.5.0
Add ruby-request_store package version 1.5.0 from wip/ruby-request_store.
Ever needed to use a global variable in Rails? Ugh, that's the worst. If youq
need global state, you've probably reached for Thread.current. Like this:
def self.foo
Thread.current[:foo] ||= 0
end
def self.foo=(value)
Thread.current[:foo] = value
end
Ugh! I hate it. But you gotta do what you gotta do...
Files: