pkgsrc/www/ruby-request_store/DESCR
taca 8ec9c2a873 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...
2020-05-25 14:40:23 +00:00

12 lines
335 B
Text

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...