Top Level Namespace

Defined Under Namespace

Modules: ExtPP

Instance Method Summary collapse

Instance Method Details

#collect_headers(dir) ⇒ Object



18
19
20
21
22
23
24
# File 'ext/extpp/extconf.rb', line 18

def collect_headers(dir)
  Dir.chdir(dir) do
    Dir.glob("**/*.hpp").collect do |header|
      File.join(dir, header)
    end
  end
end