ara.t.howard / noaa.gov wrote:
>      harp:~ > cat a.rb
>      module X
>        module_function  # side effect -> instance 'f' made private
>        def f; "f"; end
>        public :f
>      # ^^^^^^ ^^
>      # ^^^^^^ ^^
>      # ^^^^^^ ^^
>      end

but that undoes the module_function-ality of X.

t.