tmm1 / ripper-tags

fast, accurate ctags generator for ruby source code using Ripper
MIT License
550 stars 43 forks source link

Support `module_function` #88

Closed larrylv closed 5 years ago

larrylv commented 5 years ago

Ruby allows using module_function to create module functions https://apidock.com/ruby/Module/module_function:

module Test
  module_function def foo
    puts 'bar'
  end
end

Test.foo #=> "bar"
mislav commented 5 years ago

This looks great; thank you!